linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: "Gustavo A. R. Silva" <gustavoars@kernel.org>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
	Linux Memory Management List <linux-mm@kvack.org>,
	Nathan Chancellor <nathan@kernel.org>,
	Kees Cook <keescook@chromium.org>
Subject: [linux-next:master 8078/10638] arch/mips/kernel/uprobes.c:176:2: warning: unannotated fall-through between switch labels
Date: Fri, 27 Aug 2021 16:41:27 +0800	[thread overview]
Message-ID: <202108271617.MHxFd8aX-lkp@intel.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 4080 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   88fac11862d38306dd0d2398015744877140390d
commit: 7bc04ce6b914a06d5823509d1de237787c58e649 [8078/10638] Makefile: Enable -Wimplicit-fallthrough for Clang
config: mips-randconfig-c004-20210827 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 1076082a0d97bd5c16a25ee7cf3dbb6ee4b5a9fe)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # install mips cross compiling tool for clang build
        # apt-get install binutils-mips-linux-gnu
        # https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=7bc04ce6b914a06d5823509d1de237787c58e649
        git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
        git fetch --no-tags linux-next master
        git checkout 7bc04ce6b914a06d5823509d1de237787c58e649
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=mips 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

>> arch/mips/kernel/uprobes.c:176:2: warning: unannotated fall-through between switch labels [-Wimplicit-fallthrough]
           default:
           ^
   arch/mips/kernel/uprobes.c:176:2: note: insert 'break;' to avoid fall-through
           default:
           ^
           break; 
   1 warning generated.


vim +176 arch/mips/kernel/uprobes.c

40e084a506eba7 Ralf Baechle      2015-07-29  153  
40e084a506eba7 Ralf Baechle      2015-07-29  154  int arch_uprobe_exception_notify(struct notifier_block *self,
40e084a506eba7 Ralf Baechle      2015-07-29  155  	unsigned long val, void *data)
40e084a506eba7 Ralf Baechle      2015-07-29  156  {
40e084a506eba7 Ralf Baechle      2015-07-29  157  	struct die_args *args = data;
40e084a506eba7 Ralf Baechle      2015-07-29  158  	struct pt_regs *regs = args->regs;
40e084a506eba7 Ralf Baechle      2015-07-29  159  
40e084a506eba7 Ralf Baechle      2015-07-29  160  	/* regs == NULL is a kernel bug */
40e084a506eba7 Ralf Baechle      2015-07-29  161  	if (WARN_ON(!regs))
40e084a506eba7 Ralf Baechle      2015-07-29  162  		return NOTIFY_DONE;
40e084a506eba7 Ralf Baechle      2015-07-29  163  
40e084a506eba7 Ralf Baechle      2015-07-29  164  	/* We are only interested in userspace traps */
40e084a506eba7 Ralf Baechle      2015-07-29  165  	if (!user_mode(regs))
40e084a506eba7 Ralf Baechle      2015-07-29  166  		return NOTIFY_DONE;
40e084a506eba7 Ralf Baechle      2015-07-29  167  
40e084a506eba7 Ralf Baechle      2015-07-29  168  	switch (val) {
2809328f6ef213 Marcin Nowakowski 2016-08-11  169  	case DIE_UPROBE:
40e084a506eba7 Ralf Baechle      2015-07-29  170  		if (uprobe_pre_sstep_notifier(regs))
40e084a506eba7 Ralf Baechle      2015-07-29  171  			return NOTIFY_STOP;
40e084a506eba7 Ralf Baechle      2015-07-29  172  		break;
40e084a506eba7 Ralf Baechle      2015-07-29  173  	case DIE_UPROBE_XOL:
40e084a506eba7 Ralf Baechle      2015-07-29  174  		if (uprobe_post_sstep_notifier(regs))
40e084a506eba7 Ralf Baechle      2015-07-29  175  			return NOTIFY_STOP;
40e084a506eba7 Ralf Baechle      2015-07-29 @176  	default:
40e084a506eba7 Ralf Baechle      2015-07-29  177  		break;
40e084a506eba7 Ralf Baechle      2015-07-29  178  	}
40e084a506eba7 Ralf Baechle      2015-07-29  179  
40e084a506eba7 Ralf Baechle      2015-07-29  180  	return 0;
40e084a506eba7 Ralf Baechle      2015-07-29  181  }
40e084a506eba7 Ralf Baechle      2015-07-29  182  

:::::: The code at line 176 was first introduced by commit
:::::: 40e084a506eba78310cd5e8ab700fd1226c6130a MIPS: Add uprobes support.

:::::: TO: Ralf Baechle <ralf@linux-mips.org>
:::::: CC: Ralf Baechle <ralf@linux-mips.org>

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 39567 bytes --]

                 reply	other threads:[~2021-08-27  8:41 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202108271617.MHxFd8aX-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=gustavoars@kernel.org \
    --cc=kbuild-all@lists.01.org \
    --cc=keescook@chromium.org \
    --cc=linux-mm@kvack.org \
    --cc=llvm@lists.linux.dev \
    --cc=nathan@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox