diff mbox series

[v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug

Message ID 20221130234533.1983769-1-qiang1.zhang@intel.com (mailing list archive)
State New, archived
Headers show
Series [v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug | expand

Commit Message

Zqiang Nov. 30, 2022, 11:45 p.m. UTC
Currently, invoke rcu_tasks_rude_wait_gp() to wait one rude
RCU-tasks grace period, if __num_online_cpus == 1, will return
directly, indicates the end of the rude RCU-task grace period.
suppose the system has two cpus, consider the following scenario:

        CPU0                                   CPU1 (going offline)
                                          migration/1 task:
                                      cpu_stopper_thread
                                       -> take_cpu_down
                                          -> _cpu_disable
                                           (dec __num_online_cpus)
                                          ->cpuhp_invoke_callback
                                                preempt_disable
                                                access old_data0
           task1
 del old_data0                                  .....
 synchronize_rcu_tasks_rude()
 task1 schedule out
 ....
 task2 schedule in
 rcu_tasks_rude_wait_gp()
     ->__num_online_cpus == 1
       ->return
 ....
 task1 schedule in
 ->free old_data0
                                                preempt_enable

when CPU1 dec __num_online_cpus and __num_online_cpus is equal one,
the CPU1 has not finished offline, stop_machine task(migration/1)
still running on CPU1, maybe still accessing 'old_data0', but the
'old_data0' has freed on CPU0.

In order to prevent the above scenario from happening, this commit
remove check for __num_online_cpus == 0 and add handling of calling
synchronize_rcu_tasks_generic() during early boot(when the
rcu_scheduler_active variable is RCU_SCHEDULER_INACTIVE, the scheduler
not yet initialized and only one boot-CPU online).

Signed-off-by: Zqiang <qiang1.zhang@intel.com>
---
 kernel/rcu/tasks.h | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

Comments

Paul E. McKenney Dec. 1, 2022, 12:13 a.m. UTC | #1
On Thu, Dec 01, 2022 at 07:45:33AM +0800, Zqiang wrote:
> Currently, invoke rcu_tasks_rude_wait_gp() to wait one rude
> RCU-tasks grace period, if __num_online_cpus == 1, will return
> directly, indicates the end of the rude RCU-task grace period.
> suppose the system has two cpus, consider the following scenario:
> 
>         CPU0                                   CPU1 (going offline)
>                                           migration/1 task:
>                                       cpu_stopper_thread
>                                        -> take_cpu_down
>                                           -> _cpu_disable
>                                            (dec __num_online_cpus)
>                                           ->cpuhp_invoke_callback
>                                                 preempt_disable
>                                                 access old_data0
>            task1
>  del old_data0                                  .....
>  synchronize_rcu_tasks_rude()
>  task1 schedule out
>  ....
>  task2 schedule in
>  rcu_tasks_rude_wait_gp()
>      ->__num_online_cpus == 1
>        ->return
>  ....
>  task1 schedule in
>  ->free old_data0
>                                                 preempt_enable
> 
> when CPU1 dec __num_online_cpus and __num_online_cpus is equal one,
> the CPU1 has not finished offline, stop_machine task(migration/1)
> still running on CPU1, maybe still accessing 'old_data0', but the
> 'old_data0' has freed on CPU0.
> 
> In order to prevent the above scenario from happening, this commit
> remove check for __num_online_cpus == 0 and add handling of calling
> synchronize_rcu_tasks_generic() during early boot(when the
> rcu_scheduler_active variable is RCU_SCHEDULER_INACTIVE, the scheduler
> not yet initialized and only one boot-CPU online).
> 
> Signed-off-by: Zqiang <qiang1.zhang@intel.com>

Very good, thank you!  I did the usual wordsmithing, including to that
error message, so as usual please check to make sure that I didn't mess
something up.

							Thanx, Paul

------------------------------------------------------------------------

commit 033ddc5d337984e20b9d49c8af4faa4689727626
Author: Zqiang <qiang1.zhang@intel.com>
Date:   Thu Dec 1 07:45:33 2022 +0800

    rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
    
    The synchronize_rcu_tasks_rude() function invokes rcu_tasks_rude_wait_gp()
    to wait one rude RCU-tasks grace period.  The rcu_tasks_rude_wait_gp()
    function in turn checks if there is only a single online CPU.  If so, it
    will immediately return, because a call to synchronize_rcu_tasks_rude()
    is by definition a grace period on a single-CPU system.  (We could
    have blocked!)
    
    Unfortunately, this check uses num_online_cpus() without synchronization,
    which can result in too-short grace periods.  To see this, consider the
    following scenario:
    
            CPU0                                   CPU1 (going offline)
                                              migration/1 task:
                                          cpu_stopper_thread
                                           -> take_cpu_down
                                              -> _cpu_disable
                                               (dec __num_online_cpus)
                                              ->cpuhp_invoke_callback
                                                    preempt_disable
                                                    access old_data0
               task1
     del old_data0                                  .....
     synchronize_rcu_tasks_rude()
     task1 schedule out
     ....
     task2 schedule in
     rcu_tasks_rude_wait_gp()
         ->__num_online_cpus == 1
           ->return
     ....
     task1 schedule in
     ->free old_data0
                                                    preempt_enable
    
    When CPU1 decrements __num_online_cpus, its value becomes 1.  However,
    CPU1 has not finished going offline, and will take one last trip through
    the scheduler and the idle loop before it actually stops executing
    instructions.  Because synchronize_rcu_tasks_rude() is mostly used for
    tracing, and because both the scheduler and the idle loop can be traced,
    this means that CPU0's prematurely ended grace period might disrupt the
    tracing on CPU1.  Given that this disruption might include CPU1 executing
    instructions in memory that was just now freed (and maybe reallocated),
    this is a matter of some concern.
    
    This commit therefore removes that problematic single-CPU check from the
    rcu_tasks_rude_wait_gp() function.  This dispenses with the single-CPU
    optimization, but there is no evidence indicating that this optimization
    is important.  In addition, synchronize_rcu_tasks_generic() contains a
    similar optimization (albeit only for early boot), which also splats.
    (As in exactly why are you invoking synchronize_rcu_tasks_rude() so
    early in boot, anyway???)
    
    It is OK for the synchronize_rcu_tasks_rude() function's check to be
    unsynchronized because the only times that this check can evaluate to
    true is when there is only a single CPU running with preemption
    disabled.
    
    While in the area, this commit also fixes a minor bug in which a
    call to synchronize_rcu_tasks_rude() would instead be attributed to
    synchronize_rcu_tasks().
    
    [ paulmck: Add "synchronize_" prefix and "()" suffix. ]
    
    Signed-off-by: Zqiang <qiang1.zhang@intel.com>
    Signed-off-by: Paul E. McKenney <paulmck@kernel.org>

diff --git a/kernel/rcu/tasks.h b/kernel/rcu/tasks.h
index 4dda8e6e5707f..d845723c1af41 100644
--- a/kernel/rcu/tasks.h
+++ b/kernel/rcu/tasks.h
@@ -560,8 +560,9 @@ static int __noreturn rcu_tasks_kthread(void *arg)
 static void synchronize_rcu_tasks_generic(struct rcu_tasks *rtp)
 {
 	/* Complain if the scheduler has not started.  */
-	WARN_ONCE(rcu_scheduler_active == RCU_SCHEDULER_INACTIVE,
-			 "synchronize_rcu_tasks called too soon");
+	if (WARN_ONCE(rcu_scheduler_active == RCU_SCHEDULER_INACTIVE,
+			 "synchronize_%s() called too soon", rtp->name))
+		return;
 
 	// If the grace-period kthread is running, use it.
 	if (READ_ONCE(rtp->kthread_ptr)) {
@@ -1064,9 +1065,6 @@ static void rcu_tasks_be_rude(struct work_struct *work)
 // Wait for one rude RCU-tasks grace period.
 static void rcu_tasks_rude_wait_gp(struct rcu_tasks *rtp)
 {
-	if (num_online_cpus() <= 1)
-		return;	// Fastpath for only one CPU.
-
 	rtp->n_ipis += cpumask_weight(cpu_online_mask);
 	schedule_on_each_cpu(rcu_tasks_be_rude);
 }
Zqiang Dec. 2, 2022, 12:51 p.m. UTC | #2
On Thu, Dec 01, 2022 at 07:45:33AM +0800, Zqiang wrote:
> Currently, invoke rcu_tasks_rude_wait_gp() to wait one rude
> RCU-tasks grace period, if __num_online_cpus == 1, will return
> directly, indicates the end of the rude RCU-task grace period.
> suppose the system has two cpus, consider the following scenario:
> 
>         CPU0                                   CPU1 (going offline)
>                                           migration/1 task:
>                                       cpu_stopper_thread
>                                        -> take_cpu_down
>                                           -> _cpu_disable
>                                            (dec __num_online_cpus)
>                                           ->cpuhp_invoke_callback
>                                                 preempt_disable
>                                                 access old_data0
>            task1
>  del old_data0                                  .....
>  synchronize_rcu_tasks_rude()
>  task1 schedule out
>  ....
>  task2 schedule in
>  rcu_tasks_rude_wait_gp()
>      ->__num_online_cpus == 1
>        ->return
>  ....
>  task1 schedule in
>  ->free old_data0
>                                                 preempt_enable
> 
> when CPU1 dec __num_online_cpus and __num_online_cpus is equal one,
> the CPU1 has not finished offline, stop_machine task(migration/1)
> still running on CPU1, maybe still accessing 'old_data0', but the
> 'old_data0' has freed on CPU0.
> 
> In order to prevent the above scenario from happening, this commit
> remove check for __num_online_cpus == 0 and add handling of calling
> synchronize_rcu_tasks_generic() during early boot(when the
> rcu_scheduler_active variable is RCU_SCHEDULER_INACTIVE, the scheduler
> not yet initialized and only one boot-CPU online).
> 
> Signed-off-by: Zqiang <qiang1.zhang@intel.com>

>Very good, thank you!  I did the usual wordsmithing, including to that
>error message, so as usual please check to make sure that I didn't mess
>something up.
>
>							Thanx, Paul
>
>------------------------------------------------------------------------
>
>commit 033ddc5d337984e20b9d49c8af4faa4689727626
>Author: Zqiang <qiang1.zhang@intel.com>
>Date:   Thu Dec 1 07:45:33 2022 +0800
>
>    rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
>    
>    The synchronize_rcu_tasks_rude() function invokes rcu_tasks_rude_wait_gp()
>    to wait one rude RCU-tasks grace period.  The rcu_tasks_rude_wait_gp()
>    function in turn checks if there is only a single online CPU.  If so, it
>    will immediately return, because a call to synchronize_rcu_tasks_rude()
>    is by definition a grace period on a single-CPU system.  (We could
>    have blocked!)
>    
>    Unfortunately, this check uses num_online_cpus() without synchronization,
>    which can result in too-short grace periods.  To see this, consider the
>    following scenario:
>    
>            CPU0                                   CPU1 (going offline)
>                                              migration/1 task:
>                                          cpu_stopper_thread
>                                           -> take_cpu_down
>                                              -> _cpu_disable
>                                               (dec __num_online_cpus)
>                                             ->cpuhp_invoke_callback
>                                                    preempt_disable
>                                                    access old_data0
>               task1
>     del old_data0                                  .....
>     synchronize_rcu_tasks_rude()
>     task1 schedule out
>     ....
>     task2 schedule in
>     rcu_tasks_rude_wait_gp()
>         ->__num_online_cpus == 1
>           ->return
>     ....
>     task1 schedule in
>     ->free old_data0
>                                                    preempt_enable
>    
>    When CPU1 decrements __num_online_cpus, its value becomes 1.  However,
>    CPU1 has not finished going offline, and will take one last trip through
>    the scheduler and the idle loop before it actually stops executing
>    instructions.  Because synchronize_rcu_tasks_rude() is mostly used for
>    tracing, and because both the scheduler and the idle loop can be traced,
>    this means that CPU0's prematurely ended grace period might disrupt the
>    tracing on CPU1.  Given that this disruption might include CPU1 executing
>    instructions in memory that was just now freed (and maybe reallocated),
>    this is a matter of some concern.
>    
>    This commit therefore removes that problematic single-CPU check from the
>    rcu_tasks_rude_wait_gp() function.  This dispenses with the single-CPU
>    optimization, but there is no evidence indicating that this optimization
>    is important.  In addition, synchronize_rcu_tasks_generic() contains a
>    similar optimization (albeit only for early boot), which also splats.
>    (As in exactly why are you invoking synchronize_rcu_tasks_rude() so
>    early in boot, anyway???)
>    
>    It is OK for the synchronize_rcu_tasks_rude() function's check to be
>    unsynchronized because the only times that this check can evaluate to
>    true is when there is only a single CPU running with preemption
>    disabled.
>    
>    While in the area, this commit also fixes a minor bug in which a
>    call to synchronize_rcu_tasks_rude() would instead be attributed to
>    synchronize_rcu_tasks().
>    
>    [ paulmck: Add "synchronize_" prefix and "()" suffix. ]
>    
>    Signed-off-by: Zqiang <qiang1.zhang@intel.com>
>    Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
>
>diff --git a/kernel/rcu/tasks.h b/kernel/rcu/tasks.h
>index 4dda8e6e5707f..d845723c1af41 100644
>--- a/kernel/rcu/tasks.h
>+++ b/kernel/rcu/tasks.h
>@@ -560,8 +560,9 @@ static int __noreturn rcu_tasks_kthread(void *arg)
> static void synchronize_rcu_tasks_generic(struct rcu_tasks *rtp)
> {
> 	/* Complain if the scheduler has not started.  */
>-	WARN_ONCE(rcu_scheduler_active == RCU_SCHEDULER_INACTIVE,
>-			 "synchronize_rcu_tasks called too soon");
>+	if (WARN_ONCE(rcu_scheduler_active == RCU_SCHEDULER_INACTIVE,
>+			 "synchronize_%s() called too soon", rtp->name))

Thanks Paul,  detailed description and modification 
Joel Fernandes Dec. 2, 2022, 1:25 p.m. UTC | #3
> On Dec 2, 2022, at 7:52 AM, Zhang, Qiang1 <qiang1.zhang@intel.com> wrote:
> 
> On Thu, Dec 01, 2022 at 07:45:33AM +0800, Zqiang wrote:
>> Currently, invoke rcu_tasks_rude_wait_gp() to wait one rude
>> RCU-tasks grace period, if __num_online_cpus == 1, will return
>> directly, indicates the end of the rude RCU-task grace period.
>> suppose the system has two cpus, consider the following scenario:
>> 
>>        CPU0                                   CPU1 (going offline)
>>                                          migration/1 task:
>>                                      cpu_stopper_thread
>>                                       -> take_cpu_down
>>                                          -> _cpu_disable
>>                                           (dec __num_online_cpus)
>>                                          ->cpuhp_invoke_callback
>>                                                preempt_disable
>>                                                access old_data0
>>           task1
>> del old_data0                                  .....
>> synchronize_rcu_tasks_rude()
>> task1 schedule out
>> ....
>> task2 schedule in
>> rcu_tasks_rude_wait_gp()
>>     ->__num_online_cpus == 1
>>       ->return
>> ....
>> task1 schedule in
>> ->free old_data0
>>                                                preempt_enable
>> 
>> when CPU1 dec __num_online_cpus and __num_online_cpus is equal one,
>> the CPU1 has not finished offline, stop_machine task(migration/1)
>> still running on CPU1, maybe still accessing 'old_data0', but the
>> 'old_data0' has freed on CPU0.
>> 
>> In order to prevent the above scenario from happening, this commit
>> remove check for __num_online_cpus == 0 and add handling of calling
>> synchronize_rcu_tasks_generic() during early boot(when the
>> rcu_scheduler_active variable is RCU_SCHEDULER_INACTIVE, the scheduler
>> not yet initialized and only one boot-CPU online).
>> 
>> Signed-off-by: Zqiang <qiang1.zhang@intel.com>
> 
>> Very good, thank you!  I did the usual wordsmithing, including to that
>> error message, so as usual please check to make sure that I didn't mess
>> something up.
>> 
>>                            Thanx, Paul
>> 
>> ------------------------------------------------------------------------
>> 
>> commit 033ddc5d337984e20b9d49c8af4faa4689727626
>> Author: Zqiang <qiang1.zhang@intel.com>
>> Date:   Thu Dec 1 07:45:33 2022 +0800
>> 
>>   rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
>> 
>>   The synchronize_rcu_tasks_rude() function invokes rcu_tasks_rude_wait_gp()
>>   to wait one rude RCU-tasks grace period.  The rcu_tasks_rude_wait_gp()
>>   function in turn checks if there is only a single online CPU.  If so, it
>>   will immediately return, because a call to synchronize_rcu_tasks_rude()
>>   is by definition a grace period on a single-CPU system.  (We could
>>   have blocked!)
>> 
>>   Unfortunately, this check uses num_online_cpus() without synchronization,
>>   which can result in too-short grace periods.  To see this, consider the
>>   following scenario:
>> 
>>           CPU0                                   CPU1 (going offline)
>>                                             migration/1 task:
>>                                         cpu_stopper_thread
>>                                          -> take_cpu_down
>>                                             -> _cpu_disable
>>                                              (dec __num_online_cpus)
>>                                            ->cpuhp_invoke_callback
>>                                                   preempt_disable
>>                                                   access old_data0
>>              task1
>>    del old_data0                                  .....
>>    synchronize_rcu_tasks_rude()
>>    task1 schedule out
>>    ....
>>    task2 schedule in
>>    rcu_tasks_rude_wait_gp()
>>        ->__num_online_cpus == 1
>>          ->return
>>    ....
>>    task1 schedule in
>>    ->free old_data0
>>                                                   preempt_enable
>> 
>>   When CPU1 decrements __num_online_cpus, its value becomes 1.  However,
>>   CPU1 has not finished going offline, and will take one last trip through
>>   the scheduler and the idle loop before it actually stops executing
>>   instructions.  Because synchronize_rcu_tasks_rude() is mostly used for
>>   tracing, and because both the scheduler and the idle loop can be traced,
>>   this means that CPU0's prematurely ended grace period might disrupt the
>>   tracing on CPU1.  Given that this disruption might include CPU1 executing
>>   instructions in memory that was just now freed (and maybe reallocated),
>>   this is a matter of some concern.
>> 
>>   This commit therefore removes that problematic single-CPU check from the
>>   rcu_tasks_rude_wait_gp() function.  This dispenses with the single-CPU
>>   optimization, but there is no evidence indicating that this optimization
>>   is important.  In addition, synchronize_rcu_tasks_generic() contains a
>>   similar optimization (albeit only for early boot), which also splats.
>>   (As in exactly why are you invoking synchronize_rcu_tasks_rude() so
>>   early in boot, anyway???)
>> 
>>   It is OK for the synchronize_rcu_tasks_rude() function's check to be
>>   unsynchronized because the only times that this check can evaluate to
>>   true is when there is only a single CPU running with preemption
>>   disabled.
>> 
>>   While in the area, this commit also fixes a minor bug in which a
>>   call to synchronize_rcu_tasks_rude() would instead be attributed to
>>   synchronize_rcu_tasks().
>> 
>>   [ paulmck: Add "synchronize_" prefix and "()" suffix. ]
>> 
>>   Signed-off-by: Zqiang <qiang1.zhang@intel.com>
>>   Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
>> 
>> diff --git a/kernel/rcu/tasks.h b/kernel/rcu/tasks.h
>> index 4dda8e6e5707f..d845723c1af41 100644
>> --- a/kernel/rcu/tasks.h
>> +++ b/kernel/rcu/tasks.h
>> @@ -560,8 +560,9 @@ static int __noreturn rcu_tasks_kthread(void *arg)
>> static void synchronize_rcu_tasks_generic(struct rcu_tasks *rtp)
>> {
>>    /* Complain if the scheduler has not started.  */
>> -    WARN_ONCE(rcu_scheduler_active == RCU_SCHEDULER_INACTIVE,
>> -             "synchronize_rcu_tasks called too soon");
>> +    if (WARN_ONCE(rcu_scheduler_active == RCU_SCHEDULER_INACTIVE,
>> +             "synchronize_%s() called too soon", rtp->name))
> 
> Thanks Paul,  detailed description and modification 
Zqiang Dec. 19, 2022, 2:21 a.m. UTC | #4
>Greeting,
>
>FYI, we noticed WARNING:at_kernel/rcu/rcutorture.c:#rcu_torture_fwd_prog_cr[rcutorture] due to commit (built with gcc-11):
>
>commit: 572a17843591d3c03ad891492939a06833fdd17d ("[PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug")
>url: https://github.com/intel-lab-lkp/linux/commits/Zqiang/rcu-tasks-Make-rude-RCU-Tasks-work-well-with-CPU-hotplug/20221201-074127
>base: https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
>patch link: https://lore.kernel.org/all/20221130234533.1983769-1-qiang1.zhang@intel.com/
>patch subject: [PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
>
>in testcase: rcutorture
>version: 
>with following parameters:
>
>	runtime: 300s
>	test: cpuhotplug
>	torture_type: tasks-rude
>
>test-description: rcutorture is rcutorture kernel module load/unload test.
>test-url: https://www.kernel.org/doc/Documentation/RCU/torture.txt
>
>on test machine: qemu-system-i386 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
>
>caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
>
>
>[  106.051532][  T583] rcu_torture_fwd_prog: Starting forward-progress test 0
>[  106.052085][  T583] rcu_torture_fwd_prog_cr: Starting forward-progress test 0
>[  133.611262][  T583] rcu_torture_fwd_prog_cr: Waiting for CBs: rcu_barrier_tasks_rude+0x0/0x10() 0
>[  146.800051][  T583] ------------[ cut here ]------------
>[  146.800411][  T583] WARNING: CPU: 1 PID: 583 at kernel/rcu/rcutorture.c:2806 rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
>[  146.801075][  T583] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
>[  146.801894][  T583] CPU: 1 PID: 583 Comm: rcu_torture_fwd Not tainted 6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
>[  146.802916][  T583] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
>[  146.803693][  T583] EIP: rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
>[  146.804177][  T583] Code: 89 d8 e8 fc c5 ff ff e8 67 49 03 00 83 c4 10 84 c0 75 79 a0 96 c6 10 ef 84 c0 75 70 e8 c8 ee ff ff 84 c0 75 67 83 fe 63 7f 02 <0f> 0b 8b 45 f0 8b 15 40 25 8a c2 ff 75 e8 ff 75 e0 01 f8 2b 45 dc
>[  146.805599][  T583] EAX: 00000000 EBX: ecee3800 ECX: 00000000 EDX: 00000000
>[  146.805992][  T583] ESI: 00000000 EDI: 0000c350 EBP: ed9d5f64 ESP: ed9d5f40
>[  146.806491][  T583] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010293
>[  146.807010][  T583] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
>[  146.807484][  T583] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
>[  146.808031][  T583] DR6: fffe0ff0 DR7: 00000400
>[  146.808384][  T583] Call Trace:
>[  146.808634][  T583]  rcu_torture_fwd_prog.cold+0x3b/0xee [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
>[  146.809348][  T583]  kthread+0xc8/0xf0
>[  146.809635][  T583]  ? rcu_torture_fwd_prog_cbfree+0x80/0x80 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
>[  146.810347][  T583]  ? kthread_complete_and_exit+0x20/0x20
>[  146.810734][  T583]  ret_from_fork+0x1c/0x28
>[  146.811075][  T583] irq event stamp: 205883
>[  146.811400][  T583] hardirqs last  enabled at (205891): [<c114bb06>] __up_console_sem+0x66/0x80
>[  146.811960][  T583] hardirqs last disabled at (205898): [<c114baed>] __up_console_sem+0x4d/0x80
>[  146.812583][  T583] softirqs last  enabled at (205880): [<c1ecb40b>] __do_softirq+0x2bb/0x440
>[  146.813079][  T583] softirqs last disabled at (205871): [<c10845f0>] call_on_stack+0x40/0x50
>[  146.813567][  T583] ---[ end trace 0000000000000000 ]---
>[  146.813926][  T583] rcu_torture_fwd_prog_cr Duration 2411 barrier: 3960 pending 50000 n_launders: 0 n_launders_sa: 0 n_max_gps: 0 n_max_cbs: 50000 cver 1 gps 0
>[  147.914266][  T583] rcu_torture_fwd_cb_hist: Callback-invocation histogram 0 (duration 6702 jiffies): 1s/10: 0:0 2s/10: 
>[  149.453780][  T557] ------------[ cut here ]------------
>[  149.454322][  T557] rcu_torture_writer: rtort_pipe_count: 4
>[  149.454817][  T557] WARNING: CPU: 1 PID: 557 at kernel/rcu/rcutorture.c:1583 rcu_torture_writer+0x71d/0xc80 [rcutorture]


This is not a bug.  this is caused by grace period taking too long time, the previous callback
has not been completed.  from the dmesg, can be found that the cpuhotplug test is being
performed periodically, this may cause the rude RCU-Tasks  grace period to take more time,
due to we need to acquire the cpus_read_lock, and the CPU0 always bootup failed, that is to
say, only one CPU of your system is online at this time.


Thanks
Zqiang

>[  149.455687][  T557] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
>[  149.456490][  T557] CPU: 1 PID: 557 Comm: rcu_torture_wri Tainted: G        W          6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
>[  149.457660][  T557] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
>[  149.458484][  T557] EIP: rcu_torture_writer+0x71d/0xc80 [rcutorture]
>[  149.458990][  T557] Code: 05 00 00 8d 43 f4 39 c6 74 c3 e8 0e a0 0b d2 83 ff 63 0f 87 3d 05 00 00 ff 73 fc 68 88 a0 10 ef 68 f4 9a 10 ef e8 10 01 d2 d2 <0f> 0b a1 30 c6 10 ef 83 c4 0c 85 c0 75 95 b8 01 00 00 00 87 05 30
>[  149.460472][  T557] EAX: 00000027 EBX: ef10d630 ECX: e49c0f28 EDX: e49c0f24
>[  149.461022][  T557] ESI: ef10d694 EDI: 0000004f EBP: ece35f8c ESP: ece35f18
>[  149.461539][  T557] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010292
>[  149.462101][  T557] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
>[  149.462642][  T557] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
>[  149.463172][  T557] DR6: fffe0ff0 DR7: 00000400
>[  149.463526][  T557] Call Trace:
>[  149.463795][  T557]  ? lockdep_hardirqs_on_prepare+0xa4/0x160
>[  149.464333][  T557]  ? _raw_spin_unlock_irqrestore+0x45/0x60
>[  149.464795][  T557]  ? trace_hardirqs_on+0x35/0xe0
>[  149.465191][  T557]  kthread+0xc8/0xf0
>[  149.465506][  T557]  ? rcu_torture_pipe_update+0x130/0x130 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
>[  149.466327][  T557]  ? kthread_complete_and_exit+0x20/0x20
>[  149.466771][  T557]  ret_from_fork+0x1c/0x28
>[  149.467136][  T557] irq event stamp: 45753
>[  149.467457][  T557] hardirqs last  enabled at (45761): [<c114bb06>] __up_console_sem+0x66/0x80
>[  149.468145][  T557] hardirqs last disabled at (45770): [<c114baed>] __up_console_sem+0x4d/0x80
>[  149.468803][  T557] softirqs last  enabled at (41056): [<ef1037a0>] rcu_torture_pipe_update+0xe0/0x130 [rcutorture]
>[  149.469602][  T557] softirqs last disabled at (41054): [<ef10377c>] rcu_torture_pipe_update+0xbc/0x130 [rcutorture]
>[  149.470401][  T557] ---[ end trace 0000000000000000 ]---
Paul E. McKenney Dec. 21, 2022, 7:33 p.m. UTC | #5
On Mon, Dec 19, 2022 at 02:21:01AM +0000, Zhang, Qiang1 wrote:
> >Greeting,
> >FYI, we noticed WARNING:at_kernel/rcu/rcutorture.c:#rcu_torture_fwd_prog_cr[rcutorture] due to commit (built with gcc-11):
> >
> >commit: 572a17843591d3c03ad891492939a06833fdd17d ("[PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug")
> >url: https://github.com/intel-lab-lkp/linux/commits/Zqiang/rcu-tasks-Make-rude-RCU-Tasks-work-well-with-CPU-hotplug/20221201-074127
> >base: https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> >patch link: https://lore.kernel.org/all/20221130234533.1983769-1-qiang1.zhang@intel.com/
> >patch subject: [PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
> >
> >in testcase: rcutorture
> >version: 
> >with following parameters:
> >
> >	runtime: 300s
> >	test: cpuhotplug
> >	torture_type: tasks-rude
> >
> >test-description: rcutorture is rcutorture kernel module load/unload test.
> >test-url: https://www.kernel.org/doc/Documentation/RCU/torture.txt
> >
> >on test machine: qemu-system-i386 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
> >
> >caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
> >
> >
> >[  106.051532][  T583] rcu_torture_fwd_prog: Starting forward-progress test 0
> >[  106.052085][  T583] rcu_torture_fwd_prog_cr: Starting forward-progress test 0
> >[  133.611262][  T583] rcu_torture_fwd_prog_cr: Waiting for CBs: rcu_barrier_tasks_rude+0x0/0x10() 0
> >[  146.800051][  T583] ------------[ cut here ]------------
> >[  146.800411][  T583] WARNING: CPU: 1 PID: 583 at kernel/rcu/rcutorture.c:2806 rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> >[  146.801075][  T583] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> >[  146.801894][  T583] CPU: 1 PID: 583 Comm: rcu_torture_fwd Not tainted 6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> >[  146.802916][  T583] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> >[  146.803693][  T583] EIP: rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> >[  146.804177][  T583] Code: 89 d8 e8 fc c5 ff ff e8 67 49 03 00 83 c4 10 84 c0 75 79 a0 96 c6 10 ef 84 c0 75 70 e8 c8 ee ff ff 84 c0 75 67 83 fe 63 7f 02 <0f> 0b 8b 45 f0 8b 15 40 25 8a c2 ff 75 e8 ff 75 e0 01 f8 2b 45 dc
> >[  146.805599][  T583] EAX: 00000000 EBX: ecee3800 ECX: 00000000 EDX: 00000000
> >[  146.805992][  T583] ESI: 00000000 EDI: 0000c350 EBP: ed9d5f64 ESP: ed9d5f40
> >[  146.806491][  T583] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010293
> >[  146.807010][  T583] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> >[  146.807484][  T583] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> >[  146.808031][  T583] DR6: fffe0ff0 DR7: 00000400
> >[  146.808384][  T583] Call Trace:
> >[  146.808634][  T583]  rcu_torture_fwd_prog.cold+0x3b/0xee [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> >[  146.809348][  T583]  kthread+0xc8/0xf0
> >[  146.809635][  T583]  ? rcu_torture_fwd_prog_cbfree+0x80/0x80 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> >[  146.810347][  T583]  ? kthread_complete_and_exit+0x20/0x20
> >[  146.810734][  T583]  ret_from_fork+0x1c/0x28
> >[  146.811075][  T583] irq event stamp: 205883
> >[  146.811400][  T583] hardirqs last  enabled at (205891): [<c114bb06>] __up_console_sem+0x66/0x80
> >[  146.811960][  T583] hardirqs last disabled at (205898): [<c114baed>] __up_console_sem+0x4d/0x80
> >[  146.812583][  T583] softirqs last  enabled at (205880): [<c1ecb40b>] __do_softirq+0x2bb/0x440
> >[  146.813079][  T583] softirqs last disabled at (205871): [<c10845f0>] call_on_stack+0x40/0x50
> >[  146.813567][  T583] ---[ end trace 0000000000000000 ]---
> >[  146.813926][  T583] rcu_torture_fwd_prog_cr Duration 2411 barrier: 3960 pending 50000 n_launders: 0 n_launders_sa: 0 n_max_gps: 0 n_max_cbs: 50000 cver 1 gps 0
> >[  147.914266][  T583] rcu_torture_fwd_cb_hist: Callback-invocation histogram 0 (duration 6702 jiffies): 1s/10: 0:0 2s/10: 
> >[  149.453780][  T557] ------------[ cut here ]------------
> >[  149.454322][  T557] rcu_torture_writer: rtort_pipe_count: 4
> >[  149.454817][  T557] WARNING: CPU: 1 PID: 557 at kernel/rcu/rcutorture.c:1583 rcu_torture_writer+0x71d/0xc80 [rcutorture]
> 
> 
> This is not a bug.  this is caused by grace period taking too long time, the previous callback
> has not been completed.  from the dmesg, can be found that the cpuhotplug test is being
> performed periodically, this may cause the rude RCU-Tasks  grace period to take more time,
> due to we need to acquire the cpus_read_lock, and the CPU0 always bootup failed, that is to
> say, only one CPU of your system is online at this time.

Onlining of a CPU failing with EIO is a new one on me.  Especially
persistent failure.

							Thanx, Paul

> Thanks
> Zqiang
> 
> >[  149.455687][  T557] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> >[  149.456490][  T557] CPU: 1 PID: 557 Comm: rcu_torture_wri Tainted: G        W          6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> >[  149.457660][  T557] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> >[  149.458484][  T557] EIP: rcu_torture_writer+0x71d/0xc80 [rcutorture]
> >[  149.458990][  T557] Code: 05 00 00 8d 43 f4 39 c6 74 c3 e8 0e a0 0b d2 83 ff 63 0f 87 3d 05 00 00 ff 73 fc 68 88 a0 10 ef 68 f4 9a 10 ef e8 10 01 d2 d2 <0f> 0b a1 30 c6 10 ef 83 c4 0c 85 c0 75 95 b8 01 00 00 00 87 05 30
> >[  149.460472][  T557] EAX: 00000027 EBX: ef10d630 ECX: e49c0f28 EDX: e49c0f24
> >[  149.461022][  T557] ESI: ef10d694 EDI: 0000004f EBP: ece35f8c ESP: ece35f18
> >[  149.461539][  T557] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010292
> >[  149.462101][  T557] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> >[  149.462642][  T557] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> >[  149.463172][  T557] DR6: fffe0ff0 DR7: 00000400
> >[  149.463526][  T557] Call Trace:
> >[  149.463795][  T557]  ? lockdep_hardirqs_on_prepare+0xa4/0x160
> >[  149.464333][  T557]  ? _raw_spin_unlock_irqrestore+0x45/0x60
> >[  149.464795][  T557]  ? trace_hardirqs_on+0x35/0xe0
> >[  149.465191][  T557]  kthread+0xc8/0xf0
> >[  149.465506][  T557]  ? rcu_torture_pipe_update+0x130/0x130 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> >[  149.466327][  T557]  ? kthread_complete_and_exit+0x20/0x20
> >[  149.466771][  T557]  ret_from_fork+0x1c/0x28
> >[  149.467136][  T557] irq event stamp: 45753
> >[  149.467457][  T557] hardirqs last  enabled at (45761): [<c114bb06>] __up_console_sem+0x66/0x80
> >[  149.468145][  T557] hardirqs last disabled at (45770): [<c114baed>] __up_console_sem+0x4d/0x80
> >[  149.468803][  T557] softirqs last  enabled at (41056): [<ef1037a0>] rcu_torture_pipe_update+0xe0/0x130 [rcutorture]
> >[  149.469602][  T557] softirqs last disabled at (41054): [<ef10377c>] rcu_torture_pipe_update+0xbc/0x130 [rcutorture]
> >[  149.470401][  T557] ---[ end trace 0000000000000000 ]---
>
Zqiang Dec. 22, 2022, 9:35 a.m. UTC | #6
>On Mon, Dec 19, 2022 at 02:21:01AM +0000, Zhang, Qiang1 wrote:
> >Greeting,
> >FYI, we noticed WARNING:at_kernel/rcu/rcutorture.c:#rcu_torture_fwd_prog_cr[rcutorture] due to commit (built with gcc-11):
> >
> >commit: 572a17843591d3c03ad891492939a06833fdd17d ("[PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug")
> >url: https://github.com/intel-lab-lkp/linux/commits/Zqiang/rcu-tasks-Make-rude-RCU-Tasks-work-well-with-CPU-hotplug/20221201-074127
> >base: https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> >patch link: https://lore.kernel.org/all/20221130234533.1983769-1-qiang1.zhang@intel.com/
> >patch subject: [PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
> >
> >in testcase: rcutorture
> >version: 
> >with following parameters:
> >
> >	runtime: 300s
> >	test: cpuhotplug
> >	torture_type: tasks-rude
> >
> >test-description: rcutorture is rcutorture kernel module load/unload test.
> >test-url: https://www.kernel.org/doc/Documentation/RCU/torture.txt
> >
> >on test machine: qemu-system-i386 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
> >
> >caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
> >
> >
> >[  106.051532][  T583] rcu_torture_fwd_prog: Starting forward-progress test 0
> >[  106.052085][  T583] rcu_torture_fwd_prog_cr: Starting forward-progress test 0
> >[  133.611262][  T583] rcu_torture_fwd_prog_cr: Waiting for CBs: rcu_barrier_tasks_rude+0x0/0x10() 0
> >[  146.800051][  T583] ------------[ cut here ]------------
> >[  146.800411][  T583] WARNING: CPU: 1 PID: 583 at kernel/rcu/rcutorture.c:2806 rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> >[  146.801075][  T583] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> >[  146.801894][  T583] CPU: 1 PID: 583 Comm: rcu_torture_fwd Not tainted 6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> >[  146.802916][  T583] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> >[  146.803693][  T583] EIP: rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> >[  146.804177][  T583] Code: 89 d8 e8 fc c5 ff ff e8 67 49 03 00 83 c4 10 84 c0 75 79 a0 96 c6 10 ef 84 c0 75 70 e8 c8 ee ff ff 84 c0 75 67 83 fe 63 7f 02 <0f> 0b 8b 45 f0 8b 15 40 25 8a c2 ff 75 e8 ff 75 e0 01 f8 2b 45 dc
> >[  146.805599][  T583] EAX: 00000000 EBX: ecee3800 ECX: 00000000 EDX: 00000000
> >[  146.805992][  T583] ESI: 00000000 EDI: 0000c350 EBP: ed9d5f64 ESP: ed9d5f40
> >[  146.806491][  T583] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010293
> >[  146.807010][  T583] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> >[  146.807484][  T583] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> >[  146.808031][  T583] DR6: fffe0ff0 DR7: 00000400
> >[  146.808384][  T583] Call Trace:
> >[  146.808634][  T583]  rcu_torture_fwd_prog.cold+0x3b/0xee [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> >[  146.809348][  T583]  kthread+0xc8/0xf0
> >[  146.809635][  T583]  ? rcu_torture_fwd_prog_cbfree+0x80/0x80 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> >[  146.810347][  T583]  ? kthread_complete_and_exit+0x20/0x20
> >[  146.810734][  T583]  ret_from_fork+0x1c/0x28
> >[  146.811075][  T583] irq event stamp: 205883
> >[  146.811400][  T583] hardirqs last  enabled at (205891): [<c114bb06>] __up_console_sem+0x66/0x80
> >[  146.811960][  T583] hardirqs last disabled at (205898): [<c114baed>] __up_console_sem+0x4d/0x80
> >[  146.812583][  T583] softirqs last  enabled at (205880): [<c1ecb40b>] __do_softirq+0x2bb/0x440
> >[  146.813079][  T583] softirqs last disabled at (205871): [<c10845f0>] call_on_stack+0x40/0x50
> >[  146.813567][  T583] ---[ end trace 0000000000000000 ]---
> >[  146.813926][  T583] rcu_torture_fwd_prog_cr Duration 2411 barrier: 3960 pending 50000 n_launders: 0 n_launders_sa: 0 n_max_gps: 0 n_max_cbs: 50000 cver 1 gps 0
> >[  147.914266][  T583] rcu_torture_fwd_cb_hist: Callback-invocation histogram 0 (duration 6702 jiffies): 1s/10: 0:0 2s/10: 
> >[  149.453780][  T557] ------------[ cut here ]------------
> >[  149.454322][  T557] rcu_torture_writer: rtort_pipe_count: 4
> >[  149.454817][  T557] WARNING: CPU: 1 PID: 557 at kernel/rcu/rcutorture.c:1583 rcu_torture_writer+0x71d/0xc80 [rcutorture]
> 
> 
> This is not a bug.  this is caused by grace period taking too long time, the previous callback
> has not been completed.  from the dmesg, can be found that the cpuhotplug test is being
> performed periodically, this may cause the rude RCU-Tasks  grace period to take more time,
> due to we need to acquire the cpus_read_lock, and the CPU0 always bootup failed, that is to
> say, only one CPU of your system is online at this time.
>
>Onlining of a CPU failing with EIO is a new one on me.  Especially
>persistent failure.

I use the kernel configuration file in the attachment and  base on:
https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev

use "echo 1 > /sys/devices/system/cpu/cpu0/online" can reproduce this problem,
the CPU0 always fails to go online.  

Debug found CPU0 is always not set in cpu_initialized_mask.
causes the do_boot_cpu() to return -1.

do_boot_cpu()
     wakeup_cpu_via_init_nmi();
     if (!boot_error) {
                /*
                 * Wait 10s total for first sign of life from AP
                 */
                boot_error = -1;
                timeout = jiffies + 10*HZ;
                while (time_before(jiffies, timeout)) {
                        if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
                                /*
                                 * Tell AP to proceed with initialization
                                 */
                                cpumask_set_cpu(cpu, cpu_callout_mask);
                                boot_error = 0;
                                break;
                        }
                        schedule();
                }
        }

This looks related to this modification e1c467e69040c("x86, hotplug: 
Wake up CPU0 via NMI instead of INIT, SIPI, SIPI ").


The following modification can make CPU0 go online successfully(This
is just a test, not sure if there are other effects).

diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index 3f3ea0287f69..26ee9cdf639e 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -1013,10 +1013,10 @@ wakeup_cpu_via_init_nmi(int cpu, unsigned long start_ip, int apicid,
        /*
         * Wake up AP by INIT, INIT, STARTUP sequence.
         */
-       if (cpu) {
+//     if (cpu) {
                boot_error = wakeup_secondary_cpu_via_init(apicid, start_ip);
                goto out;
-       }
+//     }

        /*
         * Wake up BSP by nmi.


Thanks
Zqiang

>
>							Thanx, Paul
>
> Thanks
> Zqiang
> 
> >[  149.455687][  T557] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> >[  149.456490][  T557] CPU: 1 PID: 557 Comm: rcu_torture_wri Tainted: G        W          6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> >[  149.457660][  T557] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> >[  149.458484][  T557] EIP: rcu_torture_writer+0x71d/0xc80 [rcutorture]
> >[  149.458990][  T557] Code: 05 00 00 8d 43 f4 39 c6 74 c3 e8 0e a0 0b d2 83 ff 63 0f 87 3d 05 00 00 ff 73 fc 68 88 a0 10 ef 68 f4 9a 10 ef e8 10 01 d2 d2 <0f> 0b a1 30 c6 10 ef 83 c4 0c 85 c0 75 95 b8 01 00 00 00 87 05 30
> >[  149.460472][  T557] EAX: 00000027 EBX: ef10d630 ECX: e49c0f28 EDX: e49c0f24
> >[  149.461022][  T557] ESI: ef10d694 EDI: 0000004f EBP: ece35f8c ESP: ece35f18
> >[  149.461539][  T557] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010292
> >[  149.462101][  T557] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> >[  149.462642][  T557] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> >[  149.463172][  T557] DR6: fffe0ff0 DR7: 00000400
> >[  149.463526][  T557] Call Trace:
> >[  149.463795][  T557]  ? lockdep_hardirqs_on_prepare+0xa4/0x160
> >[  149.464333][  T557]  ? _raw_spin_unlock_irqrestore+0x45/0x60
> >[  149.464795][  T557]  ? trace_hardirqs_on+0x35/0xe0
> >[  149.465191][  T557]  kthread+0xc8/0xf0
> >[  149.465506][  T557]  ? rcu_torture_pipe_update+0x130/0x130 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> >[  149.466327][  T557]  ? kthread_complete_and_exit+0x20/0x20
> >[  149.466771][  T557]  ret_from_fork+0x1c/0x28
> >[  149.467136][  T557] irq event stamp: 45753
> >[  149.467457][  T557] hardirqs last  enabled at (45761): [<c114bb06>] __up_console_sem+0x66/0x80
> >[  149.468145][  T557] hardirqs last disabled at (45770): [<c114baed>] __up_console_sem+0x4d/0x80
> >[  149.468803][  T557] softirqs last  enabled at (41056): [<ef1037a0>] rcu_torture_pipe_update+0xe0/0x130 [rcutorture]
> >[  149.469602][  T557] softirqs last disabled at (41054): [<ef10377c>] rcu_torture_pipe_update+0xbc/0x130 [rcutorture]
> >[  149.470401][  T557] ---[ end trace 0000000000000000 ]---
>
Paul E. McKenney Jan. 5, 2023, 6:22 p.m. UTC | #7
On Thu, Dec 22, 2022 at 09:35:06AM +0000, Zhang, Qiang1 wrote:
> >On Mon, Dec 19, 2022 at 02:21:01AM +0000, Zhang, Qiang1 wrote:
> > >Greeting,
> > >FYI, we noticed WARNING:at_kernel/rcu/rcutorture.c:#rcu_torture_fwd_prog_cr[rcutorture] due to commit (built with gcc-11):
> > >
> > >commit: 572a17843591d3c03ad891492939a06833fdd17d ("[PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug")
> > >url: https://github.com/intel-lab-lkp/linux/commits/Zqiang/rcu-tasks-Make-rude-RCU-Tasks-work-well-with-CPU-hotplug/20221201-074127
> > >base: https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > >patch link: https://lore.kernel.org/all/20221130234533.1983769-1-qiang1.zhang@intel.com/
> > >patch subject: [PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
> > >
> > >in testcase: rcutorture
> > >version: 
> > >with following parameters:
> > >
> > >	runtime: 300s
> > >	test: cpuhotplug
> > >	torture_type: tasks-rude
> > >
> > >test-description: rcutorture is rcutorture kernel module load/unload test.
> > >test-url: https://www.kernel.org/doc/Documentation/RCU/torture.txt
> > >
> > >on test machine: qemu-system-i386 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
> > >
> > >caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
> > >
> > >
> > >[  106.051532][  T583] rcu_torture_fwd_prog: Starting forward-progress test 0
> > >[  106.052085][  T583] rcu_torture_fwd_prog_cr: Starting forward-progress test 0
> > >[  133.611262][  T583] rcu_torture_fwd_prog_cr: Waiting for CBs: rcu_barrier_tasks_rude+0x0/0x10() 0
> > >[  146.800051][  T583] ------------[ cut here ]------------
> > >[  146.800411][  T583] WARNING: CPU: 1 PID: 583 at kernel/rcu/rcutorture.c:2806 rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > >[  146.801075][  T583] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> > >[  146.801894][  T583] CPU: 1 PID: 583 Comm: rcu_torture_fwd Not tainted 6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> > >[  146.802916][  T583] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> > >[  146.803693][  T583] EIP: rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > >[  146.804177][  T583] Code: 89 d8 e8 fc c5 ff ff e8 67 49 03 00 83 c4 10 84 c0 75 79 a0 96 c6 10 ef 84 c0 75 70 e8 c8 ee ff ff 84 c0 75 67 83 fe 63 7f 02 <0f> 0b 8b 45 f0 8b 15 40 25 8a c2 ff 75 e8 ff 75 e0 01 f8 2b 45 dc
> > >[  146.805599][  T583] EAX: 00000000 EBX: ecee3800 ECX: 00000000 EDX: 00000000
> > >[  146.805992][  T583] ESI: 00000000 EDI: 0000c350 EBP: ed9d5f64 ESP: ed9d5f40
> > >[  146.806491][  T583] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010293
> > >[  146.807010][  T583] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> > >[  146.807484][  T583] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> > >[  146.808031][  T583] DR6: fffe0ff0 DR7: 00000400
> > >[  146.808384][  T583] Call Trace:
> > >[  146.808634][  T583]  rcu_torture_fwd_prog.cold+0x3b/0xee [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > >[  146.809348][  T583]  kthread+0xc8/0xf0
> > >[  146.809635][  T583]  ? rcu_torture_fwd_prog_cbfree+0x80/0x80 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > >[  146.810347][  T583]  ? kthread_complete_and_exit+0x20/0x20
> > >[  146.810734][  T583]  ret_from_fork+0x1c/0x28
> > >[  146.811075][  T583] irq event stamp: 205883
> > >[  146.811400][  T583] hardirqs last  enabled at (205891): [<c114bb06>] __up_console_sem+0x66/0x80
> > >[  146.811960][  T583] hardirqs last disabled at (205898): [<c114baed>] __up_console_sem+0x4d/0x80
> > >[  146.812583][  T583] softirqs last  enabled at (205880): [<c1ecb40b>] __do_softirq+0x2bb/0x440
> > >[  146.813079][  T583] softirqs last disabled at (205871): [<c10845f0>] call_on_stack+0x40/0x50
> > >[  146.813567][  T583] ---[ end trace 0000000000000000 ]---
> > >[  146.813926][  T583] rcu_torture_fwd_prog_cr Duration 2411 barrier: 3960 pending 50000 n_launders: 0 n_launders_sa: 0 n_max_gps: 0 n_max_cbs: 50000 cver 1 gps 0
> > >[  147.914266][  T583] rcu_torture_fwd_cb_hist: Callback-invocation histogram 0 (duration 6702 jiffies): 1s/10: 0:0 2s/10: 
> > >[  149.453780][  T557] ------------[ cut here ]------------
> > >[  149.454322][  T557] rcu_torture_writer: rtort_pipe_count: 4
> > >[  149.454817][  T557] WARNING: CPU: 1 PID: 557 at kernel/rcu/rcutorture.c:1583 rcu_torture_writer+0x71d/0xc80 [rcutorture]
> > 
> > 
> > This is not a bug.  this is caused by grace period taking too long time, the previous callback
> > has not been completed.  from the dmesg, can be found that the cpuhotplug test is being
> > performed periodically, this may cause the rude RCU-Tasks  grace period to take more time,
> > due to we need to acquire the cpus_read_lock, and the CPU0 always bootup failed, that is to
> > say, only one CPU of your system is online at this time.
> >
> >Onlining of a CPU failing with EIO is a new one on me.  Especially
> >persistent failure.
> 
> I use the kernel configuration file in the attachment and  base on:
> https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> 
> use "echo 1 > /sys/devices/system/cpu/cpu0/online" can reproduce this problem,
> the CPU0 always fails to go online.  
> 
> Debug found CPU0 is always not set in cpu_initialized_mask.
> causes the do_boot_cpu() to return -1.
> 
> do_boot_cpu()
>      wakeup_cpu_via_init_nmi();
>      if (!boot_error) {
>                 /*
>                  * Wait 10s total for first sign of life from AP
>                  */
>                 boot_error = -1;
>                 timeout = jiffies + 10*HZ;
>                 while (time_before(jiffies, timeout)) {
>                         if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
>                                 /*
>                                  * Tell AP to proceed with initialization
>                                  */
>                                 cpumask_set_cpu(cpu, cpu_callout_mask);
>                                 boot_error = 0;
>                                 break;
>                         }
>                         schedule();
>                 }
>         }
> 
> This looks related to this modification e1c467e69040c("x86, hotplug: 
> Wake up CPU0 via NMI instead of INIT, SIPI, SIPI ").
> 
> 
> The following modification can make CPU0 go online successfully(This
> is just a test, not sure if there are other effects).

Thank you for tracking this down!!!

Huh.  CPU 0 is normally the boot CPU.  Back in the day, it could not
be offlined.  Given that your testing indicates that CPU 0 can now be
taken offline, maybe this "if" statement is a holdover that someone
forgot to remove?

But I must defer to those who know a lot more about this level of
x86 code than I do.

							Thanx, Paul

> diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
> index 3f3ea0287f69..26ee9cdf639e 100644
> --- a/arch/x86/kernel/smpboot.c
> +++ b/arch/x86/kernel/smpboot.c
> @@ -1013,10 +1013,10 @@ wakeup_cpu_via_init_nmi(int cpu, unsigned long start_ip, int apicid,
>         /*
>          * Wake up AP by INIT, INIT, STARTUP sequence.
>          */
> -       if (cpu) {
> +//     if (cpu) {
>                 boot_error = wakeup_secondary_cpu_via_init(apicid, start_ip);
>                 goto out;
> -       }
> +//     }
> 
>         /*
>          * Wake up BSP by nmi.
> 
> 
> Thanks
> Zqiang
> 
> >
> >							Thanx, Paul
> >
> > Thanks
> > Zqiang
> > 
> > >[  149.455687][  T557] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> > >[  149.456490][  T557] CPU: 1 PID: 557 Comm: rcu_torture_wri Tainted: G        W          6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> > >[  149.457660][  T557] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> > >[  149.458484][  T557] EIP: rcu_torture_writer+0x71d/0xc80 [rcutorture]
> > >[  149.458990][  T557] Code: 05 00 00 8d 43 f4 39 c6 74 c3 e8 0e a0 0b d2 83 ff 63 0f 87 3d 05 00 00 ff 73 fc 68 88 a0 10 ef 68 f4 9a 10 ef e8 10 01 d2 d2 <0f> 0b a1 30 c6 10 ef 83 c4 0c 85 c0 75 95 b8 01 00 00 00 87 05 30
> > >[  149.460472][  T557] EAX: 00000027 EBX: ef10d630 ECX: e49c0f28 EDX: e49c0f24
> > >[  149.461022][  T557] ESI: ef10d694 EDI: 0000004f EBP: ece35f8c ESP: ece35f18
> > >[  149.461539][  T557] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010292
> > >[  149.462101][  T557] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> > >[  149.462642][  T557] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> > >[  149.463172][  T557] DR6: fffe0ff0 DR7: 00000400
> > >[  149.463526][  T557] Call Trace:
> > >[  149.463795][  T557]  ? lockdep_hardirqs_on_prepare+0xa4/0x160
> > >[  149.464333][  T557]  ? _raw_spin_unlock_irqrestore+0x45/0x60
> > >[  149.464795][  T557]  ? trace_hardirqs_on+0x35/0xe0
> > >[  149.465191][  T557]  kthread+0xc8/0xf0
> > >[  149.465506][  T557]  ? rcu_torture_pipe_update+0x130/0x130 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > >[  149.466327][  T557]  ? kthread_complete_and_exit+0x20/0x20
> > >[  149.466771][  T557]  ret_from_fork+0x1c/0x28
> > >[  149.467136][  T557] irq event stamp: 45753
> > >[  149.467457][  T557] hardirqs last  enabled at (45761): [<c114bb06>] __up_console_sem+0x66/0x80
> > >[  149.468145][  T557] hardirqs last disabled at (45770): [<c114baed>] __up_console_sem+0x4d/0x80
> > >[  149.468803][  T557] softirqs last  enabled at (41056): [<ef1037a0>] rcu_torture_pipe_update+0xe0/0x130 [rcutorture]
> > >[  149.469602][  T557] softirqs last disabled at (41054): [<ef10377c>] rcu_torture_pipe_update+0xbc/0x130 [rcutorture]
> > >[  149.470401][  T557] ---[ end trace 0000000000000000 ]---
> >
Zqiang Jan. 6, 2023, 2:48 a.m. UTC | #8
On Thu, Dec 22, 2022 at 09:35:06AM +0000, Zhang, Qiang1 wrote:
> >On Mon, Dec 19, 2022 at 02:21:01AM +0000, Zhang, Qiang1 wrote:
> > >Greeting,
> > >FYI, we noticed WARNING:at_kernel/rcu/rcutorture.c:#rcu_torture_fwd_prog_cr[rcutorture] due to commit (built with gcc-11):
> > >
> > >commit: 572a17843591d3c03ad891492939a06833fdd17d ("[PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug")
> > >url: https://github.com/intel-lab-lkp/linux/commits/Zqiang/rcu-tasks-Make-rude-RCU-Tasks-work-well-with-CPU-hotplug/20221201-074127
> > >base: https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > >patch link: https://lore.kernel.org/all/20221130234533.1983769-1-qiang1.zhang@intel.com/
> > >patch subject: [PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
> > >
> > >in testcase: rcutorture
> > >version: 
> > >with following parameters:
> > >
> > >	runtime: 300s
> > >	test: cpuhotplug
> > >	torture_type: tasks-rude
> > >
> > >test-description: rcutorture is rcutorture kernel module load/unload test.
> > >test-url: https://www.kernel.org/doc/Documentation/RCU/torture.txt
> > >
> > >on test machine: qemu-system-i386 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
> > >
> > >caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
> > >
> > >
> > >[  106.051532][  T583] rcu_torture_fwd_prog: Starting forward-progress test 0
> > >[  106.052085][  T583] rcu_torture_fwd_prog_cr: Starting forward-progress test 0
> > >[  133.611262][  T583] rcu_torture_fwd_prog_cr: Waiting for CBs: rcu_barrier_tasks_rude+0x0/0x10() 0
> > >[  146.800051][  T583] ------------[ cut here ]------------
> > >[  146.800411][  T583] WARNING: CPU: 1 PID: 583 at kernel/rcu/rcutorture.c:2806 rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > >[  146.801075][  T583] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> > >[  146.801894][  T583] CPU: 1 PID: 583 Comm: rcu_torture_fwd Not tainted 6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> > >[  146.802916][  T583] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> > >[  146.803693][  T583] EIP: rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > >[  146.804177][  T583] Code: 89 d8 e8 fc c5 ff ff e8 67 49 03 00 83 c4 10 84 c0 75 79 a0 96 c6 10 ef 84 c0 75 70 e8 c8 ee ff ff 84 c0 75 67 83 fe 63 7f 02 <0f> 0b 8b 45 f0 8b 15 40 25 8a c2 ff 75 e8 ff 75 e0 01 f8 2b 45 dc
> > >[  146.805599][  T583] EAX: 00000000 EBX: ecee3800 ECX: 00000000 EDX: 00000000
> > >[  146.805992][  T583] ESI: 00000000 EDI: 0000c350 EBP: ed9d5f64 ESP: ed9d5f40
> > >[  146.806491][  T583] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010293
> > >[  146.807010][  T583] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> > >[  146.807484][  T583] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> > >[  146.808031][  T583] DR6: fffe0ff0 DR7: 00000400
> > >[  146.808384][  T583] Call Trace:
> > >[  146.808634][  T583]  rcu_torture_fwd_prog.cold+0x3b/0xee [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > >[  146.809348][  T583]  kthread+0xc8/0xf0
> > >[  146.809635][  T583]  ? rcu_torture_fwd_prog_cbfree+0x80/0x80 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > >[  146.810347][  T583]  ? kthread_complete_and_exit+0x20/0x20
> > >[  146.810734][  T583]  ret_from_fork+0x1c/0x28
> > >[  146.811075][  T583] irq event stamp: 205883
> > >[  146.811400][  T583] hardirqs last  enabled at (205891): [<c114bb06>] __up_console_sem+0x66/0x80
> > >[  146.811960][  T583] hardirqs last disabled at (205898): [<c114baed>] __up_console_sem+0x4d/0x80
> > >[  146.812583][  T583] softirqs last  enabled at (205880): [<c1ecb40b>] __do_softirq+0x2bb/0x440
> > >[  146.813079][  T583] softirqs last disabled at (205871): [<c10845f0>] call_on_stack+0x40/0x50
> > >[  146.813567][  T583] ---[ end trace 0000000000000000 ]---
> > >[  146.813926][  T583] rcu_torture_fwd_prog_cr Duration 2411 barrier: 3960 pending 50000 n_launders: 0 n_launders_sa: 0 n_max_gps: 0 n_max_cbs: 50000 cver 1 gps 0
> > >[  147.914266][  T583] rcu_torture_fwd_cb_hist: Callback-invocation histogram 0 (duration 6702 jiffies): 1s/10: 0:0 2s/10: 
> > >[  149.453780][  T557] ------------[ cut here ]------------
> > >[  149.454322][  T557] rcu_torture_writer: rtort_pipe_count: 4
> > >[  149.454817][  T557] WARNING: CPU: 1 PID: 557 at kernel/rcu/rcutorture.c:1583 rcu_torture_writer+0x71d/0xc80 [rcutorture]
> > 
> > 
> > This is not a bug.  this is caused by grace period taking too long time, the previous callback
> > has not been completed.  from the dmesg, can be found that the cpuhotplug test is being
> > performed periodically, this may cause the rude RCU-Tasks  grace period to take more time,
> > due to we need to acquire the cpus_read_lock, and the CPU0 always bootup failed, that is to
> > say, only one CPU of your system is online at this time.
> >
> >Onlining of a CPU failing with EIO is a new one on me.  Especially
> >persistent failure.
> 
> I use the kernel configuration file in the attachment and  base on:
> https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> 
> use "echo 1 > /sys/devices/system/cpu/cpu0/online" can reproduce this problem,
> the CPU0 always fails to go online.  
> 
> Debug found CPU0 is always not set in cpu_initialized_mask.
> causes the do_boot_cpu() to return -1.
> 
> do_boot_cpu()
>      wakeup_cpu_via_init_nmi();
>      if (!boot_error) {
>                 /*
>                  * Wait 10s total for first sign of life from AP
>                  */
>                 boot_error = -1;
>                 timeout = jiffies + 10*HZ;
>                 while (time_before(jiffies, timeout)) {
>                         if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
>                                 /*
>                                  * Tell AP to proceed with initialization
>                                  */
>                                 cpumask_set_cpu(cpu, cpu_callout_mask);
>                                 boot_error = 0;
>                                 break;
>                         }
>                         schedule();
>                 }
>         }
> 
> This looks related to this modification e1c467e69040c("x86, hotplug: 
> Wake up CPU0 via NMI instead of INIT, SIPI, SIPI ").
> 
> 
> The following modification can make CPU0 go online successfully(This
> is just a test, not sure if there are other effects).
>
>
>Thank you for tracking this down!!!
>
>Huh.  CPU 0 is normally the boot CPU.  Back in the day, it could not
>be offlined.  Given that your testing indicates that CPU 0 can now be
>taken offline, maybe this "if" statement is a holdover that someone
>forgot to remove?
>
>But I must defer to those who know a lot more about this level of
>x86 code than I do.

I found relevant modification information, maybe it will be of some help

commit e1c467e69040c3be68959332959c07fb3d818e87
Author: Fenghua Yu <fenghua.yu@intel.com>
Date:   Wed Nov 14 04:36:53 2012 -0800

    x86, hotplug: Wake up CPU0 via NMI instead of INIT, SIPI, SIPI

    Instead of waiting for STARTUP after INITs, BSP will execute the BIOS boot-strap
    code which is not a desired behavior for waking up BSP. To avoid the boot-strap
    code, wake up CPU0 by NMI instead.

    This works to wake up soft offlined CPU0 only. If CPU0 is hard offlined (i.e.
    physically hot removed and then hot added), NMI won't wake it up. We'll change
    this code in the future to wake up hard offlined CPU0 if real platform and
    request are available.

    AP is still waken up as before by INIT, SIPI, SIPI sequence.

    Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>
    Link: http://lkml.kernel.org/r/1352896613-25957-1-git-send-email-fenghua.yu@intel.com
    Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>


Thanks
Zqiang

>
>							Thanx, Paul
> diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
> index 3f3ea0287f69..26ee9cdf639e 100644
> --- a/arch/x86/kernel/smpboot.c
> +++ b/arch/x86/kernel/smpboot.c
> @@ -1013,10 +1013,10 @@ wakeup_cpu_via_init_nmi(int cpu, unsigned long start_ip, int apicid,
>         /*
>          * Wake up AP by INIT, INIT, STARTUP sequence.
>          */
> -       if (cpu) {
> +//     if (cpu) {
>                 boot_error = wakeup_secondary_cpu_via_init(apicid, start_ip);
>                 goto out;
> -       }
> +//     }
> 
>         /*
>          * Wake up BSP by nmi.
> 
> 
> Thanks
> Zqiang
> 
> >
> >							Thanx, Paul
> >
> > Thanks
> > Zqiang
> > 
> > >[  149.455687][  T557] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> > >[  149.456490][  T557] CPU: 1 PID: 557 Comm: rcu_torture_wri Tainted: G        W          6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> > >[  149.457660][  T557] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> > >[  149.458484][  T557] EIP: rcu_torture_writer+0x71d/0xc80 [rcutorture]
> > >[  149.458990][  T557] Code: 05 00 00 8d 43 f4 39 c6 74 c3 e8 0e a0 0b d2 83 ff 63 0f 87 3d 05 00 00 ff 73 fc 68 88 a0 10 ef 68 f4 9a 10 ef e8 10 01 d2 d2 <0f> 0b a1 30 c6 10 ef 83 c4 0c 85 c0 75 95 b8 01 00 00 00 87 05 30
> > >[  149.460472][  T557] EAX: 00000027 EBX: ef10d630 ECX: e49c0f28 EDX: e49c0f24
> > >[  149.461022][  T557] ESI: ef10d694 EDI: 0000004f EBP: ece35f8c ESP: ece35f18
> > >[  149.461539][  T557] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010292
> > >[  149.462101][  T557] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> > >[  149.462642][  T557] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> > >[  149.463172][  T557] DR6: fffe0ff0 DR7: 00000400
> > >[  149.463526][  T557] Call Trace:
> > >[  149.463795][  T557]  ? lockdep_hardirqs_on_prepare+0xa4/0x160
> > >[  149.464333][  T557]  ? _raw_spin_unlock_irqrestore+0x45/0x60
> > >[  149.464795][  T557]  ? trace_hardirqs_on+0x35/0xe0
> > >[  149.465191][  T557]  kthread+0xc8/0xf0
> > >[  149.465506][  T557]  ? rcu_torture_pipe_update+0x130/0x130 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > >[  149.466327][  T557]  ? kthread_complete_and_exit+0x20/0x20
> > >[  149.466771][  T557]  ret_from_fork+0x1c/0x28
> > >[  149.467136][  T557] irq event stamp: 45753
> > >[  149.467457][  T557] hardirqs last  enabled at (45761): [<c114bb06>] __up_console_sem+0x66/0x80
> > >[  149.468145][  T557] hardirqs last disabled at (45770): [<c114baed>] __up_console_sem+0x4d/0x80
> > >[  149.468803][  T557] softirqs last  enabled at (41056): [<ef1037a0>] rcu_torture_pipe_update+0xe0/0x130 [rcutorture]
> > >[  149.469602][  T557] softirqs last disabled at (41054): [<ef10377c>] rcu_torture_pipe_update+0xbc/0x130 [rcutorture]
> > >[  149.470401][  T557] ---[ end trace 0000000000000000 ]---
> >
Paul E. McKenney Jan. 10, 2023, 2:10 a.m. UTC | #9
On Fri, Jan 06, 2023 at 02:48:56AM +0000, Zhang, Qiang1 wrote:
> 
> On Thu, Dec 22, 2022 at 09:35:06AM +0000, Zhang, Qiang1 wrote:
> > >On Mon, Dec 19, 2022 at 02:21:01AM +0000, Zhang, Qiang1 wrote:
> > > >Greeting,
> > > >FYI, we noticed WARNING:at_kernel/rcu/rcutorture.c:#rcu_torture_fwd_prog_cr[rcutorture] due to commit (built with gcc-11):
> > > >
> > > >commit: 572a17843591d3c03ad891492939a06833fdd17d ("[PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug")
> > > >url: https://github.com/intel-lab-lkp/linux/commits/Zqiang/rcu-tasks-Make-rude-RCU-Tasks-work-well-with-CPU-hotplug/20221201-074127
> > > >base: https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > >patch link: https://lore.kernel.org/all/20221130234533.1983769-1-qiang1.zhang@intel.com/
> > > >patch subject: [PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
> > > >
> > > >in testcase: rcutorture
> > > >version: 
> > > >with following parameters:
> > > >
> > > >	runtime: 300s
> > > >	test: cpuhotplug
> > > >	torture_type: tasks-rude
> > > >
> > > >test-description: rcutorture is rcutorture kernel module load/unload test.
> > > >test-url: https://www.kernel.org/doc/Documentation/RCU/torture.txt
> > > >
> > > >on test machine: qemu-system-i386 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
> > > >
> > > >caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
> > > >
> > > >
> > > >[  106.051532][  T583] rcu_torture_fwd_prog: Starting forward-progress test 0
> > > >[  106.052085][  T583] rcu_torture_fwd_prog_cr: Starting forward-progress test 0
> > > >[  133.611262][  T583] rcu_torture_fwd_prog_cr: Waiting for CBs: rcu_barrier_tasks_rude+0x0/0x10() 0
> > > >[  146.800051][  T583] ------------[ cut here ]------------
> > > >[  146.800411][  T583] WARNING: CPU: 1 PID: 583 at kernel/rcu/rcutorture.c:2806 rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > >[  146.801075][  T583] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> > > >[  146.801894][  T583] CPU: 1 PID: 583 Comm: rcu_torture_fwd Not tainted 6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> > > >[  146.802916][  T583] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> > > >[  146.803693][  T583] EIP: rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > >[  146.804177][  T583] Code: 89 d8 e8 fc c5 ff ff e8 67 49 03 00 83 c4 10 84 c0 75 79 a0 96 c6 10 ef 84 c0 75 70 e8 c8 ee ff ff 84 c0 75 67 83 fe 63 7f 02 <0f> 0b 8b 45 f0 8b 15 40 25 8a c2 ff 75 e8 ff 75 e0 01 f8 2b 45 dc
> > > >[  146.805599][  T583] EAX: 00000000 EBX: ecee3800 ECX: 00000000 EDX: 00000000
> > > >[  146.805992][  T583] ESI: 00000000 EDI: 0000c350 EBP: ed9d5f64 ESP: ed9d5f40
> > > >[  146.806491][  T583] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010293
> > > >[  146.807010][  T583] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> > > >[  146.807484][  T583] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> > > >[  146.808031][  T583] DR6: fffe0ff0 DR7: 00000400
> > > >[  146.808384][  T583] Call Trace:
> > > >[  146.808634][  T583]  rcu_torture_fwd_prog.cold+0x3b/0xee [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > >[  146.809348][  T583]  kthread+0xc8/0xf0
> > > >[  146.809635][  T583]  ? rcu_torture_fwd_prog_cbfree+0x80/0x80 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > >[  146.810347][  T583]  ? kthread_complete_and_exit+0x20/0x20
> > > >[  146.810734][  T583]  ret_from_fork+0x1c/0x28
> > > >[  146.811075][  T583] irq event stamp: 205883
> > > >[  146.811400][  T583] hardirqs last  enabled at (205891): [<c114bb06>] __up_console_sem+0x66/0x80
> > > >[  146.811960][  T583] hardirqs last disabled at (205898): [<c114baed>] __up_console_sem+0x4d/0x80
> > > >[  146.812583][  T583] softirqs last  enabled at (205880): [<c1ecb40b>] __do_softirq+0x2bb/0x440
> > > >[  146.813079][  T583] softirqs last disabled at (205871): [<c10845f0>] call_on_stack+0x40/0x50
> > > >[  146.813567][  T583] ---[ end trace 0000000000000000 ]---
> > > >[  146.813926][  T583] rcu_torture_fwd_prog_cr Duration 2411 barrier: 3960 pending 50000 n_launders: 0 n_launders_sa: 0 n_max_gps: 0 n_max_cbs: 50000 cver 1 gps 0
> > > >[  147.914266][  T583] rcu_torture_fwd_cb_hist: Callback-invocation histogram 0 (duration 6702 jiffies): 1s/10: 0:0 2s/10: 
> > > >[  149.453780][  T557] ------------[ cut here ]------------
> > > >[  149.454322][  T557] rcu_torture_writer: rtort_pipe_count: 4
> > > >[  149.454817][  T557] WARNING: CPU: 1 PID: 557 at kernel/rcu/rcutorture.c:1583 rcu_torture_writer+0x71d/0xc80 [rcutorture]
> > > 
> > > 
> > > This is not a bug.  this is caused by grace period taking too long time, the previous callback
> > > has not been completed.  from the dmesg, can be found that the cpuhotplug test is being
> > > performed periodically, this may cause the rude RCU-Tasks  grace period to take more time,
> > > due to we need to acquire the cpus_read_lock, and the CPU0 always bootup failed, that is to
> > > say, only one CPU of your system is online at this time.
> > >
> > >Onlining of a CPU failing with EIO is a new one on me.  Especially
> > >persistent failure.
> > 
> > I use the kernel configuration file in the attachment and  base on:
> > https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > 
> > use "echo 1 > /sys/devices/system/cpu/cpu0/online" can reproduce this problem,
> > the CPU0 always fails to go online.  
> > 
> > Debug found CPU0 is always not set in cpu_initialized_mask.
> > causes the do_boot_cpu() to return -1.
> > 
> > do_boot_cpu()
> >      wakeup_cpu_via_init_nmi();
> >      if (!boot_error) {
> >                 /*
> >                  * Wait 10s total for first sign of life from AP
> >                  */
> >                 boot_error = -1;
> >                 timeout = jiffies + 10*HZ;
> >                 while (time_before(jiffies, timeout)) {
> >                         if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
> >                                 /*
> >                                  * Tell AP to proceed with initialization
> >                                  */
> >                                 cpumask_set_cpu(cpu, cpu_callout_mask);
> >                                 boot_error = 0;
> >                                 break;
> >                         }
> >                         schedule();
> >                 }
> >         }
> > 
> > This looks related to this modification e1c467e69040c("x86, hotplug: 
> > Wake up CPU0 via NMI instead of INIT, SIPI, SIPI ").
> > 
> > 
> > The following modification can make CPU0 go online successfully(This
> > is just a test, not sure if there are other effects).
> >
> >
> >Thank you for tracking this down!!!
> >
> >Huh.  CPU 0 is normally the boot CPU.  Back in the day, it could not
> >be offlined.  Given that your testing indicates that CPU 0 can now be
> >taken offline, maybe this "if" statement is a holdover that someone
> >forgot to remove?
> >
> >But I must defer to those who know a lot more about this level of
> >x86 code than I do.
> 
> I found relevant modification information, maybe it will be of some help
> 
> commit e1c467e69040c3be68959332959c07fb3d818e87
> Author: Fenghua Yu <fenghua.yu@intel.com>
> Date:   Wed Nov 14 04:36:53 2012 -0800
> 
>     x86, hotplug: Wake up CPU0 via NMI instead of INIT, SIPI, SIPI
> 
>     Instead of waiting for STARTUP after INITs, BSP will execute the BIOS boot-strap
>     code which is not a desired behavior for waking up BSP. To avoid the boot-strap
>     code, wake up CPU0 by NMI instead.
> 
>     This works to wake up soft offlined CPU0 only. If CPU0 is hard offlined (i.e.
>     physically hot removed and then hot added), NMI won't wake it up. We'll change
>     this code in the future to wake up hard offlined CPU0 if real platform and
>     request are available.
> 
>     AP is still waken up as before by INIT, SIPI, SIPI sequence.
> 
>     Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>
>     Link: http://lkml.kernel.org/r/1352896613-25957-1-git-send-email-fenghua.yu@intel.com
>     Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>

Interesting!

When I run rcutorture on x86 (under qemu/KVM), it refuses to attempt to
offline CPU 0.  The reason is that cpu_is_hotpluggable(0) returns false.

If I comment out that check, I get this:

	rcu-torture:torture_onoff task: offline 0 failed: errno -1

A bit of digging turned up the CONFIG_BOOTPARAM_HOTPLUG_CPU0 Kconfig
option.  Setting that causes CPU 0 to be offlined.

I clearly need to add this to one of the scenarios.  I arbitrarily
chose TREE01, but please let me know if some other scenario or
group of scenarios would be better.

							Thanx, Paul

> Thanks
> Zqiang
> 
> >
> >							Thanx, Paul
> > diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
> > index 3f3ea0287f69..26ee9cdf639e 100644
> > --- a/arch/x86/kernel/smpboot.c
> > +++ b/arch/x86/kernel/smpboot.c
> > @@ -1013,10 +1013,10 @@ wakeup_cpu_via_init_nmi(int cpu, unsigned long start_ip, int apicid,
> >         /*
> >          * Wake up AP by INIT, INIT, STARTUP sequence.
> >          */
> > -       if (cpu) {
> > +//     if (cpu) {
> >                 boot_error = wakeup_secondary_cpu_via_init(apicid, start_ip);
> >                 goto out;
> > -       }
> > +//     }
> > 
> >         /*
> >          * Wake up BSP by nmi.
> > 
> > 
> > Thanks
> > Zqiang
> > 
> > >
> > >							Thanx, Paul
> > >
> > > Thanks
> > > Zqiang
> > > 
> > > >[  149.455687][  T557] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> > > >[  149.456490][  T557] CPU: 1 PID: 557 Comm: rcu_torture_wri Tainted: G        W          6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> > > >[  149.457660][  T557] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> > > >[  149.458484][  T557] EIP: rcu_torture_writer+0x71d/0xc80 [rcutorture]
> > > >[  149.458990][  T557] Code: 05 00 00 8d 43 f4 39 c6 74 c3 e8 0e a0 0b d2 83 ff 63 0f 87 3d 05 00 00 ff 73 fc 68 88 a0 10 ef 68 f4 9a 10 ef e8 10 01 d2 d2 <0f> 0b a1 30 c6 10 ef 83 c4 0c 85 c0 75 95 b8 01 00 00 00 87 05 30
> > > >[  149.460472][  T557] EAX: 00000027 EBX: ef10d630 ECX: e49c0f28 EDX: e49c0f24
> > > >[  149.461022][  T557] ESI: ef10d694 EDI: 0000004f EBP: ece35f8c ESP: ece35f18
> > > >[  149.461539][  T557] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010292
> > > >[  149.462101][  T557] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> > > >[  149.462642][  T557] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> > > >[  149.463172][  T557] DR6: fffe0ff0 DR7: 00000400
> > > >[  149.463526][  T557] Call Trace:
> > > >[  149.463795][  T557]  ? lockdep_hardirqs_on_prepare+0xa4/0x160
> > > >[  149.464333][  T557]  ? _raw_spin_unlock_irqrestore+0x45/0x60
> > > >[  149.464795][  T557]  ? trace_hardirqs_on+0x35/0xe0
> > > >[  149.465191][  T557]  kthread+0xc8/0xf0
> > > >[  149.465506][  T557]  ? rcu_torture_pipe_update+0x130/0x130 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > >[  149.466327][  T557]  ? kthread_complete_and_exit+0x20/0x20
> > > >[  149.466771][  T557]  ret_from_fork+0x1c/0x28
> > > >[  149.467136][  T557] irq event stamp: 45753
> > > >[  149.467457][  T557] hardirqs last  enabled at (45761): [<c114bb06>] __up_console_sem+0x66/0x80
> > > >[  149.468145][  T557] hardirqs last disabled at (45770): [<c114baed>] __up_console_sem+0x4d/0x80
> > > >[  149.468803][  T557] softirqs last  enabled at (41056): [<ef1037a0>] rcu_torture_pipe_update+0xe0/0x130 [rcutorture]
> > > >[  149.469602][  T557] softirqs last disabled at (41054): [<ef10377c>] rcu_torture_pipe_update+0xbc/0x130 [rcutorture]
> > > >[  149.470401][  T557] ---[ end trace 0000000000000000 ]---
> > >
Paul E. McKenney Jan. 10, 2023, 5:02 a.m. UTC | #10
On Mon, Jan 09, 2023 at 06:10:12PM -0800, Paul E. McKenney wrote:
> On Fri, Jan 06, 2023 at 02:48:56AM +0000, Zhang, Qiang1 wrote:
> > 
> > On Thu, Dec 22, 2022 at 09:35:06AM +0000, Zhang, Qiang1 wrote:
> > > >On Mon, Dec 19, 2022 at 02:21:01AM +0000, Zhang, Qiang1 wrote:
> > > > >Greeting,
> > > > >FYI, we noticed WARNING:at_kernel/rcu/rcutorture.c:#rcu_torture_fwd_prog_cr[rcutorture] due to commit (built with gcc-11):
> > > > >
> > > > >commit: 572a17843591d3c03ad891492939a06833fdd17d ("[PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug")
> > > > >url: https://github.com/intel-lab-lkp/linux/commits/Zqiang/rcu-tasks-Make-rude-RCU-Tasks-work-well-with-CPU-hotplug/20221201-074127
> > > > >base: https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > > >patch link: https://lore.kernel.org/all/20221130234533.1983769-1-qiang1.zhang@intel.com/
> > > > >patch subject: [PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
> > > > >
> > > > >in testcase: rcutorture
> > > > >version: 
> > > > >with following parameters:
> > > > >
> > > > >	runtime: 300s
> > > > >	test: cpuhotplug
> > > > >	torture_type: tasks-rude
> > > > >
> > > > >test-description: rcutorture is rcutorture kernel module load/unload test.
> > > > >test-url: https://www.kernel.org/doc/Documentation/RCU/torture.txt
> > > > >
> > > > >on test machine: qemu-system-i386 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
> > > > >
> > > > >caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
> > > > >
> > > > >
> > > > >[  106.051532][  T583] rcu_torture_fwd_prog: Starting forward-progress test 0
> > > > >[  106.052085][  T583] rcu_torture_fwd_prog_cr: Starting forward-progress test 0
> > > > >[  133.611262][  T583] rcu_torture_fwd_prog_cr: Waiting for CBs: rcu_barrier_tasks_rude+0x0/0x10() 0
> > > > >[  146.800051][  T583] ------------[ cut here ]------------
> > > > >[  146.800411][  T583] WARNING: CPU: 1 PID: 583 at kernel/rcu/rcutorture.c:2806 rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > >[  146.801075][  T583] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> > > > >[  146.801894][  T583] CPU: 1 PID: 583 Comm: rcu_torture_fwd Not tainted 6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> > > > >[  146.802916][  T583] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> > > > >[  146.803693][  T583] EIP: rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > >[  146.804177][  T583] Code: 89 d8 e8 fc c5 ff ff e8 67 49 03 00 83 c4 10 84 c0 75 79 a0 96 c6 10 ef 84 c0 75 70 e8 c8 ee ff ff 84 c0 75 67 83 fe 63 7f 02 <0f> 0b 8b 45 f0 8b 15 40 25 8a c2 ff 75 e8 ff 75 e0 01 f8 2b 45 dc
> > > > >[  146.805599][  T583] EAX: 00000000 EBX: ecee3800 ECX: 00000000 EDX: 00000000
> > > > >[  146.805992][  T583] ESI: 00000000 EDI: 0000c350 EBP: ed9d5f64 ESP: ed9d5f40
> > > > >[  146.806491][  T583] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010293
> > > > >[  146.807010][  T583] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> > > > >[  146.807484][  T583] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> > > > >[  146.808031][  T583] DR6: fffe0ff0 DR7: 00000400
> > > > >[  146.808384][  T583] Call Trace:
> > > > >[  146.808634][  T583]  rcu_torture_fwd_prog.cold+0x3b/0xee [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > >[  146.809348][  T583]  kthread+0xc8/0xf0
> > > > >[  146.809635][  T583]  ? rcu_torture_fwd_prog_cbfree+0x80/0x80 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > >[  146.810347][  T583]  ? kthread_complete_and_exit+0x20/0x20
> > > > >[  146.810734][  T583]  ret_from_fork+0x1c/0x28
> > > > >[  146.811075][  T583] irq event stamp: 205883
> > > > >[  146.811400][  T583] hardirqs last  enabled at (205891): [<c114bb06>] __up_console_sem+0x66/0x80
> > > > >[  146.811960][  T583] hardirqs last disabled at (205898): [<c114baed>] __up_console_sem+0x4d/0x80
> > > > >[  146.812583][  T583] softirqs last  enabled at (205880): [<c1ecb40b>] __do_softirq+0x2bb/0x440
> > > > >[  146.813079][  T583] softirqs last disabled at (205871): [<c10845f0>] call_on_stack+0x40/0x50
> > > > >[  146.813567][  T583] ---[ end trace 0000000000000000 ]---
> > > > >[  146.813926][  T583] rcu_torture_fwd_prog_cr Duration 2411 barrier: 3960 pending 50000 n_launders: 0 n_launders_sa: 0 n_max_gps: 0 n_max_cbs: 50000 cver 1 gps 0
> > > > >[  147.914266][  T583] rcu_torture_fwd_cb_hist: Callback-invocation histogram 0 (duration 6702 jiffies): 1s/10: 0:0 2s/10: 
> > > > >[  149.453780][  T557] ------------[ cut here ]------------
> > > > >[  149.454322][  T557] rcu_torture_writer: rtort_pipe_count: 4
> > > > >[  149.454817][  T557] WARNING: CPU: 1 PID: 557 at kernel/rcu/rcutorture.c:1583 rcu_torture_writer+0x71d/0xc80 [rcutorture]
> > > > 
> > > > 
> > > > This is not a bug.  this is caused by grace period taking too long time, the previous callback
> > > > has not been completed.  from the dmesg, can be found that the cpuhotplug test is being
> > > > performed periodically, this may cause the rude RCU-Tasks  grace period to take more time,
> > > > due to we need to acquire the cpus_read_lock, and the CPU0 always bootup failed, that is to
> > > > say, only one CPU of your system is online at this time.
> > > >
> > > >Onlining of a CPU failing with EIO is a new one on me.  Especially
> > > >persistent failure.
> > > 
> > > I use the kernel configuration file in the attachment and  base on:
> > > https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > 
> > > use "echo 1 > /sys/devices/system/cpu/cpu0/online" can reproduce this problem,
> > > the CPU0 always fails to go online.  
> > > 
> > > Debug found CPU0 is always not set in cpu_initialized_mask.
> > > causes the do_boot_cpu() to return -1.
> > > 
> > > do_boot_cpu()
> > >      wakeup_cpu_via_init_nmi();
> > >      if (!boot_error) {
> > >                 /*
> > >                  * Wait 10s total for first sign of life from AP
> > >                  */
> > >                 boot_error = -1;
> > >                 timeout = jiffies + 10*HZ;
> > >                 while (time_before(jiffies, timeout)) {
> > >                         if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
> > >                                 /*
> > >                                  * Tell AP to proceed with initialization
> > >                                  */
> > >                                 cpumask_set_cpu(cpu, cpu_callout_mask);
> > >                                 boot_error = 0;
> > >                                 break;
> > >                         }
> > >                         schedule();
> > >                 }
> > >         }
> > > 
> > > This looks related to this modification e1c467e69040c("x86, hotplug: 
> > > Wake up CPU0 via NMI instead of INIT, SIPI, SIPI ").
> > > 
> > > 
> > > The following modification can make CPU0 go online successfully(This
> > > is just a test, not sure if there are other effects).
> > >
> > >
> > >Thank you for tracking this down!!!
> > >
> > >Huh.  CPU 0 is normally the boot CPU.  Back in the day, it could not
> > >be offlined.  Given that your testing indicates that CPU 0 can now be
> > >taken offline, maybe this "if" statement is a holdover that someone
> > >forgot to remove?
> > >
> > >But I must defer to those who know a lot more about this level of
> > >x86 code than I do.
> > 
> > I found relevant modification information, maybe it will be of some help
> > 
> > commit e1c467e69040c3be68959332959c07fb3d818e87
> > Author: Fenghua Yu <fenghua.yu@intel.com>
> > Date:   Wed Nov 14 04:36:53 2012 -0800
> > 
> >     x86, hotplug: Wake up CPU0 via NMI instead of INIT, SIPI, SIPI
> > 
> >     Instead of waiting for STARTUP after INITs, BSP will execute the BIOS boot-strap
> >     code which is not a desired behavior for waking up BSP. To avoid the boot-strap
> >     code, wake up CPU0 by NMI instead.
> > 
> >     This works to wake up soft offlined CPU0 only. If CPU0 is hard offlined (i.e.
> >     physically hot removed and then hot added), NMI won't wake it up. We'll change
> >     this code in the future to wake up hard offlined CPU0 if real platform and
> >     request are available.
> > 
> >     AP is still waken up as before by INIT, SIPI, SIPI sequence.
> > 
> >     Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>
> >     Link: http://lkml.kernel.org/r/1352896613-25957-1-git-send-email-fenghua.yu@intel.com
> >     Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
> 
> Interesting!
> 
> When I run rcutorture on x86 (under qemu/KVM), it refuses to attempt to
> offline CPU 0.  The reason is that cpu_is_hotpluggable(0) returns false.
> 
> If I comment out that check, I get this:
> 
> 	rcu-torture:torture_onoff task: offline 0 failed: errno -1
> 
> A bit of digging turned up the CONFIG_BOOTPARAM_HOTPLUG_CPU0 Kconfig
> option.  Setting that causes CPU 0 to be offlined.
> 
> I clearly need to add this to one of the scenarios.  I arbitrarily
> chose TREE01, but please let me know if some other scenario or
> group of scenarios would be better.

For example, like this.

						Thanx, Paul

------------------------------------------------------------------------

commit 6c11be38a0363b61db36352555e6746920711a1f
Author: Paul E. McKenney <paulmck@kernel.org>
Date:   Mon Jan 9 21:01:12 2023 -0800

    rcutorture: Set CONFIG_BOOTPARAM_HOTPLUG_CPU0 to offline CPU 0
    
    There is now a BOOTPARAM_HOTPLUG_CPU0 Kconfig option that allows CPU 0
    to be offlined on x86 systems.  This commit therefore sets this option in
    the TREE01 rcutorture scenario in order to regularly test this capability.
    
    Reported-by: "Zhang, Qiang1" <qiang1.zhang@intel.com>
    Signed-off-by: Paul E. McKenney <paulmck@kernel.org>

diff --git a/tools/testing/selftests/rcutorture/configs/rcu/TREE01 b/tools/testing/selftests/rcutorture/configs/rcu/TREE01
index 8ae41d5f81a3e..04831ef1f9b55 100644
--- a/tools/testing/selftests/rcutorture/configs/rcu/TREE01
+++ b/tools/testing/selftests/rcutorture/configs/rcu/TREE01
@@ -15,3 +15,4 @@ CONFIG_DEBUG_LOCK_ALLOC=n
 CONFIG_RCU_BOOST=n
 CONFIG_DEBUG_OBJECTS_RCU_HEAD=n
 CONFIG_RCU_EXPERT=y
+CONFIG_BOOTPARAM_HOTPLUG_CPU0=y
Zqiang Jan. 10, 2023, 8:12 a.m. UTC | #11
On Mon, Jan 09, 2023 at 06:10:12PM -0800, Paul E. McKenney wrote:
> On Fri, Jan 06, 2023 at 02:48:56AM +0000, Zhang, Qiang1 wrote:
> > 
> > On Thu, Dec 22, 2022 at 09:35:06AM +0000, Zhang, Qiang1 wrote:
> > > >On Mon, Dec 19, 2022 at 02:21:01AM +0000, Zhang, Qiang1 wrote:
> > > > >Greeting,
> > > > >FYI, we noticed WARNING:at_kernel/rcu/rcutorture.c:#rcu_torture_fwd_prog_cr[rcutorture] due to commit (built with gcc-11):
> > > > >
> > > > >commit: 572a17843591d3c03ad891492939a06833fdd17d ("[PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug")
> > > > >url: https://github.com/intel-lab-lkp/linux/commits/Zqiang/rcu-tasks-Make-rude-RCU-Tasks-work-well-with-CPU-hotplug/20221201-074127
> > > > >base: https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > > >patch link: https://lore.kernel.org/all/20221130234533.1983769-1-qiang1.zhang@intel.com/
> > > > >patch subject: [PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
> > > > >
> > > > >in testcase: rcutorture
> > > > >version: 
> > > > >with following parameters:
> > > > >
> > > > >	runtime: 300s
> > > > >	test: cpuhotplug
> > > > >	torture_type: tasks-rude
> > > > >
> > > > >test-description: rcutorture is rcutorture kernel module load/unload test.
> > > > >test-url: https://www.kernel.org/doc/Documentation/RCU/torture.txt
> > > > >
> > > > >on test machine: qemu-system-i386 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
> > > > >
> > > > >caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
> > > > >
> > > > >
> > > > >[  106.051532][  T583] rcu_torture_fwd_prog: Starting forward-progress test 0
> > > > >[  106.052085][  T583] rcu_torture_fwd_prog_cr: Starting forward-progress test 0
> > > > >[  133.611262][  T583] rcu_torture_fwd_prog_cr: Waiting for CBs: rcu_barrier_tasks_rude+0x0/0x10() 0
> > > > >[  146.800051][  T583] ------------[ cut here ]------------
> > > > >[  146.800411][  T583] WARNING: CPU: 1 PID: 583 at kernel/rcu/rcutorture.c:2806 rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > >[  146.801075][  T583] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> > > > >[  146.801894][  T583] CPU: 1 PID: 583 Comm: rcu_torture_fwd Not tainted 6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> > > > >[  146.802916][  T583] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> > > > >[  146.803693][  T583] EIP: rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > >[  146.804177][  T583] Code: 89 d8 e8 fc c5 ff ff e8 67 49 03 00 83 c4 10 84 c0 75 79 a0 96 c6 10 ef 84 c0 75 70 e8 c8 ee ff ff 84 c0 75 67 83 fe 63 7f 02 <0f> 0b 8b 45 f0 8b 15 40 25 8a c2 ff 75 e8 ff 75 e0 01 f8 2b 45 dc
> > > > >[  146.805599][  T583] EAX: 00000000 EBX: ecee3800 ECX: 00000000 EDX: 00000000
> > > > >[  146.805992][  T583] ESI: 00000000 EDI: 0000c350 EBP: ed9d5f64 ESP: ed9d5f40
> > > > >[  146.806491][  T583] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010293
> > > > >[  146.807010][  T583] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> > > > >[  146.807484][  T583] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> > > > >[  146.808031][  T583] DR6: fffe0ff0 DR7: 00000400
> > > > >[  146.808384][  T583] Call Trace:
> > > > >[  146.808634][  T583]  rcu_torture_fwd_prog.cold+0x3b/0xee [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > >[  146.809348][  T583]  kthread+0xc8/0xf0
> > > > >[  146.809635][  T583]  ? rcu_torture_fwd_prog_cbfree+0x80/0x80 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > >[  146.810347][  T583]  ? kthread_complete_and_exit+0x20/0x20
> > > > >[  146.810734][  T583]  ret_from_fork+0x1c/0x28
> > > > >[  146.811075][  T583] irq event stamp: 205883
> > > > >[  146.811400][  T583] hardirqs last  enabled at (205891): [<c114bb06>] __up_console_sem+0x66/0x80
> > > > >[  146.811960][  T583] hardirqs last disabled at (205898): [<c114baed>] __up_console_sem+0x4d/0x80
> > > > >[  146.812583][  T583] softirqs last  enabled at (205880): [<c1ecb40b>] __do_softirq+0x2bb/0x440
> > > > >[  146.813079][  T583] softirqs last disabled at (205871): [<c10845f0>] call_on_stack+0x40/0x50
> > > > >[  146.813567][  T583] ---[ end trace 0000000000000000 ]---
> > > > >[  146.813926][  T583] rcu_torture_fwd_prog_cr Duration 2411 barrier: 3960 pending 50000 n_launders: 0 n_launders_sa: 0 n_max_gps: 0 n_max_cbs: 50000 cver 1 gps 0
> > > > >[  147.914266][  T583] rcu_torture_fwd_cb_hist: Callback-invocation histogram 0 (duration 6702 jiffies): 1s/10: 0:0 2s/10: 
> > > > >[  149.453780][  T557] ------------[ cut here ]------------
> > > > >[  149.454322][  T557] rcu_torture_writer: rtort_pipe_count: 4
> > > > >[  149.454817][  T557] WARNING: CPU: 1 PID: 557 at kernel/rcu/rcutorture.c:1583 rcu_torture_writer+0x71d/0xc80 [rcutorture]
> > > > 
> > > > 
> > > > This is not a bug.  this is caused by grace period taking too long time, the previous callback
> > > > has not been completed.  from the dmesg, can be found that the cpuhotplug test is being
> > > > performed periodically, this may cause the rude RCU-Tasks  grace period to take more time,
> > > > due to we need to acquire the cpus_read_lock, and the CPU0 always bootup failed, that is to
> > > > say, only one CPU of your system is online at this time.
> > > >
> > > >Onlining of a CPU failing with EIO is a new one on me.  Especially
> > > >persistent failure.
> > > 
> > > I use the kernel configuration file in the attachment and  base on:
> > > https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > 
> > > use "echo 1 > /sys/devices/system/cpu/cpu0/online" can reproduce this problem,
> > > the CPU0 always fails to go online.  
> > > 
> > > Debug found CPU0 is always not set in cpu_initialized_mask.
> > > causes the do_boot_cpu() to return -1.
> > > 
> > > do_boot_cpu()
> > >      wakeup_cpu_via_init_nmi();
> > >      if (!boot_error) {
> > >                 /*
> > >                  * Wait 10s total for first sign of life from AP
> > >                  */
> > >                 boot_error = -1;
> > >                 timeout = jiffies + 10*HZ;
> > >                 while (time_before(jiffies, timeout)) {
> > >                         if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
> > >                                 /*
> > >                                  * Tell AP to proceed with initialization
> > >                                  */
> > >                                 cpumask_set_cpu(cpu, cpu_callout_mask);
> > >                                 boot_error = 0;
> > >                                 break;
> > >                         }
> > >                         schedule();
> > >                 }
> > >         }
> > > 
> > > This looks related to this modification e1c467e69040c("x86, hotplug: 
> > > Wake up CPU0 via NMI instead of INIT, SIPI, SIPI ").
> > > 
> > > 
> > > The following modification can make CPU0 go online successfully(This
> > > is just a test, not sure if there are other effects).
> > >
> > >
> > >Thank you for tracking this down!!!
> > >
> > >Huh.  CPU 0 is normally the boot CPU.  Back in the day, it could not
> > >be offlined.  Given that your testing indicates that CPU 0 can now be
> > >taken offline, maybe this "if" statement is a holdover that someone
> > >forgot to remove?
> > >
> > >But I must defer to those who know a lot more about this level of
> > >x86 code than I do.
> > 
> > I found relevant modification information, maybe it will be of some help
> > 
> > commit e1c467e69040c3be68959332959c07fb3d818e87
> > Author: Fenghua Yu <fenghua.yu@intel.com>
> > Date:   Wed Nov 14 04:36:53 2012 -0800
> > 
> >     x86, hotplug: Wake up CPU0 via NMI instead of INIT, SIPI, SIPI
> > 
> >     Instead of waiting for STARTUP after INITs, BSP will execute the BIOS boot-strap
> >     code which is not a desired behavior for waking up BSP. To avoid the boot-strap
> >     code, wake up CPU0 by NMI instead.
> > 
> >     This works to wake up soft offlined CPU0 only. If CPU0 is hard offlined (i.e.
> >     physically hot removed and then hot added), NMI won't wake it up. We'll change
> >     this code in the future to wake up hard offlined CPU0 if real platform and
> >     request are available.
> > 
> >     AP is still waken up as before by INIT, SIPI, SIPI sequence.
> > 
> >     Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>
> >     Link: http://lkml.kernel.org/r/1352896613-25957-1-git-send-email-fenghua.yu@intel.com
> >     Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
> 
> Interesting!
> 
> When I run rcutorture on x86 (under qemu/KVM), it refuses to attempt to
> offline CPU 0.  The reason is that cpu_is_hotpluggable(0) returns false.
> 
> If I comment out that check, I get this:
> 
> 	rcu-torture:torture_onoff task: offline 0 failed: errno -1
> 
> A bit of digging turned up the CONFIG_BOOTPARAM_HOTPLUG_CPU0 Kconfig
> option.  Setting that causes CPU 0 to be offlined.
> 
> I clearly need to add this to one of the scenarios.  I arbitrarily
> chose TREE01, but please let me know if some other scenario or
> group of scenarios would be better.
>
>For example, like this.

This looks good, whether all TREE* can be added ? 
(after all, this just makes CPU0 support offline, but the actual CPU going 
offline/online also depends on "onoff_interval").

Thanks
Zqiang

>
>						Thanx, Paul
>
>------------------------------------------------------------------------
>
>commit 6c11be38a0363b61db36352555e6746920711a1f
>Author: Paul E. McKenney <paulmck@kernel.org>
>Date:   Mon Jan 9 21:01:12 2023 -0800
>
>    rcutorture: Set CONFIG_BOOTPARAM_HOTPLUG_CPU0 to offline CPU 0
>    
>    There is now a BOOTPARAM_HOTPLUG_CPU0 Kconfig option that allows CPU 0
>    to be offlined on x86 systems.  This commit therefore sets this option in
>    the TREE01 rcutorture scenario in order to regularly test this capability.
>    
>    Reported-by: "Zhang, Qiang1" <qiang1.zhang@intel.com>
>    Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
>
>diff --git a/tools/testing/selftests/rcutorture/configs/rcu/TREE01 b/tools/testing/selftests/rcutorture/configs/rcu/TREE01
>index 8ae41d5f81a3e..04831ef1f9b55 100644
>--- a/tools/testing/selftests/rcutorture/configs/rcu/TREE01
>+++ b/tools/testing/selftests/rcutorture/configs/rcu/TREE01
>@@ -15,3 +15,4 @@ CONFIG_DEBUG_LOCK_ALLOC=n
>CONFIG_RCU_BOOST=n
> CONFIG_DEBUG_OBJECTS_RCU_HEAD=n
> CONFIG_RCU_EXPERT=y
>+CONFIG_BOOTPARAM_HOTPLUG_CPU0=y
Paul E. McKenney Jan. 10, 2023, 2:58 p.m. UTC | #12
On Tue, Jan 10, 2023 at 08:12:49AM +0000, Zhang, Qiang1 wrote:
> 
> On Mon, Jan 09, 2023 at 06:10:12PM -0800, Paul E. McKenney wrote:
> > On Fri, Jan 06, 2023 at 02:48:56AM +0000, Zhang, Qiang1 wrote:
> > > 
> > > On Thu, Dec 22, 2022 at 09:35:06AM +0000, Zhang, Qiang1 wrote:
> > > > >On Mon, Dec 19, 2022 at 02:21:01AM +0000, Zhang, Qiang1 wrote:
> > > > > >Greeting,
> > > > > >FYI, we noticed WARNING:at_kernel/rcu/rcutorture.c:#rcu_torture_fwd_prog_cr[rcutorture] due to commit (built with gcc-11):
> > > > > >
> > > > > >commit: 572a17843591d3c03ad891492939a06833fdd17d ("[PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug")
> > > > > >url: https://github.com/intel-lab-lkp/linux/commits/Zqiang/rcu-tasks-Make-rude-RCU-Tasks-work-well-with-CPU-hotplug/20221201-074127
> > > > > >base: https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > > > >patch link: https://lore.kernel.org/all/20221130234533.1983769-1-qiang1.zhang@intel.com/
> > > > > >patch subject: [PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
> > > > > >
> > > > > >in testcase: rcutorture
> > > > > >version: 
> > > > > >with following parameters:
> > > > > >
> > > > > >	runtime: 300s
> > > > > >	test: cpuhotplug
> > > > > >	torture_type: tasks-rude
> > > > > >
> > > > > >test-description: rcutorture is rcutorture kernel module load/unload test.
> > > > > >test-url: https://www.kernel.org/doc/Documentation/RCU/torture.txt
> > > > > >
> > > > > >on test machine: qemu-system-i386 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
> > > > > >
> > > > > >caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
> > > > > >
> > > > > >
> > > > > >[  106.051532][  T583] rcu_torture_fwd_prog: Starting forward-progress test 0
> > > > > >[  106.052085][  T583] rcu_torture_fwd_prog_cr: Starting forward-progress test 0
> > > > > >[  133.611262][  T583] rcu_torture_fwd_prog_cr: Waiting for CBs: rcu_barrier_tasks_rude+0x0/0x10() 0
> > > > > >[  146.800051][  T583] ------------[ cut here ]------------
> > > > > >[  146.800411][  T583] WARNING: CPU: 1 PID: 583 at kernel/rcu/rcutorture.c:2806 rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > > >[  146.801075][  T583] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> > > > > >[  146.801894][  T583] CPU: 1 PID: 583 Comm: rcu_torture_fwd Not tainted 6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> > > > > >[  146.802916][  T583] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> > > > > >[  146.803693][  T583] EIP: rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > > >[  146.804177][  T583] Code: 89 d8 e8 fc c5 ff ff e8 67 49 03 00 83 c4 10 84 c0 75 79 a0 96 c6 10 ef 84 c0 75 70 e8 c8 ee ff ff 84 c0 75 67 83 fe 63 7f 02 <0f> 0b 8b 45 f0 8b 15 40 25 8a c2 ff 75 e8 ff 75 e0 01 f8 2b 45 dc
> > > > > >[  146.805599][  T583] EAX: 00000000 EBX: ecee3800 ECX: 00000000 EDX: 00000000
> > > > > >[  146.805992][  T583] ESI: 00000000 EDI: 0000c350 EBP: ed9d5f64 ESP: ed9d5f40
> > > > > >[  146.806491][  T583] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010293
> > > > > >[  146.807010][  T583] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> > > > > >[  146.807484][  T583] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> > > > > >[  146.808031][  T583] DR6: fffe0ff0 DR7: 00000400
> > > > > >[  146.808384][  T583] Call Trace:
> > > > > >[  146.808634][  T583]  rcu_torture_fwd_prog.cold+0x3b/0xee [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > > >[  146.809348][  T583]  kthread+0xc8/0xf0
> > > > > >[  146.809635][  T583]  ? rcu_torture_fwd_prog_cbfree+0x80/0x80 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > > >[  146.810347][  T583]  ? kthread_complete_and_exit+0x20/0x20
> > > > > >[  146.810734][  T583]  ret_from_fork+0x1c/0x28
> > > > > >[  146.811075][  T583] irq event stamp: 205883
> > > > > >[  146.811400][  T583] hardirqs last  enabled at (205891): [<c114bb06>] __up_console_sem+0x66/0x80
> > > > > >[  146.811960][  T583] hardirqs last disabled at (205898): [<c114baed>] __up_console_sem+0x4d/0x80
> > > > > >[  146.812583][  T583] softirqs last  enabled at (205880): [<c1ecb40b>] __do_softirq+0x2bb/0x440
> > > > > >[  146.813079][  T583] softirqs last disabled at (205871): [<c10845f0>] call_on_stack+0x40/0x50
> > > > > >[  146.813567][  T583] ---[ end trace 0000000000000000 ]---
> > > > > >[  146.813926][  T583] rcu_torture_fwd_prog_cr Duration 2411 barrier: 3960 pending 50000 n_launders: 0 n_launders_sa: 0 n_max_gps: 0 n_max_cbs: 50000 cver 1 gps 0
> > > > > >[  147.914266][  T583] rcu_torture_fwd_cb_hist: Callback-invocation histogram 0 (duration 6702 jiffies): 1s/10: 0:0 2s/10: 
> > > > > >[  149.453780][  T557] ------------[ cut here ]------------
> > > > > >[  149.454322][  T557] rcu_torture_writer: rtort_pipe_count: 4
> > > > > >[  149.454817][  T557] WARNING: CPU: 1 PID: 557 at kernel/rcu/rcutorture.c:1583 rcu_torture_writer+0x71d/0xc80 [rcutorture]
> > > > > 
> > > > > 
> > > > > This is not a bug.  this is caused by grace period taking too long time, the previous callback
> > > > > has not been completed.  from the dmesg, can be found that the cpuhotplug test is being
> > > > > performed periodically, this may cause the rude RCU-Tasks  grace period to take more time,
> > > > > due to we need to acquire the cpus_read_lock, and the CPU0 always bootup failed, that is to
> > > > > say, only one CPU of your system is online at this time.
> > > > >
> > > > >Onlining of a CPU failing with EIO is a new one on me.  Especially
> > > > >persistent failure.
> > > > 
> > > > I use the kernel configuration file in the attachment and  base on:
> > > > https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > > 
> > > > use "echo 1 > /sys/devices/system/cpu/cpu0/online" can reproduce this problem,
> > > > the CPU0 always fails to go online.  
> > > > 
> > > > Debug found CPU0 is always not set in cpu_initialized_mask.
> > > > causes the do_boot_cpu() to return -1.
> > > > 
> > > > do_boot_cpu()
> > > >      wakeup_cpu_via_init_nmi();
> > > >      if (!boot_error) {
> > > >                 /*
> > > >                  * Wait 10s total for first sign of life from AP
> > > >                  */
> > > >                 boot_error = -1;
> > > >                 timeout = jiffies + 10*HZ;
> > > >                 while (time_before(jiffies, timeout)) {
> > > >                         if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
> > > >                                 /*
> > > >                                  * Tell AP to proceed with initialization
> > > >                                  */
> > > >                                 cpumask_set_cpu(cpu, cpu_callout_mask);
> > > >                                 boot_error = 0;
> > > >                                 break;
> > > >                         }
> > > >                         schedule();
> > > >                 }
> > > >         }
> > > > 
> > > > This looks related to this modification e1c467e69040c("x86, hotplug: 
> > > > Wake up CPU0 via NMI instead of INIT, SIPI, SIPI ").
> > > > 
> > > > 
> > > > The following modification can make CPU0 go online successfully(This
> > > > is just a test, not sure if there are other effects).
> > > >
> > > >
> > > >Thank you for tracking this down!!!
> > > >
> > > >Huh.  CPU 0 is normally the boot CPU.  Back in the day, it could not
> > > >be offlined.  Given that your testing indicates that CPU 0 can now be
> > > >taken offline, maybe this "if" statement is a holdover that someone
> > > >forgot to remove?
> > > >
> > > >But I must defer to those who know a lot more about this level of
> > > >x86 code than I do.
> > > 
> > > I found relevant modification information, maybe it will be of some help
> > > 
> > > commit e1c467e69040c3be68959332959c07fb3d818e87
> > > Author: Fenghua Yu <fenghua.yu@intel.com>
> > > Date:   Wed Nov 14 04:36:53 2012 -0800
> > > 
> > >     x86, hotplug: Wake up CPU0 via NMI instead of INIT, SIPI, SIPI
> > > 
> > >     Instead of waiting for STARTUP after INITs, BSP will execute the BIOS boot-strap
> > >     code which is not a desired behavior for waking up BSP. To avoid the boot-strap
> > >     code, wake up CPU0 by NMI instead.
> > > 
> > >     This works to wake up soft offlined CPU0 only. If CPU0 is hard offlined (i.e.
> > >     physically hot removed and then hot added), NMI won't wake it up. We'll change
> > >     this code in the future to wake up hard offlined CPU0 if real platform and
> > >     request are available.
> > > 
> > >     AP is still waken up as before by INIT, SIPI, SIPI sequence.
> > > 
> > >     Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>
> > >     Link: http://lkml.kernel.org/r/1352896613-25957-1-git-send-email-fenghua.yu@intel.com
> > >     Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
> > 
> > Interesting!
> > 
> > When I run rcutorture on x86 (under qemu/KVM), it refuses to attempt to
> > offline CPU 0.  The reason is that cpu_is_hotpluggable(0) returns false.
> > 
> > If I comment out that check, I get this:
> > 
> > 	rcu-torture:torture_onoff task: offline 0 failed: errno -1
> > 
> > A bit of digging turned up the CONFIG_BOOTPARAM_HOTPLUG_CPU0 Kconfig
> > option.  Setting that causes CPU 0 to be offlined.
> > 
> > I clearly need to add this to one of the scenarios.  I arbitrarily
> > chose TREE01, but please let me know if some other scenario or
> > group of scenarios would be better.
> >
> >For example, like this.
> 
> This looks good, whether all TREE* can be added ? 
> (after all, this just makes CPU0 support offline, but the actual CPU going 
> offline/online also depends on "onoff_interval").

You can use the kvm.sh --kconfig parameter to make this happen in your
own testing.  Or you can hand-edit the TREE* files.  The kvm.sh script
sets onoff_interval for you, so that should be OK.  If you are testing
using modprobe, then yes, you need to set up this in your kernel build
and using the modprobe arguments.

It looks like x86 kernels build with CONFIG_BOOTPARAM_HOTPLUG_CPU0=n,
mostly, anyway, so most of the by-default rcutorture testing should also
build this way.

But again, you have a couple of ways to override this in your own testing.

							Thanx, Paul

> Thanks
> Zqiang
> 
> >
> >						Thanx, Paul
> >
> >------------------------------------------------------------------------
> >
> >commit 6c11be38a0363b61db36352555e6746920711a1f
> >Author: Paul E. McKenney <paulmck@kernel.org>
> >Date:   Mon Jan 9 21:01:12 2023 -0800
> >
> >    rcutorture: Set CONFIG_BOOTPARAM_HOTPLUG_CPU0 to offline CPU 0
> >    
> >    There is now a BOOTPARAM_HOTPLUG_CPU0 Kconfig option that allows CPU 0
> >    to be offlined on x86 systems.  This commit therefore sets this option in
> >    the TREE01 rcutorture scenario in order to regularly test this capability.
> >    
> >    Reported-by: "Zhang, Qiang1" <qiang1.zhang@intel.com>
> >    Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
> >
> >diff --git a/tools/testing/selftests/rcutorture/configs/rcu/TREE01 b/tools/testing/selftests/rcutorture/configs/rcu/TREE01
> >index 8ae41d5f81a3e..04831ef1f9b55 100644
> >--- a/tools/testing/selftests/rcutorture/configs/rcu/TREE01
> >+++ b/tools/testing/selftests/rcutorture/configs/rcu/TREE01
> >@@ -15,3 +15,4 @@ CONFIG_DEBUG_LOCK_ALLOC=n
> >CONFIG_RCU_BOOST=n
> > CONFIG_DEBUG_OBJECTS_RCU_HEAD=n
> > CONFIG_RCU_EXPERT=y
> >+CONFIG_BOOTPARAM_HOTPLUG_CPU0=y
Paul E. McKenney Jan. 10, 2023, 5:59 p.m. UTC | #13
On Tue, Jan 10, 2023 at 06:58:15AM -0800, Paul E. McKenney wrote:
> On Tue, Jan 10, 2023 at 08:12:49AM +0000, Zhang, Qiang1 wrote:
> > 
> > On Mon, Jan 09, 2023 at 06:10:12PM -0800, Paul E. McKenney wrote:
> > > On Fri, Jan 06, 2023 at 02:48:56AM +0000, Zhang, Qiang1 wrote:
> > > > 
> > > > On Thu, Dec 22, 2022 at 09:35:06AM +0000, Zhang, Qiang1 wrote:
> > > > > >On Mon, Dec 19, 2022 at 02:21:01AM +0000, Zhang, Qiang1 wrote:
> > > > > > >Greeting,
> > > > > > >FYI, we noticed WARNING:at_kernel/rcu/rcutorture.c:#rcu_torture_fwd_prog_cr[rcutorture] due to commit (built with gcc-11):
> > > > > > >
> > > > > > >commit: 572a17843591d3c03ad891492939a06833fdd17d ("[PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug")
> > > > > > >url: https://github.com/intel-lab-lkp/linux/commits/Zqiang/rcu-tasks-Make-rude-RCU-Tasks-work-well-with-CPU-hotplug/20221201-074127
> > > > > > >base: https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > > > > >patch link: https://lore.kernel.org/all/20221130234533.1983769-1-qiang1.zhang@intel.com/
> > > > > > >patch subject: [PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
> > > > > > >
> > > > > > >in testcase: rcutorture
> > > > > > >version: 
> > > > > > >with following parameters:
> > > > > > >
> > > > > > >	runtime: 300s
> > > > > > >	test: cpuhotplug
> > > > > > >	torture_type: tasks-rude
> > > > > > >
> > > > > > >test-description: rcutorture is rcutorture kernel module load/unload test.
> > > > > > >test-url: https://www.kernel.org/doc/Documentation/RCU/torture.txt
> > > > > > >
> > > > > > >on test machine: qemu-system-i386 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
> > > > > > >
> > > > > > >caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
> > > > > > >
> > > > > > >
> > > > > > >[  106.051532][  T583] rcu_torture_fwd_prog: Starting forward-progress test 0
> > > > > > >[  106.052085][  T583] rcu_torture_fwd_prog_cr: Starting forward-progress test 0
> > > > > > >[  133.611262][  T583] rcu_torture_fwd_prog_cr: Waiting for CBs: rcu_barrier_tasks_rude+0x0/0x10() 0
> > > > > > >[  146.800051][  T583] ------------[ cut here ]------------
> > > > > > >[  146.800411][  T583] WARNING: CPU: 1 PID: 583 at kernel/rcu/rcutorture.c:2806 rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > > > >[  146.801075][  T583] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> > > > > > >[  146.801894][  T583] CPU: 1 PID: 583 Comm: rcu_torture_fwd Not tainted 6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> > > > > > >[  146.802916][  T583] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> > > > > > >[  146.803693][  T583] EIP: rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > > > >[  146.804177][  T583] Code: 89 d8 e8 fc c5 ff ff e8 67 49 03 00 83 c4 10 84 c0 75 79 a0 96 c6 10 ef 84 c0 75 70 e8 c8 ee ff ff 84 c0 75 67 83 fe 63 7f 02 <0f> 0b 8b 45 f0 8b 15 40 25 8a c2 ff 75 e8 ff 75 e0 01 f8 2b 45 dc
> > > > > > >[  146.805599][  T583] EAX: 00000000 EBX: ecee3800 ECX: 00000000 EDX: 00000000
> > > > > > >[  146.805992][  T583] ESI: 00000000 EDI: 0000c350 EBP: ed9d5f64 ESP: ed9d5f40
> > > > > > >[  146.806491][  T583] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010293
> > > > > > >[  146.807010][  T583] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> > > > > > >[  146.807484][  T583] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> > > > > > >[  146.808031][  T583] DR6: fffe0ff0 DR7: 00000400
> > > > > > >[  146.808384][  T583] Call Trace:
> > > > > > >[  146.808634][  T583]  rcu_torture_fwd_prog.cold+0x3b/0xee [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > > > >[  146.809348][  T583]  kthread+0xc8/0xf0
> > > > > > >[  146.809635][  T583]  ? rcu_torture_fwd_prog_cbfree+0x80/0x80 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > > > >[  146.810347][  T583]  ? kthread_complete_and_exit+0x20/0x20
> > > > > > >[  146.810734][  T583]  ret_from_fork+0x1c/0x28
> > > > > > >[  146.811075][  T583] irq event stamp: 205883
> > > > > > >[  146.811400][  T583] hardirqs last  enabled at (205891): [<c114bb06>] __up_console_sem+0x66/0x80
> > > > > > >[  146.811960][  T583] hardirqs last disabled at (205898): [<c114baed>] __up_console_sem+0x4d/0x80
> > > > > > >[  146.812583][  T583] softirqs last  enabled at (205880): [<c1ecb40b>] __do_softirq+0x2bb/0x440
> > > > > > >[  146.813079][  T583] softirqs last disabled at (205871): [<c10845f0>] call_on_stack+0x40/0x50
> > > > > > >[  146.813567][  T583] ---[ end trace 0000000000000000 ]---
> > > > > > >[  146.813926][  T583] rcu_torture_fwd_prog_cr Duration 2411 barrier: 3960 pending 50000 n_launders: 0 n_launders_sa: 0 n_max_gps: 0 n_max_cbs: 50000 cver 1 gps 0
> > > > > > >[  147.914266][  T583] rcu_torture_fwd_cb_hist: Callback-invocation histogram 0 (duration 6702 jiffies): 1s/10: 0:0 2s/10: 
> > > > > > >[  149.453780][  T557] ------------[ cut here ]------------
> > > > > > >[  149.454322][  T557] rcu_torture_writer: rtort_pipe_count: 4
> > > > > > >[  149.454817][  T557] WARNING: CPU: 1 PID: 557 at kernel/rcu/rcutorture.c:1583 rcu_torture_writer+0x71d/0xc80 [rcutorture]
> > > > > > 
> > > > > > 
> > > > > > This is not a bug.  this is caused by grace period taking too long time, the previous callback
> > > > > > has not been completed.  from the dmesg, can be found that the cpuhotplug test is being
> > > > > > performed periodically, this may cause the rude RCU-Tasks  grace period to take more time,
> > > > > > due to we need to acquire the cpus_read_lock, and the CPU0 always bootup failed, that is to
> > > > > > say, only one CPU of your system is online at this time.
> > > > > >
> > > > > >Onlining of a CPU failing with EIO is a new one on me.  Especially
> > > > > >persistent failure.
> > > > > 
> > > > > I use the kernel configuration file in the attachment and  base on:
> > > > > https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > > > 
> > > > > use "echo 1 > /sys/devices/system/cpu/cpu0/online" can reproduce this problem,
> > > > > the CPU0 always fails to go online.  
> > > > > 
> > > > > Debug found CPU0 is always not set in cpu_initialized_mask.
> > > > > causes the do_boot_cpu() to return -1.
> > > > > 
> > > > > do_boot_cpu()
> > > > >      wakeup_cpu_via_init_nmi();
> > > > >      if (!boot_error) {
> > > > >                 /*
> > > > >                  * Wait 10s total for first sign of life from AP
> > > > >                  */
> > > > >                 boot_error = -1;
> > > > >                 timeout = jiffies + 10*HZ;
> > > > >                 while (time_before(jiffies, timeout)) {
> > > > >                         if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
> > > > >                                 /*
> > > > >                                  * Tell AP to proceed with initialization
> > > > >                                  */
> > > > >                                 cpumask_set_cpu(cpu, cpu_callout_mask);
> > > > >                                 boot_error = 0;
> > > > >                                 break;
> > > > >                         }
> > > > >                         schedule();
> > > > >                 }
> > > > >         }
> > > > > 
> > > > > This looks related to this modification e1c467e69040c("x86, hotplug: 
> > > > > Wake up CPU0 via NMI instead of INIT, SIPI, SIPI ").
> > > > > 
> > > > > 
> > > > > The following modification can make CPU0 go online successfully(This
> > > > > is just a test, not sure if there are other effects).
> > > > >
> > > > >
> > > > >Thank you for tracking this down!!!
> > > > >
> > > > >Huh.  CPU 0 is normally the boot CPU.  Back in the day, it could not
> > > > >be offlined.  Given that your testing indicates that CPU 0 can now be
> > > > >taken offline, maybe this "if" statement is a holdover that someone
> > > > >forgot to remove?
> > > > >
> > > > >But I must defer to those who know a lot more about this level of
> > > > >x86 code than I do.
> > > > 
> > > > I found relevant modification information, maybe it will be of some help
> > > > 
> > > > commit e1c467e69040c3be68959332959c07fb3d818e87
> > > > Author: Fenghua Yu <fenghua.yu@intel.com>
> > > > Date:   Wed Nov 14 04:36:53 2012 -0800
> > > > 
> > > >     x86, hotplug: Wake up CPU0 via NMI instead of INIT, SIPI, SIPI
> > > > 
> > > >     Instead of waiting for STARTUP after INITs, BSP will execute the BIOS boot-strap
> > > >     code which is not a desired behavior for waking up BSP. To avoid the boot-strap
> > > >     code, wake up CPU0 by NMI instead.
> > > > 
> > > >     This works to wake up soft offlined CPU0 only. If CPU0 is hard offlined (i.e.
> > > >     physically hot removed and then hot added), NMI won't wake it up. We'll change
> > > >     this code in the future to wake up hard offlined CPU0 if real platform and
> > > >     request are available.
> > > > 
> > > >     AP is still waken up as before by INIT, SIPI, SIPI sequence.
> > > > 
> > > >     Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>
> > > >     Link: http://lkml.kernel.org/r/1352896613-25957-1-git-send-email-fenghua.yu@intel.com
> > > >     Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
> > > 
> > > Interesting!
> > > 
> > > When I run rcutorture on x86 (under qemu/KVM), it refuses to attempt to
> > > offline CPU 0.  The reason is that cpu_is_hotpluggable(0) returns false.
> > > 
> > > If I comment out that check, I get this:
> > > 
> > > 	rcu-torture:torture_onoff task: offline 0 failed: errno -1
> > > 
> > > A bit of digging turned up the CONFIG_BOOTPARAM_HOTPLUG_CPU0 Kconfig
> > > option.  Setting that causes CPU 0 to be offlined.
> > > 
> > > I clearly need to add this to one of the scenarios.  I arbitrarily
> > > chose TREE01, but please let me know if some other scenario or
> > > group of scenarios would be better.
> > >
> > >For example, like this.
> > 
> > This looks good, whether all TREE* can be added ? 
> > (after all, this just makes CPU0 support offline, but the actual CPU going 
> > offline/online also depends on "onoff_interval").
> 
> You can use the kvm.sh --kconfig parameter to make this happen in your
> own testing.  Or you can hand-edit the TREE* files.  The kvm.sh script
> sets onoff_interval for you, so that should be OK.  If you are testing
> using modprobe, then yes, you need to set up this in your kernel build
> and using the modprobe arguments.
> 
> It looks like x86 kernels build with CONFIG_BOOTPARAM_HOTPLUG_CPU0=n,
> mostly, anyway, so most of the by-default rcutorture testing should also
> build this way.
> 
> But again, you have a couple of ways to override this in your own testing.

And I cannot reproduce the CPU-hotplug online error under qemu/KVM.
Which might be expected behavior, given that you ran your tests using
specific qemu arguments that kvm.sh does not provide.

Nevertheless, CPU 0 really does go through the "Wake up BSP by nmi"
portion of wakeup_cpu_via_init_nmi() at runtime, and this works fine.
On the other hand, it also works fine if I comment out that "if (cpu)"
check.

This sounds like a question for your colleagues at Intel.  ;-)

							Thanx, Paul
Zqiang Jan. 11, 2023, 5:21 a.m. UTC | #14
On Tue, Jan 10, 2023 at 06:58:15AM -0800, Paul E. McKenney wrote:
> On Tue, Jan 10, 2023 at 08:12:49AM +0000, Zhang, Qiang1 wrote:
> > 
> > On Mon, Jan 09, 2023 at 06:10:12PM -0800, Paul E. McKenney wrote:
> > > On Fri, Jan 06, 2023 at 02:48:56AM +0000, Zhang, Qiang1 wrote:
> > > > 
> > > > On Thu, Dec 22, 2022 at 09:35:06AM +0000, Zhang, Qiang1 wrote:
> > > > > >On Mon, Dec 19, 2022 at 02:21:01AM +0000, Zhang, Qiang1 wrote:
> > > > > > >Greeting,
> > > > > > >FYI, we noticed WARNING:at_kernel/rcu/rcutorture.c:#rcu_torture_fwd_prog_cr[rcutorture] due to commit (built with gcc-11):
> > > > > > >
> > > > > > >commit: 572a17843591d3c03ad891492939a06833fdd17d ("[PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug")
> > > > > > >url: https://github.com/intel-lab-lkp/linux/commits/Zqiang/rcu-tasks-Make-rude-RCU-Tasks-work-well-with-CPU-hotplug/20221201-074127
> > > > > > >base: https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > > > > >patch link: https://lore.kernel.org/all/20221130234533.1983769-1-qiang1.zhang@intel.com/
> > > > > > >patch subject: [PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
> > > > > > >
> > > > > > >in testcase: rcutorture
> > > > > > >version: 
> > > > > > >with following parameters:
> > > > > > >
> > > > > > >	runtime: 300s
> > > > > > >	test: cpuhotplug
> > > > > > >	torture_type: tasks-rude
> > > > > > >
> > > > > > >test-description: rcutorture is rcutorture kernel module load/unload test.
> > > > > > >test-url: https://www.kernel.org/doc/Documentation/RCU/torture.txt
> > > > > > >
> > > > > > >on test machine: qemu-system-i386 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
> > > > > > >
> > > > > > >caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
> > > > > > >
> > > > > > >
> > > > > > >[  106.051532][  T583] rcu_torture_fwd_prog: Starting forward-progress test 0
> > > > > > >[  106.052085][  T583] rcu_torture_fwd_prog_cr: Starting forward-progress test 0
> > > > > > >[  133.611262][  T583] rcu_torture_fwd_prog_cr: Waiting for CBs: rcu_barrier_tasks_rude+0x0/0x10() 0
> > > > > > >[  146.800051][  T583] ------------[ cut here ]------------
> > > > > > >[  146.800411][  T583] WARNING: CPU: 1 PID: 583 at kernel/rcu/rcutorture.c:2806 rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > > > >[  146.801075][  T583] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> > > > > > >[  146.801894][  T583] CPU: 1 PID: 583 Comm: rcu_torture_fwd Not tainted 6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> > > > > > >[  146.802916][  T583] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> > > > > > >[  146.803693][  T583] EIP: rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > > > >[  146.804177][  T583] Code: 89 d8 e8 fc c5 ff ff e8 67 49 03 00 83 c4 10 84 c0 75 79 a0 96 c6 10 ef 84 c0 75 70 e8 c8 ee ff ff 84 c0 75 67 83 fe 63 7f 02 <0f> 0b 8b 45 f0 8b 15 40 25 8a c2 ff 75 e8 ff 75 e0 01 f8 2b 45 dc
> > > > > > >[  146.805599][  T583] EAX: 00000000 EBX: ecee3800 ECX: 00000000 EDX: 00000000
> > > > > > >[  146.805992][  T583] ESI: 00000000 EDI: 0000c350 EBP: ed9d5f64 ESP: ed9d5f40
> > > > > > >[  146.806491][  T583] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010293
> > > > > > >[  146.807010][  T583] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> > > > > > >[  146.807484][  T583] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> > > > > > >[  146.808031][  T583] DR6: fffe0ff0 DR7: 00000400
> > > > > > >[  146.808384][  T583] Call Trace:
> > > > > > >[  146.808634][  T583]  rcu_torture_fwd_prog.cold+0x3b/0xee [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > > > >[  146.809348][  T583]  kthread+0xc8/0xf0
> > > > > > >[  146.809635][  T583]  ? rcu_torture_fwd_prog_cbfree+0x80/0x80 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > > > >[  146.810347][  T583]  ? kthread_complete_and_exit+0x20/0x20
> > > > > > >[  146.810734][  T583]  ret_from_fork+0x1c/0x28
> > > > > > >[  146.811075][  T583] irq event stamp: 205883
> > > > > > >[  146.811400][  T583] hardirqs last  enabled at (205891): [<c114bb06>] __up_console_sem+0x66/0x80
> > > > > > >[  146.811960][  T583] hardirqs last disabled at (205898): [<c114baed>] __up_console_sem+0x4d/0x80
> > > > > > >[  146.812583][  T583] softirqs last  enabled at (205880): [<c1ecb40b>] __do_softirq+0x2bb/0x440
> > > > > > >[  146.813079][  T583] softirqs last disabled at (205871): [<c10845f0>] call_on_stack+0x40/0x50
> > > > > > >[  146.813567][  T583] ---[ end trace 0000000000000000 ]---
> > > > > > >[  146.813926][  T583] rcu_torture_fwd_prog_cr Duration 2411 barrier: 3960 pending 50000 n_launders: 0 n_launders_sa: 0 n_max_gps: 0 n_max_cbs: 50000 cver 1 gps 0
> > > > > > >[  147.914266][  T583] rcu_torture_fwd_cb_hist: Callback-invocation histogram 0 (duration 6702 jiffies): 1s/10: 0:0 2s/10: 
> > > > > > >[  149.453780][  T557] ------------[ cut here ]------------
> > > > > > >[  149.454322][  T557] rcu_torture_writer: rtort_pipe_count: 4
> > > > > > >[  149.454817][  T557] WARNING: CPU: 1 PID: 557 at kernel/rcu/rcutorture.c:1583 rcu_torture_writer+0x71d/0xc80 [rcutorture]
> > > > > > 
> > > > > > 
> > > > > > This is not a bug.  this is caused by grace period taking too long time, the previous callback
> > > > > > has not been completed.  from the dmesg, can be found that the cpuhotplug test is being
> > > > > > performed periodically, this may cause the rude RCU-Tasks  grace period to take more time,
> > > > > > due to we need to acquire the cpus_read_lock, and the CPU0 always bootup failed, that is to
> > > > > > say, only one CPU of your system is online at this time.
> > > > > >
> > > > > >Onlining of a CPU failing with EIO is a new one on me.  Especially
> > > > > >persistent failure.
> > > > > 
> > > > > I use the kernel configuration file in the attachment and  base on:
> > > > > https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > > > 
> > > > > use "echo 1 > /sys/devices/system/cpu/cpu0/online" can reproduce this problem,
> > > > > the CPU0 always fails to go online.  
> > > > > 
> > > > > Debug found CPU0 is always not set in cpu_initialized_mask.
> > > > > causes the do_boot_cpu() to return -1.
> > > > > 
> > > > > do_boot_cpu()
> > > > >      wakeup_cpu_via_init_nmi();
> > > > >      if (!boot_error) {
> > > > >                 /*
> > > > >                  * Wait 10s total for first sign of life from AP
> > > > >                  */
> > > > >                 boot_error = -1;
> > > > >                 timeout = jiffies + 10*HZ;
> > > > >                 while (time_before(jiffies, timeout)) {
> > > > >                         if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
> > > > >                                 /*
> > > > >                                  * Tell AP to proceed with initialization
> > > > >                                  */
> > > > >                                 cpumask_set_cpu(cpu, cpu_callout_mask);
> > > > >                                 boot_error = 0;
> > > > >                                 break;
> > > > >                         }
> > > > >                         schedule();
> > > > >                 }
> > > > >         }
> > > > > 
> > > > > This looks related to this modification e1c467e69040c("x86, hotplug: 
> > > > > Wake up CPU0 via NMI instead of INIT, SIPI, SIPI ").
> > > > > 
> > > > > 
> > > > > The following modification can make CPU0 go online successfully(This
> > > > > is just a test, not sure if there are other effects).
> > > > >
> > > > >
> > > > >Thank you for tracking this down!!!
> > > > >
> > > > >Huh.  CPU 0 is normally the boot CPU.  Back in the day, it could not
> > > > >be offlined.  Given that your testing indicates that CPU 0 can now be
> > > > >taken offline, maybe this "if" statement is a holdover that someone
> > > > >forgot to remove?
> > > > >
> > > > >But I must defer to those who know a lot more about this level of
> > > > >x86 code than I do.
> > > > 
> > > > I found relevant modification information, maybe it will be of some help
> > > > 
> > > > commit e1c467e69040c3be68959332959c07fb3d818e87
> > > > Author: Fenghua Yu <fenghua.yu@intel.com>
> > > > Date:   Wed Nov 14 04:36:53 2012 -0800
> > > > 
> > > >     x86, hotplug: Wake up CPU0 via NMI instead of INIT, SIPI, SIPI
> > > > 
> > > >     Instead of waiting for STARTUP after INITs, BSP will execute the BIOS boot-strap
> > > >     code which is not a desired behavior for waking up BSP. To avoid the boot-strap
> > > >     code, wake up CPU0 by NMI instead.
> > > > 
> > > >     This works to wake up soft offlined CPU0 only. If CPU0 is hard offlined (i.e.
> > > >     physically hot removed and then hot added), NMI won't wake it up. We'll change
> > > >     this code in the future to wake up hard offlined CPU0 if real platform and
> > > >     request are available.
> > > > 
> > > >     AP is still waken up as before by INIT, SIPI, SIPI sequence.
> > > > 
> > > >     Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>
> > > >     Link: http://lkml.kernel.org/r/1352896613-25957-1-git-send-email-fenghua.yu@intel.com
> > > >     Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
> > > 
> > > Interesting!
> > > 
> > > When I run rcutorture on x86 (under qemu/KVM), it refuses to attempt to
> > > offline CPU 0.  The reason is that cpu_is_hotpluggable(0) returns false.
> > > 
> > > If I comment out that check, I get this:
> > > 
> > > 	rcu-torture:torture_onoff task: offline 0 failed: errno -1
> > > 
> > > A bit of digging turned up the CONFIG_BOOTPARAM_HOTPLUG_CPU0 Kconfig
> > > option.  Setting that causes CPU 0 to be offlined.
> > > 
> > > I clearly need to add this to one of the scenarios.  I arbitrarily
> > > chose TREE01, but please let me know if some other scenario or
> > > group of scenarios would be better.
> > >
> > >For example, like this.
> > 
> > This looks good, whether all TREE* can be added ? 
> > (after all, this just makes CPU0 support offline, but the actual CPU going 
> > offline/online also depends on "onoff_interval").
> 
> You can use the kvm.sh --kconfig parameter to make this happen in your
> own testing.  Or you can hand-edit the TREE* files.  The kvm.sh script
> sets onoff_interval for you, so that should be OK.  If you are testing
> using modprobe, then yes, you need to set up this in your kernel build
> and using the modprobe arguments.
> 
> It looks like x86 kernels build with CONFIG_BOOTPARAM_HOTPLUG_CPU0=n,
> mostly, anyway, so most of the by-default rcutorture testing should also
> build this way.
> 
> But again, you have a couple of ways to override this in your own testing.
>
>And I cannot reproduce the CPU-hotplug online error under qemu/KVM.
>Which might be expected behavior, given that you ran your tests using
>specific qemu arguments that kvm.sh does not provide.

Hi Paul

After I enable the following options, CPU0 goes online successfully.
if the following options are disabled, CPU0 fails to go online.
(CONFIG_BOOTPARAM_HOTPLUG_CPU0 always enabled)

CONFIG_X86_X2APIC = y
CONFIG_X86_NUMACHIP = y
CONFIG_X86_UV = y

Thanks
Zqiang

>
>Nevertheless, CPU 0 really does go through the "Wake up BSP by nmi"
>portion of wakeup_cpu_via_init_nmi() at runtime, and this works fine.
>On the other hand, it also works fine if I comment out that "if (cpu)"
>check.
>
>This sounds like a question for your colleagues at Intel.  ;-)
>
>							Thanx, Paul
Paul E. McKenney Jan. 12, 2023, 5:47 p.m. UTC | #15
On Wed, Jan 11, 2023 at 05:21:35AM +0000, Zhang, Qiang1 wrote:
> 
> On Tue, Jan 10, 2023 at 06:58:15AM -0800, Paul E. McKenney wrote:
> > On Tue, Jan 10, 2023 at 08:12:49AM +0000, Zhang, Qiang1 wrote:
> > > 
> > > On Mon, Jan 09, 2023 at 06:10:12PM -0800, Paul E. McKenney wrote:
> > > > On Fri, Jan 06, 2023 at 02:48:56AM +0000, Zhang, Qiang1 wrote:
> > > > > 
> > > > > On Thu, Dec 22, 2022 at 09:35:06AM +0000, Zhang, Qiang1 wrote:
> > > > > > >On Mon, Dec 19, 2022 at 02:21:01AM +0000, Zhang, Qiang1 wrote:
> > > > > > > >Greeting,
> > > > > > > >FYI, we noticed WARNING:at_kernel/rcu/rcutorture.c:#rcu_torture_fwd_prog_cr[rcutorture] due to commit (built with gcc-11):
> > > > > > > >
> > > > > > > >commit: 572a17843591d3c03ad891492939a06833fdd17d ("[PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug")
> > > > > > > >url: https://github.com/intel-lab-lkp/linux/commits/Zqiang/rcu-tasks-Make-rude-RCU-Tasks-work-well-with-CPU-hotplug/20221201-074127
> > > > > > > >base: https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > > > > > >patch link: https://lore.kernel.org/all/20221130234533.1983769-1-qiang1.zhang@intel.com/
> > > > > > > >patch subject: [PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
> > > > > > > >
> > > > > > > >in testcase: rcutorture
> > > > > > > >version: 
> > > > > > > >with following parameters:
> > > > > > > >
> > > > > > > >	runtime: 300s
> > > > > > > >	test: cpuhotplug
> > > > > > > >	torture_type: tasks-rude
> > > > > > > >
> > > > > > > >test-description: rcutorture is rcutorture kernel module load/unload test.
> > > > > > > >test-url: https://www.kernel.org/doc/Documentation/RCU/torture.txt
> > > > > > > >
> > > > > > > >on test machine: qemu-system-i386 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
> > > > > > > >
> > > > > > > >caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
> > > > > > > >
> > > > > > > >
> > > > > > > >[  106.051532][  T583] rcu_torture_fwd_prog: Starting forward-progress test 0
> > > > > > > >[  106.052085][  T583] rcu_torture_fwd_prog_cr: Starting forward-progress test 0
> > > > > > > >[  133.611262][  T583] rcu_torture_fwd_prog_cr: Waiting for CBs: rcu_barrier_tasks_rude+0x0/0x10() 0
> > > > > > > >[  146.800051][  T583] ------------[ cut here ]------------
> > > > > > > >[  146.800411][  T583] WARNING: CPU: 1 PID: 583 at kernel/rcu/rcutorture.c:2806 rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > > > > >[  146.801075][  T583] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> > > > > > > >[  146.801894][  T583] CPU: 1 PID: 583 Comm: rcu_torture_fwd Not tainted 6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> > > > > > > >[  146.802916][  T583] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> > > > > > > >[  146.803693][  T583] EIP: rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > > > > >[  146.804177][  T583] Code: 89 d8 e8 fc c5 ff ff e8 67 49 03 00 83 c4 10 84 c0 75 79 a0 96 c6 10 ef 84 c0 75 70 e8 c8 ee ff ff 84 c0 75 67 83 fe 63 7f 02 <0f> 0b 8b 45 f0 8b 15 40 25 8a c2 ff 75 e8 ff 75 e0 01 f8 2b 45 dc
> > > > > > > >[  146.805599][  T583] EAX: 00000000 EBX: ecee3800 ECX: 00000000 EDX: 00000000
> > > > > > > >[  146.805992][  T583] ESI: 00000000 EDI: 0000c350 EBP: ed9d5f64 ESP: ed9d5f40
> > > > > > > >[  146.806491][  T583] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010293
> > > > > > > >[  146.807010][  T583] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> > > > > > > >[  146.807484][  T583] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> > > > > > > >[  146.808031][  T583] DR6: fffe0ff0 DR7: 00000400
> > > > > > > >[  146.808384][  T583] Call Trace:
> > > > > > > >[  146.808634][  T583]  rcu_torture_fwd_prog.cold+0x3b/0xee [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > > > > >[  146.809348][  T583]  kthread+0xc8/0xf0
> > > > > > > >[  146.809635][  T583]  ? rcu_torture_fwd_prog_cbfree+0x80/0x80 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > > > > >[  146.810347][  T583]  ? kthread_complete_and_exit+0x20/0x20
> > > > > > > >[  146.810734][  T583]  ret_from_fork+0x1c/0x28
> > > > > > > >[  146.811075][  T583] irq event stamp: 205883
> > > > > > > >[  146.811400][  T583] hardirqs last  enabled at (205891): [<c114bb06>] __up_console_sem+0x66/0x80
> > > > > > > >[  146.811960][  T583] hardirqs last disabled at (205898): [<c114baed>] __up_console_sem+0x4d/0x80
> > > > > > > >[  146.812583][  T583] softirqs last  enabled at (205880): [<c1ecb40b>] __do_softirq+0x2bb/0x440
> > > > > > > >[  146.813079][  T583] softirqs last disabled at (205871): [<c10845f0>] call_on_stack+0x40/0x50
> > > > > > > >[  146.813567][  T583] ---[ end trace 0000000000000000 ]---
> > > > > > > >[  146.813926][  T583] rcu_torture_fwd_prog_cr Duration 2411 barrier: 3960 pending 50000 n_launders: 0 n_launders_sa: 0 n_max_gps: 0 n_max_cbs: 50000 cver 1 gps 0
> > > > > > > >[  147.914266][  T583] rcu_torture_fwd_cb_hist: Callback-invocation histogram 0 (duration 6702 jiffies): 1s/10: 0:0 2s/10: 
> > > > > > > >[  149.453780][  T557] ------------[ cut here ]------------
> > > > > > > >[  149.454322][  T557] rcu_torture_writer: rtort_pipe_count: 4
> > > > > > > >[  149.454817][  T557] WARNING: CPU: 1 PID: 557 at kernel/rcu/rcutorture.c:1583 rcu_torture_writer+0x71d/0xc80 [rcutorture]
> > > > > > > 
> > > > > > > 
> > > > > > > This is not a bug.  this is caused by grace period taking too long time, the previous callback
> > > > > > > has not been completed.  from the dmesg, can be found that the cpuhotplug test is being
> > > > > > > performed periodically, this may cause the rude RCU-Tasks  grace period to take more time,
> > > > > > > due to we need to acquire the cpus_read_lock, and the CPU0 always bootup failed, that is to
> > > > > > > say, only one CPU of your system is online at this time.
> > > > > > >
> > > > > > >Onlining of a CPU failing with EIO is a new one on me.  Especially
> > > > > > >persistent failure.
> > > > > > 
> > > > > > I use the kernel configuration file in the attachment and  base on:
> > > > > > https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > > > > 
> > > > > > use "echo 1 > /sys/devices/system/cpu/cpu0/online" can reproduce this problem,
> > > > > > the CPU0 always fails to go online.  
> > > > > > 
> > > > > > Debug found CPU0 is always not set in cpu_initialized_mask.
> > > > > > causes the do_boot_cpu() to return -1.
> > > > > > 
> > > > > > do_boot_cpu()
> > > > > >      wakeup_cpu_via_init_nmi();
> > > > > >      if (!boot_error) {
> > > > > >                 /*
> > > > > >                  * Wait 10s total for first sign of life from AP
> > > > > >                  */
> > > > > >                 boot_error = -1;
> > > > > >                 timeout = jiffies + 10*HZ;
> > > > > >                 while (time_before(jiffies, timeout)) {
> > > > > >                         if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
> > > > > >                                 /*
> > > > > >                                  * Tell AP to proceed with initialization
> > > > > >                                  */
> > > > > >                                 cpumask_set_cpu(cpu, cpu_callout_mask);
> > > > > >                                 boot_error = 0;
> > > > > >                                 break;
> > > > > >                         }
> > > > > >                         schedule();
> > > > > >                 }
> > > > > >         }
> > > > > > 
> > > > > > This looks related to this modification e1c467e69040c("x86, hotplug: 
> > > > > > Wake up CPU0 via NMI instead of INIT, SIPI, SIPI ").
> > > > > > 
> > > > > > 
> > > > > > The following modification can make CPU0 go online successfully(This
> > > > > > is just a test, not sure if there are other effects).
> > > > > >
> > > > > >
> > > > > >Thank you for tracking this down!!!
> > > > > >
> > > > > >Huh.  CPU 0 is normally the boot CPU.  Back in the day, it could not
> > > > > >be offlined.  Given that your testing indicates that CPU 0 can now be
> > > > > >taken offline, maybe this "if" statement is a holdover that someone
> > > > > >forgot to remove?
> > > > > >
> > > > > >But I must defer to those who know a lot more about this level of
> > > > > >x86 code than I do.
> > > > > 
> > > > > I found relevant modification information, maybe it will be of some help
> > > > > 
> > > > > commit e1c467e69040c3be68959332959c07fb3d818e87
> > > > > Author: Fenghua Yu <fenghua.yu@intel.com>
> > > > > Date:   Wed Nov 14 04:36:53 2012 -0800
> > > > > 
> > > > >     x86, hotplug: Wake up CPU0 via NMI instead of INIT, SIPI, SIPI
> > > > > 
> > > > >     Instead of waiting for STARTUP after INITs, BSP will execute the BIOS boot-strap
> > > > >     code which is not a desired behavior for waking up BSP. To avoid the boot-strap
> > > > >     code, wake up CPU0 by NMI instead.
> > > > > 
> > > > >     This works to wake up soft offlined CPU0 only. If CPU0 is hard offlined (i.e.
> > > > >     physically hot removed and then hot added), NMI won't wake it up. We'll change
> > > > >     this code in the future to wake up hard offlined CPU0 if real platform and
> > > > >     request are available.
> > > > > 
> > > > >     AP is still waken up as before by INIT, SIPI, SIPI sequence.
> > > > > 
> > > > >     Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>
> > > > >     Link: http://lkml.kernel.org/r/1352896613-25957-1-git-send-email-fenghua.yu@intel.com
> > > > >     Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
> > > > 
> > > > Interesting!
> > > > 
> > > > When I run rcutorture on x86 (under qemu/KVM), it refuses to attempt to
> > > > offline CPU 0.  The reason is that cpu_is_hotpluggable(0) returns false.
> > > > 
> > > > If I comment out that check, I get this:
> > > > 
> > > > 	rcu-torture:torture_onoff task: offline 0 failed: errno -1
> > > > 
> > > > A bit of digging turned up the CONFIG_BOOTPARAM_HOTPLUG_CPU0 Kconfig
> > > > option.  Setting that causes CPU 0 to be offlined.
> > > > 
> > > > I clearly need to add this to one of the scenarios.  I arbitrarily
> > > > chose TREE01, but please let me know if some other scenario or
> > > > group of scenarios would be better.
> > > >
> > > >For example, like this.
> > > 
> > > This looks good, whether all TREE* can be added ? 
> > > (after all, this just makes CPU0 support offline, but the actual CPU going 
> > > offline/online also depends on "onoff_interval").
> > 
> > You can use the kvm.sh --kconfig parameter to make this happen in your
> > own testing.  Or you can hand-edit the TREE* files.  The kvm.sh script
> > sets onoff_interval for you, so that should be OK.  If you are testing
> > using modprobe, then yes, you need to set up this in your kernel build
> > and using the modprobe arguments.
> > 
> > It looks like x86 kernels build with CONFIG_BOOTPARAM_HOTPLUG_CPU0=n,
> > mostly, anyway, so most of the by-default rcutorture testing should also
> > build this way.
> > 
> > But again, you have a couple of ways to override this in your own testing.
> >
> >And I cannot reproduce the CPU-hotplug online error under qemu/KVM.
> >Which might be expected behavior, given that you ran your tests using
> >specific qemu arguments that kvm.sh does not provide.
> 
> Hi Paul
> 
> After I enable the following options, CPU0 goes online successfully.
> if the following options are disabled, CPU0 fails to go online.
> (CONFIG_BOOTPARAM_HOTPLUG_CPU0 always enabled)
> 
> CONFIG_X86_X2APIC = y
> CONFIG_X86_NUMACHIP = y
> CONFIG_X86_UV = y

Again, I must defer to people who know more about x86 than do I,
but should the BOOTPARAM_HOTPLUG_CPU0 Kconfig option select these?
The help text of some of them gives me pause, though.

For example, on CONFIG_X86_NUMACHIP, were you running a system with more
than 168 cores?  For its part, CONFIG_X86_UV is supposed to be only for
the SGI Ultraviolet systems.  I am not sure what conclusion to draw from
the CONFIG_X86_X2APIC help text.  ;-)

Plus my runs don't have any of these three Kconfig options set.  On the
other hand, I am running TREE01 on qemu/KVM with maxcpus=8 and nr_cpus=43,
so not a big system.

							Thanx, Paul

> Thanks
> Zqiang
> 
> >
> >Nevertheless, CPU 0 really does go through the "Wake up BSP by nmi"
> >portion of wakeup_cpu_via_init_nmi() at runtime, and this works fine.
> >On the other hand, it also works fine if I comment out that "if (cpu)"
> >check.
> >
> >This sounds like a question for your colleagues at Intel.  ;-)
> >
> >							Thanx, Paul
Zqiang Jan. 13, 2023, 8:58 a.m. UTC | #16
>On Wed, Jan 11, 2023 at 05:21:35AM +0000, Zhang, Qiang1 wrote:
> 
> On Tue, Jan 10, 2023 at 06:58:15AM -0800, Paul E. McKenney wrote:
> > On Tue, Jan 10, 2023 at 08:12:49AM +0000, Zhang, Qiang1 wrote:
> > > 
> > > On Mon, Jan 09, 2023 at 06:10:12PM -0800, Paul E. McKenney wrote:
> > > > On Fri, Jan 06, 2023 at 02:48:56AM +0000, Zhang, Qiang1 wrote:
> > > > > 
> > > > > On Thu, Dec 22, 2022 at 09:35:06AM +0000, Zhang, Qiang1 wrote:
> > > > > > >On Mon, Dec 19, 2022 at 02:21:01AM +0000, Zhang, Qiang1 wrote:
> > > > > > > >Greeting,
> > > > > > > >FYI, we noticed WARNING:at_kernel/rcu/rcutorture.c:#rcu_torture_fwd_prog_cr[rcutorture] due to commit (built with gcc-11):
> > > > > > > >
> > > > > > > >commit: 572a17843591d3c03ad891492939a06833fdd17d ("[PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug")
> > > > > > > >url: https://github.com/intel-lab-lkp/linux/commits/Zqiang/rcu-tasks-Make-rude-RCU-Tasks-work-well-with-CPU-hotplug/20221201-074127
> > > > > > > >base: https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > > > > > >patch link: https://lore.kernel.org/all/20221130234533.1983769-1-qiang1.zhang@intel.com/
> > > > > > > >patch subject: [PATCH v4] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug
> > > > > > > >
> > > > > > > >in testcase: rcutorture
> > > > > > > >version: 
> > > > > > > >with following parameters:
> > > > > > > >
> > > > > > > >	runtime: 300s
> > > > > > > >	test: cpuhotplug
> > > > > > > >	torture_type: tasks-rude
> > > > > > > >
> > > > > > > >test-description: rcutorture is rcutorture kernel module load/unload test.
> > > > > > > >test-url: https://www.kernel.org/doc/Documentation/RCU/torture.txt
> > > > > > > >
> > > > > > > >on test machine: qemu-system-i386 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
> > > > > > > >
> > > > > > > >caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
> > > > > > > >
> > > > > > > >
> > > > > > > >[  106.051532][  T583] rcu_torture_fwd_prog: Starting forward-progress test 0
> > > > > > > >[  106.052085][  T583] rcu_torture_fwd_prog_cr: Starting forward-progress test 0
> > > > > > > >[  133.611262][  T583] rcu_torture_fwd_prog_cr: Waiting for CBs: rcu_barrier_tasks_rude+0x0/0x10() 0
> > > > > > > >[  146.800051][  T583] ------------[ cut here ]------------
> > > > > > > >[  146.800411][  T583] WARNING: CPU: 1 PID: 583 at kernel/rcu/rcutorture.c:2806 rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > > > > >[  146.801075][  T583] Modules linked in: rcutorture torture ipmi_msghandler crc32c_intel serio_raw processor fuse
> > > > > > > >[  146.801894][  T583] CPU: 1 PID: 583 Comm: rcu_torture_fwd Not tainted 6.1.0-rc1-00180-g572a17843591 #1 0cc09f902db70bae111a0c12c137296733dde4a9
> > > > > > > >[  146.802916][  T583] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.0-debian-1.16.0-5 04/01/2014
> > > > > > > >[  146.803693][  T583] EIP: rcu_torture_fwd_prog_cr+0x22c/0x2a7 [rcutorture]
> > > > > > > >[  146.804177][  T583] Code: 89 d8 e8 fc c5 ff ff e8 67 49 03 00 83 c4 10 84 c0 75 79 a0 96 c6 10 ef 84 c0 75 70 e8 c8 ee ff ff 84 c0 75 67 83 fe 63 7f 02 <0f> 0b 8b 45 f0 8b 15 40 25 8a c2 ff 75 e8 ff 75 e0 01 f8 2b 45 dc
> > > > > > > >[  146.805599][  T583] EAX: 00000000 EBX: ecee3800 ECX: 00000000 EDX: 00000000
> > > > > > > >[  146.805992][  T583] ESI: 00000000 EDI: 0000c350 EBP: ed9d5f64 ESP: ed9d5f40
> > > > > > > >[  146.806491][  T583] DS: 007b ES: 007b FS: 00d8 GS: 0000 SS: 0068 EFLAGS: 00010293
> > > > > > > >[  146.807010][  T583] CR0: 80050033 CR2: 08082ff0 CR3: 2daaf000 CR4: 000406d0
> > > > > > > >[  146.807484][  T583] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
> > > > > > > >[  146.808031][  T583] DR6: fffe0ff0 DR7: 00000400
> > > > > > > >[  146.808384][  T583] Call Trace:
> > > > > > > >[  146.808634][  T583]  rcu_torture_fwd_prog.cold+0x3b/0xee [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > > > > >[  146.809348][  T583]  kthread+0xc8/0xf0
> > > > > > > >[  146.809635][  T583]  ? rcu_torture_fwd_prog_cbfree+0x80/0x80 [rcutorture 6754ed9afe4685f50ef7fade6309181c73794538]
> > > > > > > >[  146.810347][  T583]  ? kthread_complete_and_exit+0x20/0x20
> > > > > > > >[  146.810734][  T583]  ret_from_fork+0x1c/0x28
> > > > > > > >[  146.811075][  T583] irq event stamp: 205883
> > > > > > > >[  146.811400][  T583] hardirqs last  enabled at (205891): [<c114bb06>] __up_console_sem+0x66/0x80
> > > > > > > >[  146.811960][  T583] hardirqs last disabled at (205898): [<c114baed>] __up_console_sem+0x4d/0x80
> > > > > > > >[  146.812583][  T583] softirqs last  enabled at (205880): [<c1ecb40b>] __do_softirq+0x2bb/0x440
> > > > > > > >[  146.813079][  T583] softirqs last disabled at (205871): [<c10845f0>] call_on_stack+0x40/0x50
> > > > > > > >[  146.813567][  T583] ---[ end trace 0000000000000000 ]---
> > > > > > > >[  146.813926][  T583] rcu_torture_fwd_prog_cr Duration 2411 barrier: 3960 pending 50000 n_launders: 0 n_launders_sa: 0 n_max_gps: 0 n_max_cbs: 50000 cver 1 gps 0
> > > > > > > >[  147.914266][  T583] rcu_torture_fwd_cb_hist: Callback-invocation histogram 0 (duration 6702 jiffies): 1s/10: 0:0 2s/10: 
> > > > > > > >[  149.453780][  T557] ------------[ cut here ]------------
> > > > > > > >[  149.454322][  T557] rcu_torture_writer: rtort_pipe_count: 4
> > > > > > > >[  149.454817][  T557] WARNING: CPU: 1 PID: 557 at kernel/rcu/rcutorture.c:1583 rcu_torture_writer+0x71d/0xc80 [rcutorture]
> > > > > > > 
> > > > > > > 
> > > > > > > This is not a bug.  this is caused by grace period taking too long time, the previous callback
> > > > > > > has not been completed.  from the dmesg, can be found that the cpuhotplug test is being
> > > > > > > performed periodically, this may cause the rude RCU-Tasks  grace period to take more time,
> > > > > > > due to we need to acquire the cpus_read_lock, and the CPU0 always bootup failed, that is to
> > > > > > > say, only one CPU of your system is online at this time.
> > > > > > >
> > > > > > >Onlining of a CPU failing with EIO is a new one on me.  Especially
> > > > > > >persistent failure.
> > > > > > 
> > > > > > I use the kernel configuration file in the attachment and  base on:
> > > > > > https://git.kernel.org/cgit/linux/kernel/git/paulmck/linux-rcu.git dev
> > > > > > 
> > > > > > use "echo 1 > /sys/devices/system/cpu/cpu0/online" can reproduce this problem,
> > > > > > the CPU0 always fails to go online.  
> > > > > > 
> > > > > > Debug found CPU0 is always not set in cpu_initialized_mask.
> > > > > > causes the do_boot_cpu() to return -1.
> > > > > > 
> > > > > > do_boot_cpu()
> > > > > >      wakeup_cpu_via_init_nmi();
> > > > > >      if (!boot_error) {
> > > > > >                 /*
> > > > > >                  * Wait 10s total for first sign of life from AP
> > > > > >                  */
> > > > > >                 boot_error = -1;
> > > > > >                 timeout = jiffies + 10*HZ;
> > > > > >                 while (time_before(jiffies, timeout)) {
> > > > > >                         if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
> > > > > >                                 /*
> > > > > >                                  * Tell AP to proceed with initialization
> > > > > >                                  */
> > > > > >                                 cpumask_set_cpu(cpu, cpu_callout_mask);
> > > > > >                                 boot_error = 0;
> > > > > >                                 break;
> > > > > >                         }
> > > > > >                         schedule();
> > > > > >                 }
> > > > > >         }
> > > > > > 
> > > > > > This looks related to this modification e1c467e69040c("x86, hotplug: 
> > > > > > Wake up CPU0 via NMI instead of INIT, SIPI, SIPI ").
> > > > > > 
> > > > > > 
> > > > > > The following modification can make CPU0 go online successfully(This
> > > > > > is just a test, not sure if there are other effects).
> > > > > >
> > > > > >
> > > > > >Thank you for tracking this down!!!
> > > > > >
> > > > > >Huh.  CPU 0 is normally the boot CPU.  Back in the day, it could not
> > > > > >be offlined.  Given that your testing indicates that CPU 0 can now be
> > > > > >taken offline, maybe this "if" statement is a holdover that someone
> > > > > >forgot to remove?
> > > > > >
> > > > > >But I must defer to those who know a lot more about this level of
> > > > > >x86 code than I do.
> > > > > 
> > > > > I found relevant modification information, maybe it will be of some help
> > > > > 
> > > > > commit e1c467e69040c3be68959332959c07fb3d818e87
> > > > > Author: Fenghua Yu <fenghua.yu@intel.com>
> > > > > Date:   Wed Nov 14 04:36:53 2012 -0800
> > > > > 
> > > > >     x86, hotplug: Wake up CPU0 via NMI instead of INIT, SIPI, SIPI
> > > > > 
> > > > >     Instead of waiting for STARTUP after INITs, BSP will execute the BIOS boot-strap
> > > > >     code which is not a desired behavior for waking up BSP. To avoid the boot-strap
> > > > >     code, wake up CPU0 by NMI instead.
> > > > > 
> > > > >     This works to wake up soft offlined CPU0 only. If CPU0 is hard offlined (i.e.
> > > > >     physically hot removed and then hot added), NMI won't wake it up. We'll change
> > > > >     this code in the future to wake up hard offlined CPU0 if real platform and
> > > > >     request are available.
> > > > > 
> > > > >     AP is still waken up as before by INIT, SIPI, SIPI sequence.
> > > > > 
> > > > >     Signed-off-by: Fenghua Yu <fenghua.yu@intel.com>
> > > > >     Link: http://lkml.kernel.org/r/1352896613-25957-1-git-send-email-fenghua.yu@intel.com
> > > > >     Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
> > > > 
> > > > Interesting!
> > > > 
> > > > When I run rcutorture on x86 (under qemu/KVM), it refuses to attempt to
> > > > offline CPU 0.  The reason is that cpu_is_hotpluggable(0) returns false.
> > > > 
> > > > If I comment out that check, I get this:
> > > > 
> > > > 	rcu-torture:torture_onoff task: offline 0 failed: errno -1
> > > > 
> > > > A bit of digging turned up the CONFIG_BOOTPARAM_HOTPLUG_CPU0 Kconfig
> > > > option.  Setting that causes CPU 0 to be offlined.
> > > > 
> > > > I clearly need to add this to one of the scenarios.  I arbitrarily
> > > > chose TREE01, but please let me know if some other scenario or
> > > > group of scenarios would be better.
> > > >
> > > >For example, like this.
> > > 
> > > This looks good, whether all TREE* can be added ? 
> > > (after all, this just makes CPU0 support offline, but the actual CPU going 
> > > offline/online also depends on "onoff_interval").
> > 
> > You can use the kvm.sh --kconfig parameter to make this happen in your
> > own testing.  Or you can hand-edit the TREE* files.  The kvm.sh script
> > sets onoff_interval for you, so that should be OK.  If you are testing
> > using modprobe, then yes, you need to set up this in your kernel build
> > and using the modprobe arguments.
> > 
> > It looks like x86 kernels build with CONFIG_BOOTPARAM_HOTPLUG_CPU0=n,
> > mostly, anyway, so most of the by-default rcutorture testing should also
> > build this way.
> > 
> > But again, you have a couple of ways to override this in your own testing.
> >
> >And I cannot reproduce the CPU-hotplug online error under qemu/KVM.
> >Which might be expected behavior, given that you ran your tests using
> >specific qemu arguments that kvm.sh does not provide.
> 
> Hi Paul
> 
> After I enable the following options, CPU0 goes online successfully.
> if the following options are disabled, CPU0 fails to go online.
> (CONFIG_BOOTPARAM_HOTPLUG_CPU0 always enabled)
> 
> CONFIG_X86_X2APIC = y
> CONFIG_X86_NUMACHIP = y
> CONFIG_X86_UV = y
>
>Again, I must defer to people who know more about x86 than do I,
>but should the BOOTPARAM_HOTPLUG_CPU0 Kconfig option select these?
>The help text of some of them gives me pause, though.


I think this option can be temporarily selected. 
I also will look for someone more familiar with X86 internally to consult 
diff mbox series

Patch

diff --git a/kernel/rcu/tasks.h b/kernel/rcu/tasks.h
index 4dda8e6e5707..9f0c439c73d2 100644
--- a/kernel/rcu/tasks.h
+++ b/kernel/rcu/tasks.h
@@ -560,8 +560,9 @@  static int __noreturn rcu_tasks_kthread(void *arg)
 static void synchronize_rcu_tasks_generic(struct rcu_tasks *rtp)
 {
 	/* Complain if the scheduler has not started.  */
-	WARN_ONCE(rcu_scheduler_active == RCU_SCHEDULER_INACTIVE,
-			 "synchronize_rcu_tasks called too soon");
+	if (WARN_ONCE(rcu_scheduler_active == RCU_SCHEDULER_INACTIVE,
+			 "%s called too soon", rtp->name))
+		return;
 
 	// If the grace-period kthread is running, use it.
 	if (READ_ONCE(rtp->kthread_ptr)) {
@@ -1064,9 +1065,6 @@  static void rcu_tasks_be_rude(struct work_struct *work)
 // Wait for one rude RCU-tasks grace period.
 static void rcu_tasks_rude_wait_gp(struct rcu_tasks *rtp)
 {
-	if (num_online_cpus() <= 1)
-		return;	// Fastpath for only one CPU.
-
 	rtp->n_ipis += cpumask_weight(cpu_online_mask);
 	schedule_on_each_cpu(rcu_tasks_be_rude);
 }