diff options
-rw-r--r-- | fs/hugetlbfs/inode.c | 14 | ||||
-rw-r--r-- | include/linux/hugetlb.h | 6 | ||||
-rw-r--r-- | ipc/shm.c | 2 | ||||
-rw-r--r-- | mm/mmap.c | 6 |
4 files changed, 17 insertions, 11 deletions
diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c index 79408159a001..631329f3de63 100644 --- a/fs/hugetlbfs/inode.c +++ b/fs/hugetlbfs/inode.c | |||
@@ -935,8 +935,8 @@ static int can_do_hugetlb_shm(void) | |||
935 | return capable(CAP_IPC_LOCK) || in_group_p(sysctl_hugetlb_shm_group); | 935 | return capable(CAP_IPC_LOCK) || in_group_p(sysctl_hugetlb_shm_group); |
936 | } | 936 | } |
937 | 937 | ||
938 | struct file *hugetlb_file_setup(const char *name, size_t size, | 938 | struct file *hugetlb_file_setup(const char *name, unsigned long addr, |
939 | vm_flags_t acctflag, | 939 | size_t size, vm_flags_t acctflag, |
940 | struct user_struct **user, int creat_flags) | 940 | struct user_struct **user, int creat_flags) |
941 | { | 941 | { |
942 | int error = -ENOMEM; | 942 | int error = -ENOMEM; |
@@ -945,6 +945,8 @@ struct file *hugetlb_file_setup(const char *name, size_t size, | |||
945 | struct path path; | 945 | struct path path; |
946 | struct dentry *root; | 946 | struct dentry *root; |
947 | struct qstr quick_string; | 947 | struct qstr quick_string; |
948 | struct hstate *hstate; | ||
949 | unsigned long num_pages; | ||
948 | 950 | ||
949 | *user = NULL; | 951 | *user = NULL; |
950 | if (!hugetlbfs_vfsmount) | 952 | if (!hugetlbfs_vfsmount) |
@@ -978,10 +980,12 @@ struct file *hugetlb_file_setup(const char *name, size_t size, | |||
978 | if (!inode) | 980 | if (!inode) |
979 | goto out_dentry; | 981 | goto out_dentry; |
980 | 982 | ||
983 | hstate = hstate_inode(inode); | ||
984 | size += addr & ~huge_page_mask(hstate); | ||
985 | num_pages = ALIGN(size, huge_page_size(hstate)) >> | ||
986 | huge_page_shift(hstate); | ||
981 | error = -ENOMEM; | 987 | error = -ENOMEM; |
982 | if (hugetlb_reserve_pages(inode, 0, | 988 | if (hugetlb_reserve_pages(inode, 0, num_pages, NULL, acctflag)) |
983 | size >> huge_page_shift(hstate_inode(inode)), NULL, | ||
984 | acctflag)) | ||
985 | goto out_inode; | 989 | goto out_inode; |
986 | 990 | ||
987 | d_instantiate(path.dentry, inode); | 991 | d_instantiate(path.dentry, inode); |
diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h index cf0181738c9e..000837e126e6 100644 --- a/include/linux/hugetlb.h +++ b/include/linux/hugetlb.h | |||
@@ -152,7 +152,8 @@ static inline struct hugetlbfs_sb_info *HUGETLBFS_SB(struct super_block *sb) | |||
152 | 152 | ||
153 | extern const struct file_operations hugetlbfs_file_operations; | 153 | extern const struct file_operations hugetlbfs_file_operations; |
154 | extern const struct vm_operations_struct hugetlb_vm_ops; | 154 | extern const struct vm_operations_struct hugetlb_vm_ops; |
155 | struct file *hugetlb_file_setup(const char *name, size_t size, vm_flags_t acct, | 155 | struct file *hugetlb_file_setup(const char *name, unsigned long addr, |
156 | size_t size, vm_flags_t acct, | ||
156 | struct user_struct **user, int creat_flags); | 157 | struct user_struct **user, int creat_flags); |
157 | 158 | ||
158 | static inline int is_file_hugepages(struct file *file) | 159 | static inline int is_file_hugepages(struct file *file) |
@@ -168,7 +169,8 @@ static inline int is_file_hugepages(struct file *file) | |||
168 | #else /* !CONFIG_HUGETLBFS */ | 169 | #else /* !CONFIG_HUGETLBFS */ |
169 | 170 | ||
170 | #define is_file_hugepages(file) 0 | 171 | #define is_file_hugepages(file) 0 |
171 | static inline struct file *hugetlb_file_setup(const char *name, size_t size, | 172 | static inline struct file * |
173 | hugetlb_file_setup(const char *name, unsigned long addr, size_t size, | ||
172 | vm_flags_t acctflag, struct user_struct **user, int creat_flags) | 174 | vm_flags_t acctflag, struct user_struct **user, int creat_flags) |
173 | { | 175 | { |
174 | return ERR_PTR(-ENOSYS); | 176 | return ERR_PTR(-ENOSYS); |
@@ -482,7 +482,7 @@ static int newseg(struct ipc_namespace *ns, struct ipc_params *params) | |||
482 | /* hugetlb_file_setup applies strict accounting */ | 482 | /* hugetlb_file_setup applies strict accounting */ |
483 | if (shmflg & SHM_NORESERVE) | 483 | if (shmflg & SHM_NORESERVE) |
484 | acctflag = VM_NORESERVE; | 484 | acctflag = VM_NORESERVE; |
485 | file = hugetlb_file_setup(name, size, acctflag, | 485 | file = hugetlb_file_setup(name, 0, size, acctflag, |
486 | &shp->mlock_user, HUGETLB_SHMFS_INODE); | 486 | &shp->mlock_user, HUGETLB_SHMFS_INODE); |
487 | } else { | 487 | } else { |
488 | /* | 488 | /* |
@@ -1099,9 +1099,9 @@ SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len, | |||
1099 | * A dummy user value is used because we are not locking | 1099 | * A dummy user value is used because we are not locking |
1100 | * memory so no accounting is necessary | 1100 | * memory so no accounting is necessary |
1101 | */ | 1101 | */ |
1102 | len = ALIGN(len, huge_page_size(&default_hstate)); | 1102 | file = hugetlb_file_setup(HUGETLB_ANON_FILE, addr, len, |
1103 | file = hugetlb_file_setup(HUGETLB_ANON_FILE, len, VM_NORESERVE, | 1103 | VM_NORESERVE, &user, |
1104 | &user, HUGETLB_ANONHUGE_INODE); | 1104 | HUGETLB_ANONHUGE_INODE); |
1105 | if (IS_ERR(file)) | 1105 | if (IS_ERR(file)) |
1106 | return PTR_ERR(file); | 1106 | return PTR_ERR(file); |
1107 | } | 1107 | } |