]> git.baikalelectronics.ru Git - kernel.git/commit
tipc: refactor accept() code for improved readability
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Tue, 4 Dec 2012 16:01:55 +0000 (11:01 -0500)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Fri, 7 Dec 2012 22:23:24 +0000 (17:23 -0500)
commit047e6015e5c6a9d5126e6d6f48586d0daa1c8b1c
tree9fb4ea40b14c9433e6d1bac460c73dc8b060f199
parent9547688286f91ddac6aa36ae33b8598086c9ca7a
tipc: refactor accept() code for improved readability

In TIPC's accept() routine, there is a large block of code relating
to initialization of a new socket, all within an if condition checking
if the allocation succeeded.

Here, we simply flip the check of the if, so that the main execution
path stays at the same indentation level, which improves readability.
If the allocation fails, we jump to an already existing exit label.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
net/tipc/socket.c