tcp: move stats merge to the end of tcp_try_coalesce
commit34a802a5b9c4c4efb61828781230805be6dd0f8e
authorAlexander Duyck <alexander.h.duyck@intel.com>
Wed, 2 May 2012 21:19:09 +0000 (2 21:19 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 3 May 2012 08:21:33 +0000 (3 04:21 -0400)
tree45be14af435925382374f42619af2d1b602eee52
parent57b55a7ec684d8b846d6d5e67f4982363a83db7e
tcp: move stats merge to the end of tcp_try_coalesce

This change cleans up the last bits of tcp_try_coalesce so that we only
need one goto which jumps to the end of the function.  The idea is to make
the code more readable by putting things in a linear order so that we start
execution at the top of the function, and end it at the bottom.

I also made a slight tweak to the code for handling frags when we are a
clone.  Instead of making it an if (clone) loop else nr_frags = 0 I changed
the logic so that if (!clone) we just set the number of frags to 0 which
disables the for loop anyway.

Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Cc: Eric Dumazet <edumazet@google.com>
Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_input.c