diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2009-02-07 02:47:14 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-07 02:47:14 -0500 |
commit | 910d30b704542b49f83881a4832d8414c6c3d9c3 (patch) | |
tree | 3973f0a9b850dc82158c9bf3c310c34ba2dacda7 /net/ax25 | |
parent | 69ebbf58f3dff9fb4e5240e472b5869fa869dae1 (diff) |
ax25: more common return path joining
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Acked-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ax25')
-rw-r--r-- | net/ax25/ax25_iface.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/net/ax25/ax25_iface.c b/net/ax25/ax25_iface.c index 8443af57a374..71338f112108 100644 --- a/net/ax25/ax25_iface.c +++ b/net/ax25/ax25_iface.c | |||
@@ -61,27 +61,24 @@ void ax25_protocol_release(unsigned int pid) | |||
61 | 61 | ||
62 | write_lock_bh(&protocol_list_lock); | 62 | write_lock_bh(&protocol_list_lock); |
63 | protocol = protocol_list; | 63 | protocol = protocol_list; |
64 | if (protocol == NULL) { | 64 | if (protocol == NULL) |
65 | write_unlock_bh(&protocol_list_lock); | 65 | goto out; |
66 | return; | ||
67 | } | ||
68 | 66 | ||
69 | if (protocol->pid == pid) { | 67 | if (protocol->pid == pid) { |
70 | protocol_list = protocol->next; | 68 | protocol_list = protocol->next; |
71 | write_unlock_bh(&protocol_list_lock); | 69 | goto out; |
72 | return; | ||
73 | } | 70 | } |
74 | 71 | ||
75 | while (protocol != NULL && protocol->next != NULL) { | 72 | while (protocol != NULL && protocol->next != NULL) { |
76 | if (protocol->next->pid == pid) { | 73 | if (protocol->next->pid == pid) { |
77 | s = protocol->next; | 74 | s = protocol->next; |
78 | protocol->next = protocol->next->next; | 75 | protocol->next = protocol->next->next; |
79 | write_unlock_bh(&protocol_list_lock); | 76 | goto out; |
80 | return; | ||
81 | } | 77 | } |
82 | 78 | ||
83 | protocol = protocol->next; | 79 | protocol = protocol->next; |
84 | } | 80 | } |
81 | out: | ||
85 | write_unlock_bh(&protocol_list_lock); | 82 | write_unlock_bh(&protocol_list_lock); |
86 | } | 83 | } |
87 | 84 | ||