From: Masami Hiramatsu (Google) <mhiramat@kernel.org>
To: kernel test robot <lkp@intel.com>
Cc: linux-trace-kernel@vger.kernel.org, linux-kernel@vger.kernel.org,
oe-kbuild-all@lists.linux.dev, JP Kobryn <inwardvessel@gmail.com>,
bpf@vger.kernel.org, kernel-team@meta.com, rostedt@goodmis.org,
peterz@infradead.org
Subject: Re: [PATCH] rethook: Use __rcu pointer for rethook::handler
Date: Tue, 28 Nov 2023 08:02:23 +0900 [thread overview]
Message-ID: <20231128080223.2c0bfdbe0738983b38250333@kernel.org> (raw)
In-Reply-To: <202311241808.rv9ceuAh-lkp@intel.com>
On Fri, 24 Nov 2023 23:40:57 +0800
kernel test robot <lkp@intel.com> wrote:
> Hi Masami,
>
> kernel test robot noticed the following build warnings:
>
> [auto build test WARNING on linus/master]
> [also build test WARNING on v6.7-rc2 next-20231124]
> [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/Masami-Hiramatsu-Google/rethook-Use-__rcu-pointer-for-rethook-handler/20231124-090634
> base: linus/master
> patch link: https://lore.kernel.org/r/170078778632.209874.7893551840863388753.stgit%40devnote2
> patch subject: [PATCH] rethook: Use __rcu pointer for rethook::handler
> config: x86_64-randconfig-r113-20231124 (https://download.01.org/0day-ci/archive/20231124/202311241808.rv9ceuAh-lkp@intel.com/config)
> compiler: clang version 16.0.4 (https://github.com/llvm/llvm-project.git ae42196bc493ffe877a7e3dff8be32035dea4d07)
> reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231124/202311241808.rv9ceuAh-lkp@intel.com/reproduce)
Let me fix this issue. It seems that sparse with function pointer
needs a special care.
Thank you,
>
> 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@intel.com>
> | Closes: https://lore.kernel.org/oe-kbuild-all/202311241808.rv9ceuAh-lkp@intel.com/
>
> sparse warnings: (new ones prefixed by >>)
> >> kernel/trace/rethook.c:51:9: sparse: sparse: incompatible types in comparison expression (different address spaces):
> >> kernel/trace/rethook.c:51:9: sparse: void ( [noderef] __rcu * )( ... )
> >> kernel/trace/rethook.c:51:9: sparse: void ( * )( ... )
> kernel/trace/rethook.c:66:9: sparse: sparse: incompatible types in comparison expression (different address spaces):
> kernel/trace/rethook.c:66:9: sparse: void ( [noderef] __rcu * )( ... )
> kernel/trace/rethook.c:66:9: sparse: void ( * )( ... )
> kernel/trace/rethook.c:110:9: sparse: sparse: incompatible types in comparison expression (different address spaces):
> kernel/trace/rethook.c:110:9: sparse: void ( [noderef] __rcu * )( ... )
> kernel/trace/rethook.c:110:9: sparse: void ( * )( ... )
> kernel/trace/rethook.c:140:19: sparse: sparse: incompatible types in comparison expression (different address spaces):
> kernel/trace/rethook.c:140:19: sparse: void ( [noderef] __rcu * )( ... )
> kernel/trace/rethook.c:140:19: sparse: void ( * )( ... )
> kernel/trace/rethook.c:161:19: sparse: sparse: incompatible types in comparison expression (different address spaces):
> kernel/trace/rethook.c:161:19: sparse: void ( [noderef] __rcu * )( ... )
> kernel/trace/rethook.c:161:19: sparse: void ( * )( ... )
> kernel/trace/rethook.c:305:27: sparse: sparse: incompatible types in comparison expression (different address spaces):
> kernel/trace/rethook.c:305:27: sparse: void ( [noderef] __rcu * )( ... )
> kernel/trace/rethook.c:305:27: sparse: void ( * )( ... )
>
> vim +51 kernel/trace/rethook.c
>
> 40
> 41 /**
> 42 * rethook_stop() - Stop using a rethook.
> 43 * @rh: the struct rethook to stop.
> 44 *
> 45 * Stop using a rethook to prepare for freeing it. If you want to wait for
> 46 * all running rethook handler before calling rethook_free(), you need to
> 47 * call this first and wait RCU, and call rethook_free().
> 48 */
> 49 void rethook_stop(struct rethook *rh)
> 50 {
> > 51 rcu_assign_pointer(rh->handler, NULL);
> 52 }
> 53
>
> --
> 0-DAY CI Kernel Test Service
> https://github.com/intel/lkp-tests/wiki
--
Masami Hiramatsu (Google) <mhiramat@kernel.org>
next prev parent reply other threads:[~2023-11-27 23:02 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-24 1:03 [PATCH] rethook: Use __rcu pointer for rethook::handler Masami Hiramatsu (Google)
2023-11-24 15:40 ` kernel test robot
2023-11-27 23:02 ` Masami Hiramatsu [this message]
2023-11-28 12:29 ` Masami Hiramatsu
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=20231128080223.2c0bfdbe0738983b38250333@kernel.org \
--to=mhiramat@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=inwardvessel@gmail.com \
--cc=kernel-team@meta.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-trace-kernel@vger.kernel.org \
--cc=lkp@intel.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.