All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [RFC PATCH v2 net-next 16/16] net: bridge: switchdev: let drivers inform which bridge ports are offloaded
Date: Fri, 19 Mar 2021 10:46:52 +0800	[thread overview]
Message-ID: <202103191037.Vy4KHYd1-lkp@intel.com> (raw)
In-Reply-To: <20210318231829.3892920-17-olteanv@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 5323 bytes --]

Hi Vladimir,

[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on net-next/master]

url:    https://github.com/0day-ci/linux/commits/Vladimir-Oltean/Better-support-for-sandwiched-LAGs-with-bridge-and-DSA/20210319-072218
base:   https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git 31222162557ca85808b9985de7e519041561f455
config: arm-randconfig-r025-20210318 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project fcc1ce00931751ac02498986feb37744e9ace8de)
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 arm cross compiling tool for clang build
        # apt-get install binutils-arm-linux-gnueabi
        # https://github.com/0day-ci/linux/commit/a25b1e23ecf26f2dc45247ebcf4ff5bde213ac42
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Vladimir-Oltean/Better-support-for-sandwiched-LAGs-with-bridge-and-DSA/20210319-072218
        git checkout a25b1e23ecf26f2dc45247ebcf4ff5bde213ac42
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=arm 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All error/warnings (new ones prefixed by >>):

   In file included from net/bridge/br_device.c:19:
   In file included from net/bridge/br_private.h:13:
