These allocations are performed during initialization,
so they don't need GFP_NOFS.
Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        page_pools.epp_pools =
                kvzalloc(page_pools.epp_max_pools *
                                sizeof(*page_pools.epp_pools),
-                               GFP_NOFS);
+                               GFP_KERNEL);
 }
 
 static inline void enc_pools_free(void)
 
                        goto out;
        }
 
-       env = kzalloc(sizeof(*env), GFP_NOFS);
+       env = kzalloc(sizeof(*env), GFP_KERNEL);
        if (!env) {
                rc = -ENOMEM;
                goto out_srv_fini;
        }
 
        /* Alloc reply state structure for this one */
-       rs = kvzalloc(svc->srv_max_reply_size, GFP_NOFS);
+       rs = kvzalloc(svc->srv_max_reply_size, GFP_KERNEL);
        if (!rs) {
                rc = -ENOMEM;
                goto out_srv_fini;