From: kernel test robot <lkp@intel.com>
To: "Liam R. Howlett" <Liam.Howlett@oracle.com>
Cc: oe-kbuild-all@lists.linux.dev,
Andrew Morton <akpm@linux-foundation.org>,
Linux Memory Management List <linux-mm@kvack.org>
Subject: [akpm-mm:mm-unstable 73/80] lib/maple_tree.c:6251:7: warning: no previous prototype for 'mas_find_range_rev'
Date: Sat, 6 May 2023 22:47:39 +0800 [thread overview]
Message-ID: <202305062247.va92Dm6P-lkp@intel.com> (raw)
tree: https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git mm-unstable
head: f96b65aa15baec616fffdb8f1d4fa3222aa56467
commit: 93bb3be05691973459b9e23f7b9667137528df0f [73/80] maple_tree: add mas_prev_range() and mas_find_range_rev interface
config: arc-randconfig-r043-20230502 (https://download.01.org/0day-ci/archive/20230506/202305062247.va92Dm6P-lkp@intel.com/config)
compiler: arceb-elf-gcc (GCC) 12.1.0
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
# https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git/commit/?id=93bb3be05691973459b9e23f7b9667137528df0f
git remote add akpm-mm https://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm.git
git fetch --no-tags akpm-mm mm-unstable
git checkout 93bb3be05691973459b9e23f7b9667137528df0f
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arc olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arc SHELL=/bin/bash
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202305062247.va92Dm6P-lkp@intel.com/
All warnings (new ones prefixed by >>):
lib/maple_tree.c:4606:7: warning: no previous prototype for 'mas_prev_slot' [-Wmissing-prototypes]
4606 | void *mas_prev_slot(struct ma_state *mas, unsigned long min, bool empty)
| ^~~~~~~~~~~~~
lib/maple_tree.c:4758:7: warning: no previous prototype for 'mas_next_slot' [-Wmissing-prototypes]
4758 | void *mas_next_slot(struct ma_state *mas, unsigned long max, bool empty)
| ^~~~~~~~~~~~~
>> lib/maple_tree.c:6251:7: warning: no previous prototype for 'mas_find_range_rev' [-Wmissing-prototypes]
6251 | void *mas_find_range_rev(struct ma_state *mas, unsigned long min)
| ^~~~~~~~~~~~~~~~~~
vim +/mas_find_range_rev +6251 lib/maple_tree.c
6237
6238 /**
6239 * mas_find_range_rev: On the first call, find the first non-null entry at or
6240 * below mas->index down to %min. Otherwise advance to the previous slot after
6241 * mas->index down to %min.
6242 * @mas: The maple state
6243 * @min: The minimum value to check.
6244 *
6245 * Must hold rcu_read_lock or the write lock.
6246 * If an entry exists, last and index are updated accordingly.
6247 * May set @mas->node to MAS_NONE.
6248 *
6249 * Return: The entry or %NULL.
6250 */
> 6251 void *mas_find_range_rev(struct ma_state *mas, unsigned long min)
6252 {
6253 void *entry;
6254
6255 if (mas_find_rev_setup(mas, min, &entry))
6256 return entry;
6257
6258 /* Retries on dead nodes handled by mas_prev_slot */
6259 return mas_prev_slot(mas, min, true);
6260 }
6261 EXPORT_SYMBOL_GPL(mas_find_range_rev);
6262
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
reply other threads:[~2023-05-06 14:48 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=202305062247.va92Dm6P-lkp@intel.com \
--to=lkp@intel.com \
--cc=Liam.Howlett@oracle.com \
--cc=akpm@linux-foundation.org \
--cc=linux-mm@kvack.org \
--cc=oe-kbuild-all@lists.linux.dev \
/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.