vlan: move struct vlan_dev_info to private header
Hide struct vlan_dev_info from drivers to prevent them from growing more creative ways to use it. Provide accessors for the two drivers that currently use it. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
7750f403cb
commit
22d1ba74bb
@@ -2020,7 +2020,7 @@ static int qeth_l3_verify_vlan_dev(struct net_device *dev,
|
||||
}
|
||||
}
|
||||
|
||||
if (rc && !(netdev_priv(vlan_dev_info(dev)->real_dev) == (void *)card))
|
||||
if (rc && !(netdev_priv(vlan_dev_real_dev(dev)) == (void *)card))
|
||||
return 0;
|
||||
|
||||
return rc;
|
||||
@@ -2056,7 +2056,7 @@ static struct qeth_card *qeth_l3_get_card_from_dev(struct net_device *dev)
|
||||
if (rc == QETH_REAL_CARD)
|
||||
card = netdev_priv(dev);
|
||||
else if (rc == QETH_VLAN_CARD)
|
||||
card = netdev_priv(vlan_dev_info(dev)->real_dev);
|
||||
card = netdev_priv(vlan_dev_real_dev(dev));
|
||||
if (card && card->options.layer2)
|
||||
card = NULL;
|
||||
QETH_DBF_TEXT_(TRACE, 4, "%d", rc);
|
||||
|
Reference in New Issue
Block a user