tcp: change type of alive from int to bool
authorRichard Sailer <richard@weltraumpflege.org>
Fri, 9 Oct 2015 00:41:37 +0000 (02:41 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 12 Oct 2015 12:15:03 +0000 (05:15 -0700)
commit7533ce3055bbe9577276a847125b156c44a5bbce
tree11e352f49c080a32c05106dad1168ebb4ccc37f9
parent3741873b4f73b572b8f8835e6bd114e08316a160
tcp: change type of alive from int to bool

The alive parameter of tcp_orphan_retries, indicates
whether the connection is assumed alive or not.
In the function and all places calling it is used as a boolean value.

Therefore this changes the type of alive to bool in the function
definition and all calling locations.

Since tcp_orphan_tries is a tcp_timer.c local function no change in
any other file or header is necessary.

Signed-off-by: Richard Sailer <richard@weltraumpflege.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_timer.c