Re: [PATCH net-next] ip_tunnel: Move stats update to iptunnel_xmit()

2015-12-23 Thread Pravin Shelar
On Wed, Dec 23, 2015 at 1:49 AM, Nicolas Dichtel wrote: > Le 22/12/2015 01:34, Pravin B Shelar a écrit : >> >> By moving stats update into iptunnel_xmit(), we can simplify >> iptunnel_xmit() usage. With this change there is no need to >> call another function (iptunnel_xmit_stats()) to update stat

Re: [PATCH net-next] ip_tunnel: Move stats update to iptunnel_xmit()

2015-12-23 Thread Nicolas Dichtel
Le 22/12/2015 01:34, Pravin B Shelar a écrit : By moving stats update into iptunnel_xmit(), we can simplify iptunnel_xmit() usage. With this change there is no need to call another function (iptunnel_xmit_stats()) to update stats in tunnel xmit code path. Signed-off-by: Pravin B Shelar --- [sn

[PATCH net-next] ip_tunnel: Move stats update to iptunnel_xmit()

2015-12-21 Thread Pravin B Shelar
By moving stats update into iptunnel_xmit(), we can simplify iptunnel_xmit() usage. With this change there is no need to call another function (iptunnel_xmit_stats()) to update stats in tunnel xmit code path. Signed-off-by: Pravin B Shelar --- drivers/net/geneve.c | 17 - dr

Re: [PATCH net-next] ip_tunnel: Move stats update to iptunnel_xmit()

2015-12-09 Thread Pravin Shelar
On Tue, Dec 8, 2015 at 7:41 PM, David Miller wrote: > From: Pravin B Shelar > Date: Tue, 8 Dec 2015 19:22:34 -0800 > >> By moving stats update into iptunnel_xmit(), we can simplify >> iptunnel_xmit() usage. With this change there is no need to >> call another function (iptunnel_xmit_stats()) to

Re: [PATCH net-next] ip_tunnel: Move stats update to iptunnel_xmit()

2015-12-08 Thread David Miller
From: Pravin B Shelar Date: Tue, 8 Dec 2015 19:22:34 -0800 > By moving stats update into iptunnel_xmit(), we can simplify > iptunnel_xmit() usage. With this change there is no need to > call another function (iptunnel_xmit_stats()) to update stats > in tunnel xmit code path. > > Signed-off-by:

[PATCH net-next] ip_tunnel: Move stats update to iptunnel_xmit()

2015-12-08 Thread Pravin B Shelar
By moving stats update into iptunnel_xmit(), we can simplify iptunnel_xmit() usage. With this change there is no need to call another function (iptunnel_xmit_stats()) to update stats in tunnel xmit code path. Signed-off-by: Pravin B Shelar --- drivers/net/geneve.c | 18 +++---