diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2012-08-07 03:26:14 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-08-15 02:30:37 -0400 |
commit | 89bf3450cb9b041b1bb4bcc5e7cbdeab4545b1c1 (patch) | |
tree | 50acdf9b846620fc8c757972da0041f7a1731249 /net/sctp/sm_statefuns.c | |
parent | 55e26eb95a5345a5796babac98de6d6c42771df1 (diff) |
sctp: Push struct net down into sctp_transport_init
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/sm_statefuns.c')
-rw-r--r-- | net/sctp/sm_statefuns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c index bee5e2c288d8..ff2530c848b0 100644 --- a/net/sctp/sm_statefuns.c +++ b/net/sctp/sm_statefuns.c | |||
@@ -5958,7 +5958,7 @@ static struct sctp_packet *sctp_ootb_pkt_new(struct net *net, | |||
5958 | } | 5958 | } |
5959 | 5959 | ||
5960 | /* Make a transport for the bucket, Eliza... */ | 5960 | /* Make a transport for the bucket, Eliza... */ |
5961 | transport = sctp_transport_new(sctp_source(chunk), GFP_ATOMIC); | 5961 | transport = sctp_transport_new(net, sctp_source(chunk), GFP_ATOMIC); |
5962 | if (!transport) | 5962 | if (!transport) |
5963 | goto nomem; | 5963 | goto nomem; |
5964 | 5964 | ||