aboutsummaryrefslogtreecommitdiffstats
path: root/net/rxrpc/peer_event.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/rxrpc/peer_event.c')
-rw-r--r--net/rxrpc/peer_event.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/rxrpc/peer_event.c b/net/rxrpc/peer_event.c
index ff30e0c05507..d82e44a3901b 100644
--- a/net/rxrpc/peer_event.c
+++ b/net/rxrpc/peer_event.c
@@ -213,23 +213,23 @@ static void rxrpc_distribute_error(struct rxrpc_peer *peer, struct sk_buff *skb,
struct rxrpc_call *call;
HLIST_HEAD(error_targets);
- spin_lock(&peer->lock);
+ spin_lock_irq(&peer->lock);
hlist_move_list(&peer->error_targets, &error_targets);
while (!hlist_empty(&error_targets)) {
call = hlist_entry(error_targets.first,
struct rxrpc_call, error_link);
hlist_del_init(&call->error_link);
- spin_unlock(&peer->lock);
+ spin_unlock_irq(&peer->lock);
rxrpc_see_call(call, rxrpc_call_see_distribute_error);
rxrpc_set_call_completion(call, compl, 0, -err);
rxrpc_input_call_event(call);
- spin_lock(&peer->lock);
+ spin_lock_irq(&peer->lock);
}
- spin_unlock(&peer->lock);
+ spin_unlock_irq(&peer->lock);
}
/*
tions'>-11/+11 2016-10-03show-branch: use QSORTRené Scharfe1-4/+2 2016-10-03coccicheck: make transformation for strbuf_addf(sb, "...") more preciseRené Scharfe1-3/+26 2016-09-29pretty: avoid adding reset for %C(auto) if output is emptyRené Scharfe2-2/+2 2016-09-29use QSORT, part 2René Scharfe2-3/+2 2016-09-29coccicheck: use --all-includes by defaultRené Scharfe1-1/+2 2016-09-29http: control GSSAPI credential delegationPetr Stodulka2-0/+51 2016-09-29Sixth batch for 2.11Junio C Hamano1-0/+28 2016-09-29Prepare for 2.10.1Junio C Hamano1-0/+87 2016-09-29graph: fix extra spaces in graph_padding_lineJeff King1-4/+12 2016-09-29remove unnecessary check before QSORTRené Scharfe3-8/+23 2016-09-29use QSORTRené Scharfe30-65/+44 2016-09-29add QSORTRené Scharfe2-0/+27 2016-09-28blame: use DEFAULT_ABBREV macroJunio C Hamano1-1/+1 2016-09-28mailinfo: unescape quoted-pair in header fieldsKevin Daudt6-0/+124 2016-09-28t5100-mailinfo: replace common path prefix with variableKevin Daudt1-33/+35 2016-09-27rev-list-options: clarify the usage of --reversePranit Bauva1-2/+3 2016-09-27fsck: handle bad trees like other errorsDavid Turner4-19/+106 2016-09-27tree-walk: be more specific about corrupt tree errorsJeff King2-7/+30 2016-09-27use strbuf_add_unique_abbrev() for adding short hashes, part 2René Scharfe4-4/+9 2016-09-27use strbuf_addstr() instead of strbuf_addf() with "%s", part 2René Scharfe3-2/+8