Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 83d93f22 authored by Jeff Layton's avatar Jeff Layton Committed by Trond Myklebust
Browse files

NFS: Use GFP_HIGHUSER for page allocation in nfs_symlink()



nfs_symlink() allocates a GFP_KERNEL page for the pagecache. Most
pagecache pages are allocated using GFP_HIGHUSER, and there's no reason
not to do that in nfs_symlink() as well.

Signed-off-by: default avatarJeff Layton <jlayton@redhat.com>
parent a0356862
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1534,7 +1534,7 @@ static int nfs_symlink(struct inode *dir, struct dentry *dentry, const char *sym


	lock_kernel();
	lock_kernel();


	page = alloc_page(GFP_KERNEL);
	page = alloc_page(GFP_HIGHUSER);
	if (!page) {
	if (!page) {
		unlock_kernel();
		unlock_kernel();
		return -ENOMEM;
		return -ENOMEM;