aboutsummaryrefslogtreecommitdiffstats
path: root/net/rxrpc/ar-accept.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/rxrpc/ar-accept.c')
-rw-r--r--net/rxrpc/ar-accept.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rxrpc/ar-accept.c b/net/rxrpc/ar-accept.c
index 277731a5e67a..e7a7f05f13e2 100644
--- a/net/rxrpc/ar-accept.c
+++ b/net/rxrpc/ar-accept.c
@@ -108,7 +108,7 @@ static int rxrpc_accept_incoming_call(struct rxrpc_local *local,
108 goto error; 108 goto error;
109 } 109 }
110 110
111 conn = rxrpc_incoming_connection(trans, &sp->hdr, GFP_NOIO); 111 conn = rxrpc_incoming_connection(trans, &sp->hdr);
112 rxrpc_put_transport(trans); 112 rxrpc_put_transport(trans);
113 if (IS_ERR(conn)) { 113 if (IS_ERR(conn)) {
114 _debug("no conn"); 114 _debug("no conn");
@@ -116,7 +116,7 @@ static int rxrpc_accept_incoming_call(struct rxrpc_local *local,
116 goto error; 116 goto error;
117 } 117 }
118 118
119 call = rxrpc_incoming_call(rx, conn, &sp->hdr, GFP_NOIO); 119 call = rxrpc_incoming_call(rx, conn, &sp->hdr);
120 rxrpc_put_connection(conn); 120 rxrpc_put_connection(conn);
121 if (IS_ERR(call)) { 121 if (IS_ERR(call)) {
122 _debug("no call"); 122 _debug("no call");