mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
sctp: Push struct net down to sctp_chunk_event_lookup
This trickles up through sctp_sm_lookup_event up to sctp_do_sm and up further into sctp_primitiv_NAME before the code reaches places where struct net can be reliably found. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
ebb7e95d93
commit
55e26eb95a
@@ -57,7 +57,7 @@
|
||||
|
||||
#define DECLARE_PRIMITIVE(name) \
|
||||
/* This is called in the code as sctp_primitive_ ## name. */ \
|
||||
int sctp_primitive_ ## name(struct sctp_association *asoc, \
|
||||
int sctp_primitive_ ## name(struct net *net, struct sctp_association *asoc, \
|
||||
void *arg) { \
|
||||
int error = 0; \
|
||||
sctp_event_t event_type; sctp_subtype_t subtype; \
|
||||
@@ -69,7 +69,7 @@ int sctp_primitive_ ## name(struct sctp_association *asoc, \
|
||||
state = asoc ? asoc->state : SCTP_STATE_CLOSED; \
|
||||
ep = asoc ? asoc->ep : NULL; \
|
||||
\
|
||||
error = sctp_do_sm(event_type, subtype, state, ep, asoc, \
|
||||
error = sctp_do_sm(net, event_type, subtype, state, ep, asoc, \
|
||||
arg, GFP_KERNEL); \
|
||||
return error; \
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user