From: kernel test robot <lkp@intel.com>
To: Alex Rusuf <yorha.op@gmail.com>, damon@lists.linux.dev
Cc: oe-kbuild-all@lists.linux.dev, sj@kernel.org, linux-mm@kvack.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 2/2] mm/damon/core: implement multi-context support
Date: Sat, 1 Jun 2024 04:08:44 +0800 [thread overview]
Message-ID: <202406010349.tixi9sK3-lkp@intel.com> (raw)
In-Reply-To: <20240531122320.909060-3-yorha.op@gmail.com>
Hi Alex,
kernel test robot noticed the following build warnings:
[auto build test WARNING on v6.9]
[also build test WARNING on linus/master next-20240531]
[cannot apply to sj/damon/next akpm-mm/mm-everything v6.10-rc1]
[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/Alex-Rusuf/mm-damon-core-add-struct-kdamond-abstraction-layer/20240531-202756
base: v6.9
patch link: https://lore.kernel.org/r/20240531122320.909060-3-yorha.op%40gmail.com
patch subject: [PATCH v2 2/2] mm/damon/core: implement multi-context support
config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/20240601/202406010349.tixi9sK3-lkp@intel.com/config)
compiler: alpha-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240601/202406010349.tixi9sK3-lkp@intel.com/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@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202406010349.tixi9sK3-lkp@intel.com/
All warnings (new ones prefixed by >>):
mm/damon/core.c:513: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
* Adds newly allocated and configured @ctx to @kdamond.
mm/damon/core.c:729: warning: Function parameter or struct member 'kdamond' not described in 'damon_kdamond_running'
>> mm/damon/core.c:742: warning: Function parameter or struct member 'kdamond' not described in 'kdamond_nr_ctxs'
mm/damon/core.c:1596: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
* Returns minimum wait time for monitoring context if it hits watermarks,
vim +742 mm/damon/core.c
737
738 /**
739 * kdamond_nr_ctxs() - Return number of contexts for this kdamond.
740 */
741 static int kdamond_nr_ctxs(struct kdamond *kdamond)
> 742 {
743 struct list_head *pos;
744 int nr_ctxs = 0;
745
746 list_for_each(pos, &kdamond->contexts)
747 ++nr_ctxs;
748
749 return nr_ctxs;
750 }
751
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-05-31 20:09 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-31 12:23 [PATCH v2 0/2] DAMON multiple contexts support Alex Rusuf
2024-05-31 12:23 ` [PATCH v2 1/2] mm/damon/core: add 'struct kdamond' abstraction layer Alex Rusuf
2024-05-31 18:55 ` kernel test robot
2024-05-31 19:36 ` SeongJae Park
2024-06-02 16:15 ` Alex Rusuf
2024-06-02 16:51 ` SeongJae Park
2024-05-31 12:23 ` [PATCH v2 2/2] mm/damon/core: implement multi-context support Alex Rusuf
2024-05-31 19:26 ` kernel test robot
2024-05-31 19:38 ` SeongJae Park
2024-06-02 15:08 ` Alex Rusuf
2024-06-02 15:48 ` SeongJae Park
2024-06-02 19:48 ` Alex Rusuf
2024-06-03 18:45 ` SeongJae Park
2024-05-31 20:08 ` kernel test robot [this message]
2024-06-17 6:59 ` kernel test robot
2024-05-31 19:33 ` [PATCH v2 0/2] DAMON multiple contexts support SeongJae Park
2024-06-02 15:31 ` Alex Rusuf
2024-06-02 15:56 ` SeongJae Park
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=202406010349.tixi9sK3-lkp@intel.com \
--to=lkp@intel.com \
--cc=damon@lists.linux.dev \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=sj@kernel.org \
--cc=yorha.op@gmail.com \
/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