RE: [PATCH net-next 3/9] net: Remove e_nobufs label from ip_route_input_slow

2015-09-24 Thread David Laight
From: Eric W. Biederman > Sent: 23 September 2015 03:15 > David Ahern writes: > > > e_nobufs has 1 user. Move setting err to -ENOBUFS for the 1 user and > > use the goto out label instead of e_nobufs. Stepping stone patch; next > > one moves rth code into a helper

Re: [PATCH net-next 3/9] net: Remove e_nobufs label from ip_route_input_slow

2015-09-22 Thread Eric W. Biederman
David Ahern writes: > e_nobufs has 1 user. Move setting err to -ENOBUFS for the 1 user and > use the goto out label instead of e_nobufs. Stepping stone patch; next > one moves rth code into a helper function. Ick you are pessimizing the code. You will almost certainly

Re: [PATCH net-next 3/9] net: Remove e_nobufs label from ip_route_input_slow

2015-09-22 Thread David Ahern
On 9/22/15 8:15 PM, Eric W. Biederman wrote: David Ahern writes: e_nobufs has 1 user. Move setting err to -ENOBUFS for the 1 user and use the goto out label instead of e_nobufs. Stepping stone patch; next one moves rth code into a helper function. Ick you are