X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2Fpalacios-mm.c;h=a62b55a6df151897828d5b49faadf8e228a237a7;hb=4f0062ca2730a58b9f9cca67303c47c573cbcf76;hp=1d750db6da046c47230b00bc5198a570da93ee51;hpb=06d03d7a409436fc010ece4b0473364d5e269884;p=palacios.git diff --git a/linux_module/palacios-mm.c b/linux_module/palacios-mm.c index 1d750db..a62b55a 100644 --- a/linux_module/palacios-mm.c +++ b/linux_module/palacios-mm.c @@ -103,7 +103,7 @@ uintptr_t alloc_palacios_pgs(u64 num_pages, u32 alignment) { struct page * pgs = NULL; int order = get_order(num_pages * PAGE_SIZE); - pgs = alloc_pages(GFP_KERNEL, order); + pgs = alloc_pages(GFP_DMA, order); WARN(!pgs, "Could not allocate pages\n");