From: Miquel Raynal <miquel.raynal@bootlin.com>
To: kernel test robot <lkp@intel.com>
Cc: Alexander Aring <alex.aring@gmail.com>,
Stefan Schmidt <stefan@datenfreihafen.org>,
linux-wpan@vger.kernel.org,
"David S. Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>,
llvm@lists.linux.dev, kbuild-all@lists.01.org,
netdev@vger.kernel.org,
Michael Hennerich <michael.hennerich@analog.com>,
Harry Morris <h.morris@cascoda.com>,
Varka Bhadram <varkabhadram@gmail.com>,
Xue Liu <liuxuenetmail@gmail.com>
Subject: Re: [wpan-next v2 19/27] net: ieee802154: Full PAN management
Date: Thu, 13 Jan 2022 15:51:54 +0100 [thread overview]
Message-ID: <20220113155154.243c36ad@xps13> (raw)
In-Reply-To: <202201130436.44AM2OXA-lkp@intel.com>
lkp@intel.com wrote on Thu, 13 Jan 2022 04:46:11 +0800:
> Hi Miquel,
>
> I love your patch! Yet something to improve:
>
> [auto build test ERROR on linus/master]
> [also build test ERROR on v5.16 next-20220112]
> [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]
>
> url: https://github.com/0day-ci/linux/commits/Miquel-Raynal/IEEE-802-15-4-scan-support/20220113-013731
> base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git daadb3bd0e8d3e317e36bc2c1542e86c528665e5
> config: riscv-randconfig-r042-20220112 (https://download.01.org/0day-ci/archive/20220113/202201130436.44AM2OXA-lkp@intel.com/config)
> compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project 244dd2913a43a200f5a6544d424cdc37b771028b)
> 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 riscv cross compiling tool for clang build
> # apt-get install binutils-riscv64-linux-gnu
> # https://github.com/0day-ci/linux/commit/9c8fbd918a704432bbf6cdce1d111e9002c756b4
> git remote add linux-review https://github.com/0day-ci/linux
> git fetch --no-tags linux-review Miquel-Raynal/IEEE-802-15-4-scan-support/20220113-013731
> git checkout 9c8fbd918a704432bbf6cdce1d111e9002c756b4
> # save the config file to linux build tree
> mkdir build_dir
> COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=riscv SHELL=/bin/bash net/ieee802154/
>
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kernel test robot <lkp@intel.com>
>
> All errors (new ones prefixed by >>):
>
> >> net/ieee802154/nl802154.c:1613:8: error: implicit declaration of function 'nl802154_prepare_wpan_dev_dump' [-Werror,-Wimplicit-function-declaration]
> err = nl802154_prepare_wpan_dev_dump(skb, cb, &rdev, &wpan_dev);
> ^
> >> net/ieee802154/nl802154.c:1637:2: error: implicit declaration of function 'nl802154_finish_wpan_dev_dump' [-Werror,-Wimplicit-function-declaration]
> nl802154_finish_wpan_dev_dump(rdev);
These two helpers were defined within the experimental section. I will
move them out of this section now that they have other users than
experimental code.
> ^
> net/ieee802154/nl802154.c:1637:2: note: did you mean 'nl802154_prepare_wpan_dev_dump'?
> net/ieee802154/nl802154.c:1613:8: note: 'nl802154_prepare_wpan_dev_dump' declared here
> err = nl802154_prepare_wpan_dev_dump(skb, cb, &rdev, &wpan_dev);
> ^
> 2 errors generated.
>
>
> vim +/nl802154_prepare_wpan_dev_dump +1613 net/ieee802154/nl802154.c
>
> 1605
> 1606 static int nl802154_dump_pans(struct sk_buff *skb, struct netlink_callback *cb)
> 1607 {
> 1608 struct cfg802154_registered_device *rdev;
> 1609 struct cfg802154_internal_pan *pan;
> 1610 struct wpan_dev *wpan_dev;
> 1611 int err;
> 1612
> > 1613 err = nl802154_prepare_wpan_dev_dump(skb, cb, &rdev, &wpan_dev);
> 1614 if (err)
> 1615 return err;
> 1616
> 1617 spin_lock_bh(&rdev->pan_lock);
> 1618
> 1619 if (cb->args[2])
> 1620 goto out;
> 1621
> 1622 cb->seq = rdev->pan_generation;
> 1623
> 1624 ieee802154_for_each_pan(pan, rdev) {
> 1625 err = nl802154_send_pan_info(skb, cb, cb->nlh->nlmsg_seq,
> 1626 NLM_F_MULTI, rdev, wpan_dev, pan);
> 1627 if (err < 0)
> 1628 goto out_err;
> 1629 }
> 1630
> 1631 cb->args[2] = 1;
> 1632 out:
> 1633 err = skb->len;
> 1634 out_err:
> 1635 spin_unlock_bh(&rdev->pan_lock);
> 1636
> > 1637 nl802154_finish_wpan_dev_dump(rdev);
> 1638
> 1639 return err;
> 1640 }
> 1641
>
> ---
> 0-DAY CI Kernel Test Service, Intel Corporation
> https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
Thanks,
Miquèl
prev parent reply other threads:[~2022-01-13 14:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20220112173312.764660-20-miquel.raynal@bootlin.com>
2022-01-12 20:46 ` [wpan-next v2 19/27] net: ieee802154: Full PAN management kernel test robot
2022-01-13 14:51 ` Miquel Raynal [this message]
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=20220113155154.243c36ad@xps13 \
--to=miquel.raynal@bootlin.com \
--cc=alex.aring@gmail.com \
--cc=davem@davemloft.net \
--cc=h.morris@cascoda.com \
--cc=kbuild-all@lists.01.org \
--cc=kuba@kernel.org \
--cc=linux-wpan@vger.kernel.org \
--cc=liuxuenetmail@gmail.com \
--cc=lkp@intel.com \
--cc=llvm@lists.linux.dev \
--cc=michael.hennerich@analog.com \
--cc=netdev@vger.kernel.org \
--cc=stefan@datenfreihafen.org \
--cc=varkabhadram@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;
as well as URLs for NNTP newsgroup(s).