diff options
author | Mahesh Bandewar <maheshb@google.com> | 2014-12-07 00:53:33 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-12-09 22:10:06 +0100 |
commit | 5933fea7aa7237ba52d67c069c39ad5c3ab7a036 (patch) | |
tree | d3e2a240606e79cc961337001297e8609ecc1220 /drivers/net/ipvlan/ipvlan.h | |
parent | ipvlan: play well with macvlan device (diff) | |
download | linux-5933fea7aa7237ba52d67c069c39ad5c3ab7a036.tar.xz linux-5933fea7aa7237ba52d67c069c39ad5c3ab7a036.zip |
ipvlan: move the device check function into netdevice.h
Move the port check [ipvlan_dev_master()] and device check
[ipvlan_dev_slave()] functions to netdevice.h and rename them
netif_is_ipvlan_port() and netif_is_ipvlan() resp. to be
consistent with macvlan api naming.
Signed-off-by: Mahesh Bandewar <maheshb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ipvlan/ipvlan.h')
-rw-r--r-- | drivers/net/ipvlan/ipvlan.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/net/ipvlan/ipvlan.h b/drivers/net/ipvlan/ipvlan.h index c44d29eca6c0..2729f64b3e7e 100644 --- a/drivers/net/ipvlan/ipvlan.h +++ b/drivers/net/ipvlan/ipvlan.h @@ -107,16 +107,6 @@ static inline struct ipvl_port *ipvlan_port_get_rtnl(const struct net_device *d) return rtnl_dereference(d->rx_handler_data); } -static inline bool ipvlan_dev_master(struct net_device *d) -{ - return d->priv_flags & IFF_IPVLAN_MASTER; -} - -static inline bool ipvlan_dev_slave(struct net_device *d) -{ - return d->priv_flags & IFF_IPVLAN_SLAVE; -} - void ipvlan_adjust_mtu(struct ipvl_dev *ipvlan, struct net_device *dev); void ipvlan_set_port_mode(struct ipvl_port *port, u32 nval); void ipvlan_init_secret(void); |