diff options
author | Mahesh Bandewar <maheshb@google.com> | 2016-02-21 04:31:41 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-02-22 04:43:24 +0100 |
commit | ab5b7013db3cc637a8f19e00d71310e40db75bf6 (patch) | |
tree | e4843b1960e13c8d184ac91b937e659773304094 /drivers/net/ipvlan/ipvlan_main.c | |
parent | ipvlan: mode is u16 (diff) | |
download | linux-ab5b7013db3cc637a8f19e00d71310e40db75bf6.tar.xz linux-ab5b7013db3cc637a8f19e00d71310e40db75bf6.zip |
ipvlan: misc changes
1. scope correction for few functions that are used in single file.
2. Adjust variables that are used in fast-path to fit into single cacheline
3. Update rcv_frame() to skip shared check for frames coming over wire
Signed-off-by: Mahesh Bandewar <maheshb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ipvlan/ipvlan_main.c')
-rw-r--r-- | drivers/net/ipvlan/ipvlan_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ipvlan/ipvlan_main.c b/drivers/net/ipvlan/ipvlan_main.c index 5bcb852c5500..a7ca1c519a0d 100644 --- a/drivers/net/ipvlan/ipvlan_main.c +++ b/drivers/net/ipvlan/ipvlan_main.c @@ -9,7 +9,7 @@ #include "ipvlan.h" -void ipvlan_adjust_mtu(struct ipvl_dev *ipvlan, struct net_device *dev) +static void ipvlan_adjust_mtu(struct ipvl_dev *ipvlan, struct net_device *dev) { ipvlan->dev->mtu = dev->mtu - ipvlan->mtu_adj; } |