Alloc rpool with strict memory requirements

Signed-off-by: Michal Mielewczyk <michal.mielewczyk@intel.com>
This commit is contained in:
Michal Mielewczyk
2020-03-25 17:39:37 -04:00
parent d7acbac253
commit 8c57dc51c0
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ void *_cas_alloc_page_rpool(void *allocator_ctx, int cpu)
{
struct page *page;
page = alloc_page(GFP_KERNEL);
page = alloc_page(GFP_NOIO | __GFP_NORETRY);
if (!page)
return NULL;