#include "super-io.h"
 
 #include <linux/lz4.h>
+#include <linux/sched/mm.h>
 #include <linux/zlib.h>
 #include <linux/zstd.h>
 
        struct bbuf ret;
        struct bio_vec bv;
        struct bvec_iter iter;
-       unsigned nr_pages = 0;
+       unsigned nr_pages = 0, flags;
        struct page *stack_pages[16];
        struct page **pages = NULL;
        void *data;
        __bio_for_each_segment(bv, bio, iter, start)
                pages[nr_pages++] = bv.bv_page;
 
+       flags = memalloc_nofs_save();
        data = vmap(pages, nr_pages, VM_MAP, PAGE_KERNEL);
+       memalloc_nofs_restore(flags);
+
        if (pages != stack_pages)
                kfree(pages);