Re: [PATCH net-next 1/1] driver: ipvlan: Remove useless member mtu_adj of struct ipvl_dev

2016-11-30 Thread David Miller
From: f...@ikuai8.com Date: Wed, 30 Nov 2016 08:48:44 +0800 > From: Gao Feng > > The mtu_adj is initialized to zero when alloc mem, there is no any > assignment to mtu_adj. It is only used in ipvlan_adjust_mtu as one > right value. > So it is useless member of struct ipvl_dev,

[PATCH net-next 1/1] driver: ipvlan: Remove useless member mtu_adj of struct ipvl_dev

2016-11-29 Thread fgao
From: Gao Feng The mtu_adj is initialized to zero when alloc mem, there is no any assignment to mtu_adj. It is only used in ipvlan_adjust_mtu as one right value. So it is useless member of struct ipvl_dev, then remove it. Signed-off-by: Gao Feng ---