Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1287612

Re: [PATCH] net : To avoid execution of extra instructions in NET RX path when rps_map is not set but rps_needed is true.

From kbuild test robot <lkp@intel.com>
Newsgroups linux.kernel
Subject Re: [PATCH] net : To avoid execution of extra instructions in NET RX path when rps_map is not set but rps_needed is true.
Date 2015-12-09 17:10 +0100
Message-ID <qDPtw-2aV-29@gated-at.bofh.it> (permalink)
References <qDKka-7aE-27@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


[Multipart message — attachments visible in raw view] - view raw

Hi Ashutosh,

[auto build test ERROR on net-next/master]
[also build test ERROR on v4.4-rc4 next-20151209]

url:    https://github.com/0day-ci/linux/commits/Rahul-Jain/net-To-avoid-execution-of-extra-instructions-in-NET-RX-path-when-rps_map-is-not-set-but-rps_needed-is-true/20151209-183932
config: m68k-m5208evb_defconfig (attached as .config)
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=m68k 

All errors (new ones prefixed by >>):

   net/core/dev.c: In function 'netif_rx_internal':
>> net/core/dev.c:3535:48: error: 'struct net_device' has no member named '_rx'
     struct netdev_rx_queue *dev_rxqueue = skb->dev->_rx;
                                                   ^
   net/core/dev.c:3535:26: warning: unused variable 'dev_rxqueue' [-Wunused-variable]
     struct netdev_rx_queue *dev_rxqueue = skb->dev->_rx;
                             ^
   net/core/dev.c: In function 'netif_receive_skb_internal':
   net/core/dev.c:3992:48: error: 'struct net_device' has no member named '_rx'
     struct netdev_rx_queue *dev_rxqueue = skb->dev->_rx;
                                                   ^
   net/core/dev.c:3992:26: warning: unused variable 'dev_rxqueue' [-Wunused-variable]
     struct netdev_rx_queue *dev_rxqueue = skb->dev->_rx;
                             ^

vim +3535 net/core/dev.c

  3529		return NET_RX_DROP;
  3530	}
  3531	
  3532	static int netif_rx_internal(struct sk_buff *skb)
  3533	{
  3534		int ret;
> 3535		struct netdev_rx_queue *dev_rxqueue = skb->dev->_rx;
  3536	
  3537		net_timestamp_check(netdev_tstamp_prequeue, skb);
  3538	

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH] net : To avoid execution of extra instructions in NET RX path  when rps_map is not set but rps_needed is true. Rahul Jain <rahul.jain@samsung.com> - 2015-12-09 11:40 +0100
  Re: [PATCH] net : To avoid execution of extra instructions in NET RX  path when rps_map is not set but rps_needed is true. Jiri Pirko <jiri@resnulli.us> - 2015-12-09 12:00 +0100
  Re: [PATCH] net : To avoid execution of extra instructions in NET  RX path when rps_map is not set but rps_needed is true. Eric Dumazet <eric.dumazet@gmail.com> - 2015-12-09 14:20 +0100
  Re: [PATCH] net : To avoid execution of extra instructions in NET RX  path when rps_map is not set but rps_needed is true. kbuild test robot <lkp@intel.com> - 2015-12-09 17:10 +0100

csiph-web