Merge branch 'rework/fixup-for-5.15' into for-linus

This commit is contained in:
Petr Mladek 2021-08-30 16:33:04 +02:00
commit 715d3edb79

View File

@ -2533,6 +2533,7 @@ void console_unlock(void)
bool do_cond_resched, retry;
struct printk_info info;
struct printk_record r;
u64 __maybe_unused next_seq;
if (console_suspended) {
up_console_sem();
@ -2642,8 +2643,10 @@ void console_unlock(void)
cond_resched();
}
console_locked = 0;
/* Get consistent value of the next-to-be-used sequence number. */
next_seq = console_seq;
console_locked = 0;
up_console_sem();
/*
@ -2652,7 +2655,7 @@ void console_unlock(void)
* there's a new owner and the console_unlock() from them will do the
* flush, no worries.
*/
retry = prb_read_valid(prb, console_seq, NULL);
retry = prb_read_valid(prb, next_seq, NULL);
printk_safe_exit_irqrestore(flags);
if (retry && console_trylock())