diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2013-02-28 19:27:43 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-03-01 15:59:56 -0500 |
commit | 81ce0dbc119fa31af21d02febde1cf923022d4d6 (patch) | |
tree | d30a6bbde6b47679115f5eb1f84f79eabbc5c58f | |
parent | d8c6f4b9b7848bca8babfc0ae43a50c8ab22fbb9 (diff) | |
download | linux-81ce0dbc119fa31af21d02febde1cf923022d4d6.tar.gz linux-81ce0dbc119fa31af21d02febde1cf923022d4d6.tar.xz |
sctp: use the passed in gfp flags instead GFP_KERNEL
This patch doesn't change how the code works because in the current
kernel gfp is always GFP_KERNEL. But gfp was obviously intended
instead of GFP_KERNEL.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/sctp/endpointola.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/endpointola.c b/net/sctp/endpointola.c index 73aad3d16a45..9a680c075141 100644 --- a/net/sctp/endpointola.c +++ b/net/sctp/endpointola.c @@ -155,7 +155,7 @@ static struct sctp_endpoint *sctp_endpoint_init(struct sctp_endpoint *ep, /* SCTP-AUTH extensions*/ INIT_LIST_HEAD(&ep->endpoint_shared_keys); - null_key = sctp_auth_shkey_create(0, GFP_KERNEL); + null_key = sctp_auth_shkey_create(0, gfp); if (!null_key) goto nomem; |