rbd: use GFP_NOIO in rbd_obj_request_create()
authorIlya Dryomov <idryomov@gmail.com>
Wed, 24 Jun 2015 14:24:33 +0000 (17:24 +0300)
committerSasha Levin <sasha.levin@oracle.com>
Sun, 5 Jul 2015 14:12:55 +0000 (10:12 -0400)
commit3e3deab3acaf752c4de0daf0ec4cd8c47c3bab0e
tree8847e36743d9cc7b4914226494caf8ed34e1ea0d
parent5ac8dc120f4a11415a6619648ebabd8d7037c26d
rbd: use GFP_NOIO in rbd_obj_request_create()

[ Upstream commit 5a60e87603c4c533492c515b7f62578189b03c9c ]

rbd_obj_request_create() is called on the main I/O path, so we need to
use GFP_NOIO to make sure allocation doesn't blow back on us.  Not all
callers need this, but I'm still hardcoding the flag inside rather than
making it a parameter because a) this is going to stable, and b) those
callers shouldn't really use rbd_obj_request_create() and will be fixed
in the future.

More memory allocation fixes will follow.

Cc: stable@vger.kernel.org # 3.10+
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Reviewed-by: Alex Elder <elder@linaro.org>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
drivers/block/rbd.c