diff options
Diffstat (limited to 'ipc/shm.c')
| -rw-r--r-- | ipc/shm.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/ipc/shm.c b/ipc/shm.c index dff40c9f73c9..4fa6d8fee730 100644 --- a/ipc/shm.c +++ b/ipc/shm.c @@ -495,7 +495,8 @@ static int newseg(struct ipc_namespace *ns, struct ipc_params *params)  		if (shmflg & SHM_NORESERVE)  			acctflag = VM_NORESERVE;  		file = hugetlb_file_setup(name, 0, size, acctflag, -					&shp->mlock_user, HUGETLB_SHMFS_INODE); +				  &shp->mlock_user, HUGETLB_SHMFS_INODE, +				(shmflg >> SHM_HUGE_SHIFT) & SHM_HUGE_MASK);  	} else {  		/*  		 * Do not allow no accounting for OVERCOMMIT_NEVER, even |