Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'for-6.16/dm-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm

Pull device mapper fix from Mikulas Patocka:

- dm-bufio: fix scheduling in atomic

* tag 'for-6.16/dm-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm:
dm-bufio: fix sched in atomic context

+5 -1
+5 -1
drivers/md/dm-bufio.c
··· 2742 2742 __make_buffer_clean(b); 2743 2743 __free_buffer_wake(b); 2744 2744 2745 - cond_resched(); 2745 + if (need_resched()) { 2746 + dm_bufio_unlock(c); 2747 + cond_resched(); 2748 + dm_bufio_lock(c); 2749 + } 2746 2750 } 2747 2751 2748 2752 dm_bufio_unlock(c);