Skip to content

Commit 12831f6

Browse files
committed
Merge tag 'printk-for-5.19-fixup' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux
Pull printk fixup from Petr Mladek: - Revert inappropriate use of wake_up_interruptible_all() in printk() * tag 'printk-for-5.19-fixup' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux: Revert "printk: wake up all waiters"
2 parents ca1dcc6 + 809631e commit 12831f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/printk/printk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3904,7 +3904,7 @@ static void wake_up_klogd_work_func(struct irq_work *irq_work)
39043904
}
39053905

39063906
if (pending & PRINTK_PENDING_WAKEUP)
3907-
wake_up_interruptible_all(&log_wait);
3907+
wake_up_interruptible(&log_wait);
39083908
}
39093909

39103910
static DEFINE_PER_CPU(struct irq_work, wake_up_klogd_work) =

0 commit comments

Comments
 (0)