summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/md/bcache/io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/bcache/io.c b/drivers/md/bcache/io.c
index 0d24dbab5b3b..019b3edbd266 100644
--- a/drivers/md/bcache/io.c
+++ b/drivers/md/bcache/io.c
@@ -208,7 +208,7 @@ static void *__bounce_alloc(struct cache_set *c, unsigned size,
void *data;
*bounced = BOUNCED_KMALLOCED;
- data = kmalloc(size, GFP_NOIO);
+ data = kmalloc(size, GFP_NOIO|__GFP_NOWARN);
if (data)
return data;