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:31:00 +0800 [thread overview]
Message-ID: <202103191011.P6XaIDKs-lkp@intel.com> (raw)
In-Reply-To: <20210318231829.3892920-17-olteanv@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 6350 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: microblaze-randconfig-r031-20210318 (attached as .config)
compiler: microblaze-linux-gcc (GCC) 9.3.0
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
# 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=gcc-9.3.0 make.cross ARCH=microblaze
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 drivers/net/ethernet/ti/cpsw_switchdev.c:10:
>> include/linux/if_bridge.h:204:5: warning: no previous prototype for 'switchdev_bridge_port_offload' [-Wmissing-prototypes]
204 | int switchdev_bridge_port_offload(struct net_device *dev,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>> include/linux/if_bridge.h:210:5: warning: no previous prototype for 'switchdev_bridge_port_unoffload' [-Wmissing-prototypes]
210 | int switchdev_bridge_port_unoffload(struct net_device *dev)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from drivers/net/ethernet/ti/cpsw_switchdev.c:10:
include/linux/if_bridge.h: In function 'switchdev_bridge_port_unoffload':
include/linux/if_bridge.h:212:1: error: control reaches end of non-void function [-Werror=return-type]
212 | }
| ^
cc1: some warnings being treated as errors
--
drivers/net/ethernet/ti/cpsw_new.c: In function 'cpsw_netdevice_port_link':
>> drivers/net/ethernet/ti/cpsw_new.c:1527:8: error: implicit declaration of function 'switchdev_bridge_port_offload'; did you mean 'switchdev_handle_port_obj_add'? [-Werror=implicit-function-declaration]
1527 | err = switchdev_bridge_port_offload(ndev, NULL);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| switchdev_handle_port_obj_add
drivers/net/ethernet/ti/cpsw_new.c: In function 'cpsw_netdevice_port_unlink':
>> drivers/net/ethernet/ti/cpsw_new.c:1536:2: error: implicit declaration of function 'switchdev_bridge_port_unoffload'; did you mean 'switchdev_handle_port_obj_add'? [-Werror=implicit-function-declaration]
1536 | switchdev_bridge_port_unoffload(ndev);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| switchdev_handle_port_obj_add
cc1: some warnings being treated as errors
--
In file included from net/dsa/port.c:9:
>> include/linux/if_bridge.h:204:5: warning: no previous prototype for 'switchdev_bridge_port_offload' [-Wmissing-prototypes]
204 | int switchdev_bridge_port_offload(struct net_device *dev,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>> include/linux/if_bridge.h:210:5: warning: no previous prototype for 'switchdev_bridge_port_unoffload' [-Wmissing-prototypes]
210 | int switchdev_bridge_port_unoffload(struct net_device *dev)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
net/dsa/port.c: In function 'dsa_port_inherit_brport_flags':
net/dsa/port.c:152:34: error: implicit declaration of function 'dsa_port_to_bridge_port'; did you mean 'dsa_port_bridge_join'? [-Werror=implicit-function-declaration]
152 | struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
| ^~~~~~~~~~~~~~~~~~~~~~~
| dsa_port_bridge_join
net/dsa/port.c:152:34: warning: initialization of 'struct net_device *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
net/dsa/port.c: In function 'dsa_port_switchdev_sync':
net/dsa/port.c:174:34: warning: initialization of 'struct net_device *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
174 | struct net_device *brport_dev = dsa_port_to_bridge_port(dp);
| ^~~~~~~~~~~~~~~~~~~~~~~
In file included from net/dsa/port.c:9:
include/linux/if_bridge.h: In function 'switchdev_bridge_port_unoffload':
include/linux/if_bridge.h:212:1: error: control reaches end of non-void function [-Werror=return-type]
212 | }
| ^
cc1: some warnings being treated as errors
vim +1527 drivers/net/ethernet/ti/cpsw_new.c
1505
1506 static int cpsw_netdevice_port_link(struct net_device *ndev,
1507 struct net_device *br_ndev)
1508 {
1509 struct cpsw_priv *priv = netdev_priv(ndev);
1510 struct cpsw_common *cpsw = priv->cpsw;
1511 int err;
1512
1513 if (!cpsw->br_members) {
1514 cpsw->hw_bridge_dev = br_ndev;
1515 } else {
1516 /* This is adding the port to a second bridge, this is
1517 * unsupported
1518 */
1519 if (cpsw->hw_bridge_dev != br_ndev)
1520 return -EOPNOTSUPP;
1521 }
1522
1523 cpsw->br_members |= BIT(priv->emac_port);
1524
1525 cpsw_port_offload_fwd_mark_update(cpsw);
1526
> 1527 err = switchdev_bridge_port_offload(ndev, NULL);
1528 return notifier_to_errno(err);
1529 }
1530
1531 static void cpsw_netdevice_port_unlink(struct net_device *ndev)
1532 {
1533 struct cpsw_priv *priv = netdev_priv(ndev);
1534 struct cpsw_common *cpsw = priv->cpsw;
1535
> 1536 switchdev_bridge_port_unoffload(ndev);
1537
1538 cpsw->br_members &= ~BIT(priv->emac_port);
1539
1540 cpsw_port_offload_fwd_mark_update(cpsw);
1541
1542 if (!cpsw->br_members)
1543 cpsw->hw_bridge_dev = NULL;
1544 }
1545
---
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: 42600 bytes --]
next prev parent reply other threads:[~2021-03-19 2:31 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 [this message]
2021-03-19 2:46 ` kernel test robot
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=202103191011.P6XaIDKs-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.