lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Sat, 11 Nov 2017 16:57:08 +0800
From:   kbuild test robot <fengguang.wu@...el.com>
To:     Andrew Lunn <andrew@...n.ch>
Cc:     kbuild-all@...org, netdev@...r.kernel.org
Subject: [net-next:master 622/639] net/dsa/port.c:255: undefined reference to
 `br_vlan_enabled'

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git master
head:   bee955cd3ab4f1a1eb8fc16e7ed69364143df8d7
commit: 2ea7a679ca2abd251c1ec03f20508619707e1749 [622/639] net: dsa: Don't add vlans when vlan filtering is disabled
config: x86_64-randconfig-s2-11111208 (attached as .config)
compiler: gcc-6 (Debian 6.4.0-9) 6.4.0 20171026
reproduce:
        git checkout 2ea7a679ca2abd251c1ec03f20508619707e1749
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   net/dsa/port.o: In function `dsa_port_vlan_add':
>> net/dsa/port.c:255: undefined reference to `br_vlan_enabled'
   net/dsa/port.o: In function `dsa_port_vlan_del':
   net/dsa/port.c:270: undefined reference to `br_vlan_enabled'

vim +255 net/dsa/port.c

   243	
   244	int dsa_port_vlan_add(struct dsa_port *dp,
   245			      const struct switchdev_obj_port_vlan *vlan,
   246			      struct switchdev_trans *trans)
   247	{
   248		struct dsa_notifier_vlan_info info = {
   249			.sw_index = dp->ds->index,
   250			.port = dp->index,
   251			.trans = trans,
   252			.vlan = vlan,
   253		};
   254	
 > 255		if (br_vlan_enabled(dp->bridge_dev))
   256			return dsa_port_notify(dp, DSA_NOTIFIER_VLAN_ADD, &info);
   257	
   258		return 0;
   259	}
   260	

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

Download attachment ".config.gz" of type "application/gzip" (32967 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