>> include/linux/if_bridge.h:204:5: warning: no previous prototype for function 'switchdev_bridge_port_offload' [-Wmissing-prototypes]
   int switchdev_bridge_port_offload(struct net_device *dev,
       ^
   include/linux/if_bridge.h:204:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   int switchdev_bridge_port_offload(struct net_device *dev,
   ^
   static 
>> include/linux/if_bridge.h:210:5: warning: no previous prototype for function 'switchdev_bridge_port_unoffload' [-Wmissing-prototypes]
   int switchdev_bridge_port_unoffload(struct net_device *dev)
       ^
   include/linux/if_bridge.h:210:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   int switchdev_bridge_port_unoffload(struct net_device *dev)
   ^
   static 
>> include/linux/if_bridge.h:212:1: error: non-void function does not return a value [-Werror,-Wreturn-type]
   }
   ^
   2 warnings and 1 error generated.
--
   In file included from net/bridge/br_netlink_tunnel.c:18:
   In file included from net/bridge/br_private.h:13:
>> include/linux/if_bridge.h:204:5: warning: no previous prototype for function 'switchdev_bridge_port_offload' [-Wmissing-prototypes]
   int switchdev_bridge_port_offload(struct net_device *dev,
       ^
   include/linux/if_bridge.h:204:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   int switchdev_bridge_port_offload(struct net_device *dev,
   ^
   static 
>> include/linux/if_bridge.h:210:5: warning: no previous prototype for function 'switchdev_bridge_port_unoffload' [-Wmissing-prototypes]
   int switchdev_bridge_port_unoffload(struct net_device *dev)
       ^
   include/linux/if_bridge.h:210:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   int switchdev_bridge_port_unoffload(struct net_device *dev)
   ^
   static 
>> include/linux/if_bridge.h:212:1: error: non-void function does not return a value [-Werror,-Wreturn-type]
   }
   ^
   net/bridge/br_netlink_tunnel.c:29:6: warning: no previous prototype for function 'vlan_tunid_inrange' [-Wmissing-prototypes]
   bool vlan_tunid_inrange(const struct net_bridge_vlan *v_curr,
        ^
   net/bridge/br_netlink_tunnel.c:29:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   bool vlan_tunid_inrange(const struct net_bridge_vlan *v_curr,
   ^
   static 
   net/bridge/br_netlink_tunnel.c:196:5: warning: no previous prototype for function 'br_vlan_tunnel_info' [-Wmissing-prototypes]
   int br_vlan_tunnel_info(const struct net_bridge_port *p, int cmd,
       ^
   net/bridge/br_netlink_tunnel.c:196:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
   int br_vlan_tunnel_info(const struct net_bridge_port *p, int cmd,
   ^
   static 
   4 warnings and 1 error generated.


vim +212 include/linux/if_bridge.h

   198	
   199	#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_NET_SWITCHDEV)
   200	int switchdev_bridge_port_offload(struct net_device *dev,
   201					  struct netlink_ext_ack *extack);
   202	int switchdev_bridge_port_unoffload(struct net_device *dev);
   203	#else
 > 204	int switchdev_bridge_port_offload(struct net_device *dev,
   205					  struct netlink_ext_ack *extack)
   206	{
   207		return 0;
   208	}
   209	
 > 210	int switchdev_bridge_port_unoffload(struct net_device *dev)
   211	{
 > 212	}
   213	#endif
   214	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 31152 bytes --]

  parent reply	other threads:[~2021-03-19  2:46 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-18 23:18 [RFC PATCH v2 net-next 00/16] Better support for sandwiched LAGs with bridge and DSA Vladimir Oltean
2021-03-18 23:18 ` [RFC PATCH v2 net-next 01/16] net: dsa: call dsa_port_bridge_join when joining a LAG that is already in a bridge Vladimir Oltean
2021-03-19 22:04   ` Florian Fainelli
2021-03-22 10:24   ` Tobias Waldekranz
2021-03-18 23:18 ` [RFC PATCH v2 net-next 02/16] net: dsa: pass extack to dsa_port_{bridge,lag}_join Vladimir Oltean
2021-03-19 22:05   ` Florian Fainelli
2021-03-22 10:25   ` Tobias Waldekranz
2021-03-18 23:18 ` [RFC PATCH v2 net-next 03/16] net: dsa: inherit the actual bridge port flags at join time Vladimir Oltean
2021-03-19  1:53   ` kernel test robot
2021-03-19 22:08   ` Florian Fainelli
2021-03-20 10:05     ` Vladimir Oltean
2021-03-18 23:18 ` [RFC PATCH v2 net-next 04/16] net: dsa: sync up with bridge port's STP state when joining Vladimir Oltean
2021-03-19 22:11   ` Florian Fainelli
2021-03-22 10:29   ` Tobias Waldekranz
2021-03-18 23:18 ` [RFC PATCH v2 net-next 05/16] net: dsa: sync up VLAN filtering state when joining the bridge Vladimir Oltean
2021-03-19 22:11   ` Florian Fainelli
2021-03-22 10:30   ` Tobias Waldekranz
2021-03-18 23:18 ` [RFC PATCH v2 net-next 06/16] net: dsa: sync multicast router " Vladimir Oltean
2021-03-19 22:12   ` Florian Fainelli
2021-03-22 11:17   ` Tobias Waldekranz
2021-03-22 11:43     ` Vladimir Oltean
2021-03-18 23:18 ` [RFC PATCH v2 net-next 07/16] net: dsa: sync ageing time " Vladimir Oltean
2021-03-19 22:13   ` Florian Fainelli
2021-03-20 10:09     ` Vladimir Oltean
2021-03-22 11:20   ` Tobias Waldekranz
2021-03-18 23:18 ` [RFC PATCH v2 net-next 08/16] net: dsa: replay port and host-joined mdb entries " Vladimir Oltean
2021-03-19 22:20   ` Florian Fainelli
2021-03-20  9:53     ` Vladimir Oltean
2021-03-22 15:56       ` Florian Fainelli
2021-03-18 23:18 ` [RFC PATCH v2 net-next 09/16] net: dsa: replay port and local fdb " Vladimir Oltean
2021-03-22 15:44   ` Tobias Waldekranz
2021-03-22 16:19     ` Vladimir Oltean
2021-03-22 17:07       ` Tobias Waldekranz
2021-03-22 17:13         ` Vladimir Oltean
2021-03-18 23:18 ` [RFC PATCH v2 net-next 10/16] net: dsa: replay VLANs installed on port " Vladimir Oltean
2021-03-19 22:24   ` Florian Fainelli
2021-03-18 23:18 ` [RFC PATCH v2 net-next 11/16] net: ocelot: support multiple bridges Vladimir Oltean
2021-03-18 23:18 ` [RFC PATCH v2 net-next 12/16] net: ocelot: call ocelot_netdevice_bridge_join when joining a bridged LAG Vladimir Oltean
2021-03-18 23:18 ` [RFC PATCH v2 net-next 13/16] net: ocelot: replay switchdev events when joining bridge Vladimir Oltean
2021-03-18 23:18 ` [RFC PATCH v2 net-next 14/16] net: dsa: don't set skb->offload_fwd_mark when not offloading the bridge Vladimir Oltean
2021-03-19  8:52   ` DENG Qingfang
2021-03-19  9:06     ` Vladimir Oltean
2021-03-19  9:29       ` DENG Qingfang
2021-03-19 10:49         ` Vladimir Oltean
2021-03-22  8:04           ` DENG Qingfang
2021-03-22 22:23             ` Vladimir Oltean
2021-03-22 16:06   ` Florian Fainelli
2021-03-18 23:18 ` [RFC PATCH v2 net-next 15/16] net: dsa: return -EOPNOTSUPP when driver does not implement .port_lag_join Vladimir Oltean
2021-03-22 15:51   ` Florian Fainelli
2021-03-22 15:58   ` Tobias Waldekranz
2021-03-18 23:18 ` [RFC PATCH v2 net-next 16/16] net: bridge: switchdev: let drivers inform which bridge ports are offloaded Vladimir Oltean
2021-03-19  2:31   ` kernel test robot
2021-03-19  2:46   ` kernel test robot [this message]
2021-03-22 16:30   ` Tobias Waldekranz
2021-03-22 17:19     ` Vladimir Oltean

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=202103191037.Vy4KHYd1-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.