diff options
author | Michal Hocko <mhocko@suse.com> | 2016-04-14 04:51:42 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-04-15 10:36:36 -0400 |
commit | 5f575efea79caae69b81f922d99b221302a2c003 (patch) | |
tree | c5efc6393b5308e6745d1d054283709b15cd22b5 | |
parent | afc39d6e89b4f410f511f03dc6de8dc1d4952d42 (diff) |
crypto: lzo - get rid of superfluous __GFP_REPEAT
__GFP_REPEAT has a rather weak semantic but since it has been introduced
around 2.6.12 it has been ignored for low order allocations.
lzo_init uses __GFP_REPEAT to allocate LZO1X_MEM_COMPRESS 16K. This is
order 3 allocation request and __GFP_REPEAT is ignored for this size
as well as all <= PAGE_ALLOC_COSTLY requests.
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: linux-crypto@vger.kernel.org
Signed-off-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | crypto/lzo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/lzo.c b/crypto/lzo.c index 4b3e92525dac..c3f3dd9a28c5 100644 --- a/crypto/lzo.c +++ b/crypto/lzo.c | |||
@@ -32,7 +32,7 @@ static int lzo_init(struct crypto_tfm *tfm) | |||
32 | struct lzo_ctx *ctx = crypto_tfm_ctx(tfm); | 32 | struct lzo_ctx *ctx = crypto_tfm_ctx(tfm); |
33 | 33 | ||
34 | ctx->lzo_comp_mem = kmalloc(LZO1X_MEM_COMPRESS, | 34 | ctx->lzo_comp_mem = kmalloc(LZO1X_MEM_COMPRESS, |
35 | GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT); | 35 | GFP_KERNEL | __GFP_NOWARN); |
36 | if (!ctx->lzo_comp_mem) | 36 | if (!ctx->lzo_comp_mem) |
37 | ctx->lzo_comp_mem = vmalloc(LZO1X_MEM_COMPRESS); | 37 | ctx->lzo_comp_mem = vmalloc(LZO1X_MEM_COMPRESS); |
38 | if (!ctx->lzo_comp_mem) | 38 | if (!ctx->lzo_comp_mem) |