diff options
Diffstat (limited to 'include/linux/hugetlb.h')
| -rw-r--r-- | include/linux/hugetlb.h | 12 | 
1 files changed, 10 insertions, 2 deletions
diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h index e7f0fabfa1c..f6505ad8665 100644 --- a/include/linux/hugetlb.h +++ b/include/linux/hugetlb.h @@ -112,6 +112,14 @@ static inline void hugetlb_report_meminfo(struct seq_file *m)  #endif /* !CONFIG_HUGETLB_PAGE */ +enum { +	/* +	 * The file will be used as an shm file so shmfs accounting rules +	 * apply +	 */ +	HUGETLB_SHMFS_INODE     = 1, +}; +  #ifdef CONFIG_HUGETLBFS  struct hugetlbfs_config {  	uid_t   uid; @@ -150,7 +158,7 @@ static inline struct hugetlbfs_sb_info *HUGETLBFS_SB(struct super_block *sb)  extern const struct file_operations hugetlbfs_file_operations;  extern struct vm_operations_struct hugetlb_vm_ops;  struct file *hugetlb_file_setup(const char *name, size_t size, int acct, -						struct user_struct **user); +				struct user_struct **user, int creat_flags);  int hugetlb_get_quota(struct address_space *mapping, long delta);  void hugetlb_put_quota(struct address_space *mapping, long delta); @@ -172,7 +180,7 @@ static inline void set_file_hugepages(struct file *file)  #define is_file_hugepages(file)			0  #define set_file_hugepages(file)		BUG() -#define hugetlb_file_setup(name,size,acct,user)	ERR_PTR(-ENOSYS) +#define hugetlb_file_setup(name,size,acct,user,creat)	ERR_PTR(-ENOSYS)  #endif /* !CONFIG_HUGETLBFS */  |