s390/mm: remove __GFP_HIGHMEM masking
Remove unnecessary __GFP_HIGHMEM masking, which was introduced with
commit 6326c26c15
("s390: convert various pgalloc functions to use
ptdescs"). Also remove a whitespace change which was introduced with
the same commit.
Link: https://lore.kernel.org/all/CAOzc2px-SFSnmjcPriiB3cm1fNj3+YC8S0VSp4t1QvDR0f4E2A@mail.gmail.com
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
This commit is contained in:
parent
19ba9ead8a
commit
7bc8b8eb2b
@ -488,11 +488,10 @@ static unsigned long *base_crst_alloc(unsigned long val)
|
||||
unsigned long *table;
|
||||
struct ptdesc *ptdesc;
|
||||
|
||||
ptdesc = pagetable_alloc(GFP_KERNEL & ~__GFP_HIGHMEM, CRST_ALLOC_ORDER);
|
||||
ptdesc = pagetable_alloc(GFP_KERNEL, CRST_ALLOC_ORDER);
|
||||
if (!ptdesc)
|
||||
return NULL;
|
||||
table = ptdesc_address(ptdesc);
|
||||
|
||||
crst_table_init(table, val);
|
||||
return table;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user