lkml.org 
[lkml]   [2017]   [May]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    Subject[patch V2 14/17] printk: Adjust system_state checks
    To enable smp_processor_id() and might_sleep() debug checks earlier, it's
    required to add system states between SYSTEM_BOOTING and SYSTEM_RUNNING.

    Adjust the system_state check in boot_delay_msec() to handle the extra
    states.

    Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
    Reviewed-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
    ---
    kernel/printk/printk.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    --- a/kernel/printk/printk.c
    +++ b/kernel/printk/printk.c
    @@ -1176,7 +1176,7 @@ static void boot_delay_msec(int level)
    unsigned long long k;
    unsigned long timeout;

    - if ((boot_delay == 0 || system_state != SYSTEM_BOOTING)
    + if ((boot_delay == 0 || system_state >= SYSTEM_RUNNING)
    || suppress_message_printing(level)) {
    return;
    }

    \
     
     \ /
      Last update: 2017-05-16 20:54    [W:4.237 / U:0.168 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site