Commit 910d30b7 authored by Ilpo Järvinen's avatar Ilpo Järvinen Committed by David S. Miller

ax25: more common return path joining

Signed-off-by: default avatarIlpo Järvinen <ilpo.jarvinen@helsinki.fi>
Acked-by: default avatarRalf Baechle <ralf@linux-mips.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 69ebbf58
...@@ -61,27 +61,24 @@ void ax25_protocol_release(unsigned int pid) ...@@ -61,27 +61,24 @@ void ax25_protocol_release(unsigned int pid)
write_lock_bh(&protocol_list_lock); write_lock_bh(&protocol_list_lock);
protocol = protocol_list; protocol = protocol_list;
if (protocol == NULL) { if (protocol == NULL)
write_unlock_bh(&protocol_list_lock); goto out;
return;
}
if (protocol->pid == pid) { if (protocol->pid == pid) {
protocol_list = protocol->next; protocol_list = protocol->next;
write_unlock_bh(&protocol_list_lock); goto out;
return;
} }
while (protocol != NULL && protocol->next != NULL) { while (protocol != NULL && protocol->next != NULL) {
if (protocol->next->pid == pid) { if (protocol->next->pid == pid) {
s = protocol->next; s = protocol->next;
protocol->next = protocol->next->next; protocol->next = protocol->next->next;
write_unlock_bh(&protocol_list_lock); goto out;
return;
} }
protocol = protocol->next; protocol = protocol->next;
} }
out:
write_unlock_bh(&protocol_list_lock); write_unlock_bh(&protocol_list_lock);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment