Re: [PATCH] printk/nbcon: Add assert that CPU migration is disabled when calling nbcon_context_try_acquire()

From: kernel test robot
Date: Wed Sep 20 2023 - 11:58:01 EST


Hi Petr,

kernel test robot noticed the following build errors:

[auto build test ERROR on next-20230920]
[cannot apply to linus/master v6.6-rc2 v6.6-rc1 v6.5 v6.6-rc2]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]

url: https://github.com/intel-lab-lkp/linux/commits/Petr-Mladek/printk-nbcon-Add-assert-that-CPU-migration-is-disabled-when-calling-nbcon_context_try_acquire/20230920-205406
base: next-20230920
patch link: https://lore.kernel.org/r/20230920125136.15504-1-pmladek%40suse.com
patch subject: [PATCH] printk/nbcon: Add assert that CPU migration is disabled when calling nbcon_context_try_acquire()
config: powerpc-allnoconfig (https://download.01.org/0day-ci/archive/20230920/202309202313.vdq31WtT-lkp@xxxxxxxxx/config)
compiler: powerpc-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20230920/202309202313.vdq31WtT-lkp@xxxxxxxxx/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@xxxxxxxxx>
| Closes: https://lore.kernel.org/oe-kbuild-all/202309202313.vdq31WtT-lkp@xxxxxxxxx/

All errors (new ones prefixed by >>):

kernel/printk/nbcon.c: In function 'nbcon_context_try_acquire':
>> kernel/printk/nbcon.c:595:9: error: implicit declaration of function 'nbcon_assert_cpu_migration_disabled'; did you mean 'nbcon_assert_cpu_migration'? [-Werror=implicit-function-declaration]
595 | nbcon_assert_cpu_migration_disabled();
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| nbcon_assert_cpu_migration
cc1: some warnings being treated as errors


vim +595 kernel/printk/nbcon.c

575
576 /**
577 * nbcon_context_try_acquire - Try to acquire nbcon console
578 * @ctxt: The context of the caller
579 *
580 * Return: True if the console was acquired. False otherwise.
581 *
582 * If the caller allowed an unsafe hostile takeover, on success the
583 * caller should check the current console state to see if it is
584 * in an unsafe state. Otherwise, on success the caller may assume
585 * the console is not in an unsafe state.
586 */
587 __maybe_unused
588 static bool nbcon_context_try_acquire(struct nbcon_context *ctxt)
589 {
590 unsigned int cpu = smp_processor_id();
591 struct console *con = ctxt->console;
592 struct nbcon_state cur;
593 int err;
594
> 595 nbcon_assert_cpu_migration_disabled();
596
597 nbcon_state_read(con, &cur);
598 try_again:
599 err = nbcon_context_try_acquire_direct(ctxt, &cur);
600 if (err != -EBUSY)
601 goto out;
602
603 err = nbcon_context_try_acquire_handover(ctxt, &cur);
604 if (err == -EAGAIN)
605 goto try_again;
606 if (err != -EBUSY)
607 goto out;
608
609 err = nbcon_context_try_acquire_hostile(ctxt, &cur);
610 out:
611 if (err)
612 return false;
613
614 /* Acquire succeeded. */
615
616 /* Assign the appropriate buffer for this context. */
617 if (atomic_read(&panic_cpu) == cpu)
618 ctxt->pbufs = &panic_nbcon_pbufs;
619 else
620 ctxt->pbufs = con->pbufs;
621
622 /* Set the record sequence for this context to print. */
623 ctxt->seq = nbcon_seq_read(ctxt->console);
624
625 return true;
626 }
627

--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki