aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/tipc/tipc_port.h
diff options
context:
space:
mode:
authorAllan Stephens <allan.stephens@windriver.com>2008-05-12 15:42:28 -0700
committerDavid S. Miller <davem@davemloft.net>2008-05-12 15:42:28 -0700
commit7ef43ebaa538e0cc9063cbf84593a05091bcace2 (patch)
treed2bac748f6620cc2f217672105918b2116f6c958 /include/net/tipc/tipc_port.h
parenttipc: Enhancements to name table initialization (diff)
downloadlinux-dev-7ef43ebaa538e0cc9063cbf84593a05091bcace2.tar.xz
linux-dev-7ef43ebaa538e0cc9063cbf84593a05091bcace2.zip
tipc: Fix race condition when creating socket or native port
This patch eliminates the (very remote) chance of a crash resulting from a partially initialized socket or native port unexpectedly receiving a message. Now, during the creation of a socket or native port, the underlying generic port's lock is not released until all initialization required to handle incoming messages has been done. Signed-off-by: Allan Stephens <allan.stephens@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tipc/tipc_port.h')
-rw-r--r--include/net/tipc/tipc_port.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/tipc/tipc_port.h b/include/net/tipc/tipc_port.h
index 11105bcc4457..9923e41a8215 100644
--- a/include/net/tipc/tipc_port.h
+++ b/include/net/tipc/tipc_port.h
@@ -84,7 +84,8 @@ struct tipc_port {
u32 tipc_createport_raw(void *usr_handle,
u32 (*dispatcher)(struct tipc_port *, struct sk_buff *),
void (*wakeup)(struct tipc_port *),
- const u32 importance);
+ const u32 importance,
+ struct tipc_port **tp_ptr);
int tipc_reject_msg(struct sk_buff *buf, u32 err);