tree:
https://git.kernel.org/pub/scm/linux/kernel/git/rw/misc.git muse_v1
head: d1901f3da6f0b1e1448f26c782f8da52150bc187
commit: 0a26500839bb81a7adae5902b3c339ff9d6aa0ca [3/5] fuse: Make cuse_parse_one a common
helper
config: i386-allyesconfig (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce (this is a W=1 build):
#
https://git.kernel.org/pub/scm/linux/kernel/git/rw/misc.git/commit/?id=0a...
git remote add rw
https://git.kernel.org/pub/scm/linux/kernel/git/rw/misc.git
git fetch --no-tags rw muse_v1
git checkout 0a26500839bb81a7adae5902b3c339ff9d6aa0ca
# save the attached .config to linux build tree
make W=1 ARCH=i386
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
> fs/fuse/helper.c:29:5: warning: no previous prototype for
'fuse_kv_parse_one' [-Wmissing-prototypes]
29 | int
fuse_kv_parse_one(char **pp, char *end, char **keyp, char **valp)
| ^~~~~~~~~~~~~~~~~
vim +/fuse_kv_parse_one +29 fs/fuse/helper.c
12
13 /**
14 * fuse_kv_parse_one - parse one key=value pair
15 * @pp: i/o parameter for the current position
16 * @end: points to one past the end of the packed string
17 * @keyp: out parameter for key
18 * @valp: out parameter for value
19 *
20 * *@pp points to packed strings - "key0=val0\0key1=val1\0" which ends
21 * at @end - 1. This function parses one pair and set *@keyp to the
22 * start of the key and *@valp to the start of the value. Note that
23 * the original string is modified such that the key string is
24 * terminated with '\0'. *@pp is updated to point to the next string.
25 *
26 * RETURNS:
27 * 1 on successful parse, 0 on EOF, -errno on failure.
28 */
29 int fuse_kv_parse_one(char **pp, char *end, char **keyp, char
**valp)
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org