aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/bluetooth/rfcomm/core.c2
-rw-r--r--net/socket.c1
2 files changed, 1 insertions, 2 deletions
diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c
index 37c640d1c3fd..acd84fd524b8 100644
--- a/net/bluetooth/rfcomm/core.c
+++ b/net/bluetooth/rfcomm/core.c
@@ -1781,8 +1781,6 @@ static inline void rfcomm_accept_connection(struct rfcomm_session *s)
1781 if (err < 0) 1781 if (err < 0)
1782 return; 1782 return;
1783 1783
1784 __module_get(nsock->ops->owner);
1785
1786 /* Set our callbacks */ 1784 /* Set our callbacks */
1787 nsock->sk->sk_data_ready = rfcomm_l2data_ready; 1785 nsock->sk->sk_data_ready = rfcomm_l2data_ready;
1788 nsock->sk->sk_state_change = rfcomm_l2state_change; 1786 nsock->sk->sk_state_change = rfcomm_l2state_change;
diff --git a/net/socket.c b/net/socket.c
index e9d65ea2687e..43021f9463f3 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -2306,6 +2306,7 @@ int kernel_accept(struct socket *sock, struct socket **newsock, int flags)
2306 } 2306 }
2307 2307
2308 (*newsock)->ops = sock->ops; 2308 (*newsock)->ops = sock->ops;
2309 __module_get((*newsock)->ops->owner);
2309 2310
2310done: 2311done:
2311 return err; 2312 return err;