Allow retry when allocating memory.

Signed-off-by: David Kershner <david.kersh...@unisys.com>
Reviewed-by: Tim Sell <timothy.s...@unisys.com>
---
 drivers/staging/unisys/visorbus/visorchipset.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/unisys/visorbus/visorchipset.c 
b/drivers/staging/unisys/visorbus/visorchipset.c
index 6758369..6e59d8d 100644
--- a/drivers/staging/unisys/visorbus/visorchipset.c
+++ b/drivers/staging/unisys/visorbus/visorchipset.c
@@ -312,7 +312,7 @@ parser_string_get(struct parser_context *ctx)
                }
        if (value_length < 0)   /* '\0' was not included in the length */
                value_length = nscan;
-       value = kmalloc(value_length + 1, GFP_KERNEL | __GFP_NORETRY);
+       value = kmalloc(value_length + 1, GFP_KERNEL);
        if (!value)
                return NULL;
        if (value_length > 0)
@@ -1033,7 +1033,7 @@ parahotplug_request_create(struct controlvm_message *msg)
 {
        struct parahotplug_request *req;
 
-       req = kmalloc(sizeof(*req), GFP_KERNEL | __GFP_NORETRY);
+       req = kmalloc(sizeof(*req), GFP_KERNEL);
        if (!req)
                return NULL;
 
@@ -1571,7 +1571,7 @@ parser_init_byte_stream(u64 addr, u32 bytes, bool local, 
bool *retry)
                *retry = true;
                return NULL;
        }
-       ctx = kzalloc(allocbytes, GFP_KERNEL | __GFP_NORETRY);
+       ctx = kzalloc(allocbytes, GFP_KERNEL);
        if (!ctx) {
                *retry = true;
                return NULL;
-- 
git-series 0.9.1
_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to