diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-12-27 11:30:05 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-27 11:30:05 +0100 |
commit | 34bf5d0ff54d03f0a8ed690d47efb806ee2fffcb (patch) | |
tree | 5465f999b2b067744220b66c89b75f0f10445d6e /net | |
parent | x86: clean up comment style in arch/x86/kernel/traps.c (diff) | |
parent | Merge branches 'x86/pat2' and 'x86/fpu'; commit 'v2.6.28' into x86/core (diff) | |
download | linux-34bf5d0ff54d03f0a8ed690d47efb806ee2fffcb.tar.xz linux-34bf5d0ff54d03f0a8ed690d47efb806ee2fffcb.zip |
Merge branch 'x86/core' into x86/cleanups
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/rfcomm/core.c | 2 | ||||
-rw-r--r-- | net/socket.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c index ba537fae0a4c..ce68e046d963 100644 --- a/net/bluetooth/rfcomm/core.c +++ b/net/bluetooth/rfcomm/core.c @@ -1786,8 +1786,6 @@ static inline void rfcomm_accept_connection(struct rfcomm_session *s) if (err < 0) return; - __module_get(nsock->ops->owner); - /* Set our callbacks */ nsock->sk->sk_data_ready = rfcomm_l2data_ready; nsock->sk->sk_state_change = rfcomm_l2state_change; diff --git a/net/socket.c b/net/socket.c index 92764d836891..76ba80aeac1a 100644 --- a/net/socket.c +++ b/net/socket.c @@ -2307,6 +2307,7 @@ int kernel_accept(struct socket *sock, struct socket **newsock, int flags) } (*newsock)->ops = sock->ops; + __module_get((*newsock)->ops->owner); done: return err; |