|
@@ -7993,7 +7993,6 @@ static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
|
|
return err;
|
|
return err;
|
|
}
|
|
}
|
|
|
|
|
|
-#ifdef HAVE_BRIDGE_ATTRIBS
|
|
|
|
/**
|
|
/**
|
|
* i40e_ndo_bridge_setlink - Set the hardware bridge mode
|
|
* i40e_ndo_bridge_setlink - Set the hardware bridge mode
|
|
* @dev: the netdev being configured
|
|
* @dev: the netdev being configured
|
|
@@ -8007,7 +8006,8 @@ static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
|
|
* bridge mode enabled.
|
|
* bridge mode enabled.
|
|
**/
|
|
**/
|
|
static int i40e_ndo_bridge_setlink(struct net_device *dev,
|
|
static int i40e_ndo_bridge_setlink(struct net_device *dev,
|
|
- struct nlmsghdr *nlh)
|
|
|
|
|
|
+ struct nlmsghdr *nlh,
|
|
|
|
+ u16 flags)
|
|
{
|
|
{
|
|
struct i40e_netdev_priv *np = netdev_priv(dev);
|
|
struct i40e_netdev_priv *np = netdev_priv(dev);
|
|
struct i40e_vsi *vsi = np->vsi;
|
|
struct i40e_vsi *vsi = np->vsi;
|
|
@@ -8078,14 +8078,9 @@ static int i40e_ndo_bridge_setlink(struct net_device *dev,
|
|
* Return the mode in which the hardware bridge is operating in
|
|
* Return the mode in which the hardware bridge is operating in
|
|
* i.e VEB or VEPA.
|
|
* i.e VEB or VEPA.
|
|
**/
|
|
**/
|
|
-#ifdef HAVE_BRIDGE_FILTER
|
|
|
|
static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
|
|
static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
|
|
struct net_device *dev,
|
|
struct net_device *dev,
|
|
u32 filter_mask, int nlflags)
|
|
u32 filter_mask, int nlflags)
|
|
-#else
|
|
|
|
-static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
|
|
|
|
- struct net_device *dev, int nlflags)
|
|
|
|
-#endif /* HAVE_BRIDGE_FILTER */
|
|
|
|
{
|
|
{
|
|
struct i40e_netdev_priv *np = netdev_priv(dev);
|
|
struct i40e_netdev_priv *np = netdev_priv(dev);
|
|
struct i40e_vsi *vsi = np->vsi;
|
|
struct i40e_vsi *vsi = np->vsi;
|
|
@@ -8109,7 +8104,6 @@ static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
|
|
return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode,
|
|
return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode,
|
|
nlflags, 0, 0, filter_mask, NULL);
|
|
nlflags, 0, 0, filter_mask, NULL);
|
|
}
|
|
}
|
|
-#endif /* HAVE_BRIDGE_ATTRIBS */
|
|
|
|
|
|
|
|
#define I40E_MAX_TUNNEL_HDR_LEN 80
|
|
#define I40E_MAX_TUNNEL_HDR_LEN 80
|
|
/**
|
|
/**
|
|
@@ -8165,10 +8159,8 @@ static const struct net_device_ops i40e_netdev_ops = {
|
|
.ndo_get_phys_port_id = i40e_get_phys_port_id,
|
|
.ndo_get_phys_port_id = i40e_get_phys_port_id,
|
|
.ndo_fdb_add = i40e_ndo_fdb_add,
|
|
.ndo_fdb_add = i40e_ndo_fdb_add,
|
|
.ndo_features_check = i40e_features_check,
|
|
.ndo_features_check = i40e_features_check,
|
|
-#ifdef HAVE_BRIDGE_ATTRIBS
|
|
|
|
.ndo_bridge_getlink = i40e_ndo_bridge_getlink,
|
|
.ndo_bridge_getlink = i40e_ndo_bridge_getlink,
|
|
.ndo_bridge_setlink = i40e_ndo_bridge_setlink,
|
|
.ndo_bridge_setlink = i40e_ndo_bridge_setlink,
|
|
-#endif /* HAVE_BRIDGE_ATTRIBS */
|
|
|
|
};
|
|
};
|
|
|
|
|
|
/**
|
|
/**
|