From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH net-next v2] drivers: net: virtio_net: Implement a dev_watchdog handler
Date: Mon, 25 Nov 2019 16:20:43 +0800 [thread overview]
Message-ID: <201911251641.lFDcTjOR%lkp@intel.com> (raw)
In-Reply-To: <20191124182426-mutt-send-email-mst@kernel.org>
[-- Attachment #1: Type: text/plain, Size: 3922 bytes --]
Hi "Michael,
I love your patch! Yet something to improve:
[auto build test ERROR on net/master]
[cannot apply to net-next/master v5.4 next-20191122]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
url: https://github.com/0day-ci/linux/commits/Michael-S-Tsirkin/Re-PATCH-net-next-v2-drivers-net-virtio_net-Implement-a-dev_watchdog-handler/20191125-073557
base: https://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git 312434617cb16be5166316cf9d08ba760b1042a1
config: nds32-allyesconfig (attached as .config)
compiler: nds32le-linux-gcc (GCC) 8.1.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
GCC_VERSION=8.1.0 make.cross ARCH=nds32
If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
>> drivers/net/ethernet/8390/ax88796.c:641:21: error: initialization of 'void (*)(struct net_device *, unsigned int)' from incompatible pointer type 'void (*)(struct net_device *)' [-Werror=incompatible-pointer-types]
.ndo_tx_timeout = ax_ei_tx_timeout,
^~~~~~~~~~~~~~~~
drivers/net/ethernet/8390/ax88796.c:641:21: note: (near initialization for 'ax_netdev_ops.ndo_tx_timeout')
cc1: some warnings being treated as errors
vim +641 drivers/net/ethernet/8390/ax88796.c
89e536a190f90d drivers/net/ax88796.c Magnus Damm 2007-09-28 634
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 635 static const struct net_device_ops ax_netdev_ops = {
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 636 .ndo_open = ax_open,
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 637 .ndo_stop = ax_close,
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 638 .ndo_do_ioctl = ax_ioctl,
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 639
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 640 .ndo_start_xmit = ax_ei_start_xmit,
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 @641 .ndo_tx_timeout = ax_ei_tx_timeout,
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 642 .ndo_get_stats = ax_ei_get_stats,
afc4b13df14312 drivers/net/ethernet/8390/ax88796.c Jiri Pirko 2011-08-16 643 .ndo_set_rx_mode = ax_ei_set_multicast_list,
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 644 .ndo_validate_addr = eth_validate_addr,
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 645 .ndo_set_mac_address = eth_mac_addr,
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 646 #ifdef CONFIG_NET_POLL_CONTROLLER
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 647 .ndo_poll_controller = ax_ei_poll,
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 648 #endif
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 649 };
d57bc36e7aba9e drivers/net/ax88796.c Magnus Damm 2009-01-14 650
:::::: The code at line 641 was first introduced by commit
:::::: d57bc36e7aba9e3a00d154f5eff80ff596146fc4 ax88796: start_xmit fix using net_device_ops
:::::: TO: Magnus Damm <damm@igel.co.jp>
:::::: CC: David S. Miller <davem@davemloft.net>
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org Intel Corporation
[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 53259 bytes --]
next prev parent reply other threads:[~2019-11-25 8:20 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-22 1:36 [PATCH net-next v2] drivers: net: virtio_net: Implement a dev_watchdog handler Julio Faracco
2019-11-22 10:31 ` Michael S. Tsirkin
2019-11-22 10:31 ` Michael S. Tsirkin
2019-11-22 12:59 ` Julio Faracco
2019-11-22 12:59 ` Julio Faracco
2019-11-22 13:53 ` Michael S. Tsirkin
2019-11-22 13:53 ` Michael S. Tsirkin
2019-11-23 22:33 ` Julio Faracco
2019-11-23 22:33 ` Julio Faracco
2019-11-24 10:52 ` Michael S. Tsirkin
2019-11-24 10:52 ` Michael S. Tsirkin
2019-11-24 14:49 ` kbuild test robot
2019-11-24 15:05 ` Michael S. Tsirkin
2019-11-24 15:05 ` Michael S. Tsirkin
2019-11-24 21:48 ` Michael S. Tsirkin
2019-11-24 21:48 ` Michael S. Tsirkin
2019-11-24 23:03 ` Jakub Kicinski
2019-11-24 23:18 ` Michael S. Tsirkin
2019-11-24 23:18 ` Michael S. Tsirkin
2019-11-24 23:29 ` Michael S. Tsirkin
2019-11-24 23:29 ` Michael S. Tsirkin
2019-11-24 23:37 ` Jakub Kicinski
2019-11-24 23:37 ` Jakub Kicinski
2019-11-25 8:42 ` Michael S. Tsirkin
2019-11-28 19:26 ` kbuild test robot
2019-11-25 8:42 ` Michael S. Tsirkin
2019-11-25 8:20 ` kbuild test robot [this message]
2019-11-24 23:03 ` Jakub Kicinski
2019-11-24 15:05 ` Michael S. Tsirkin
-- strict thread matches above, loose matches on Subject: below --
2019-11-22 1:36 Julio Faracco
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=201911251641.lFDcTjOR%lkp@intel.com \
--to=lkp@intel.com \
--cc=kbuild-all@lists.01.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.