]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/shmem_fs.h
thp: introduce CONFIG_TRANSPARENT_HUGE_PAGECACHE
[mirror_ubuntu-bionic-kernel.git] / include / linux / shmem_fs.h
CommitLineData
1da177e4
LT
1#ifndef __SHMEM_FS_H
2#define __SHMEM_FS_H
3
40e041a2 4#include <linux/file.h>
1da177e4
LT
5#include <linux/swap.h>
6#include <linux/mempolicy.h>
d9d90e5e 7#include <linux/pagemap.h>
7e496299 8#include <linux/percpu_counter.h>
38f38657 9#include <linux/xattr.h>
1da177e4
LT
10
11/* inode in-kernel data */
12
1da177e4
LT
13struct shmem_inode_info {
14 spinlock_t lock;
40e041a2 15 unsigned int seals; /* shmem seals */
1da177e4
LT
16 unsigned long flags;
17 unsigned long alloced; /* data pages alloced to file */
3ed47db3 18 unsigned long swapped; /* subtotal assigned to swap */
69f07ec9 19 struct shared_policy policy; /* NUMA memory alloc policy */
1da177e4 20 struct list_head swaplist; /* chain of maybes on swap */
38f38657 21 struct simple_xattrs xattrs; /* list of xattrs */
1da177e4
LT
22 struct inode vfs_inode;
23};
24
25struct shmem_sb_info {
26 unsigned long max_blocks; /* How many blocks are allowed */
7e496299 27 struct percpu_counter used_blocks; /* How many are allocated */
1da177e4
LT
28 unsigned long max_inodes; /* How many inodes are allowed */
29 unsigned long free_inodes; /* How many are left for allocation */
680d794b 30 spinlock_t stat_lock; /* Serialize shmem_sb_info changes */
5a6e75f8
KS
31 umode_t mode; /* Mount mode for root directory */
32 unsigned char huge; /* Whether to try for hugepages */
8751e039
EB
33 kuid_t uid; /* Mount uid for root directory */
34 kgid_t gid; /* Mount gid for root directory */
71fe804b 35 struct mempolicy *mpol; /* default memory policy for mappings */
1da177e4
LT
36};
37
38static inline struct shmem_inode_info *SHMEM_I(struct inode *inode)
39{
40 return container_of(inode, struct shmem_inode_info, vfs_inode);
41}
42
072441e2
HD
43/*
44 * Functions in mm/shmem.c called directly from elsewhere:
45 */
41ffe5d5 46extern int shmem_init(void);
2b2af54a 47extern int shmem_fill_super(struct super_block *sb, void *data, int silent);
072441e2
HD
48extern struct file *shmem_file_setup(const char *name,
49 loff_t size, unsigned long flags);
c7277090
EP
50extern struct file *shmem_kernel_file_setup(const char *name, loff_t size,
51 unsigned long flags);
072441e2 52extern int shmem_zero_setup(struct vm_area_struct *);
c01d5b30
HD
53extern unsigned long shmem_get_unmapped_area(struct file *, unsigned long addr,
54 unsigned long len, unsigned long pgoff, unsigned long flags);
072441e2 55extern int shmem_lock(struct file *file, int lock, struct user_struct *user);
0cd6144a 56extern bool shmem_mapping(struct address_space *mapping);
24513264 57extern void shmem_unlock_mapping(struct address_space *mapping);
d9d90e5e
HD
58extern struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
59 pgoff_t index, gfp_t gfp_mask);
94c1e62d 60extern void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end);
072441e2 61extern int shmem_unuse(swp_entry_t entry, struct page *page);
2b2af54a 62
6a15a370 63extern unsigned long shmem_swap_usage(struct vm_area_struct *vma);
48131e03
VB
64extern unsigned long shmem_partial_swap_usage(struct address_space *mapping,
65 pgoff_t start, pgoff_t end);
6a15a370 66
f3f0e1d2
KS
67/* Flag allocation requirements to shmem_getpage */
68enum sgp_type {
69 SGP_READ, /* don't exceed i_size, don't allocate page */
70 SGP_CACHE, /* don't exceed i_size, may allocate page */
71 SGP_NOHUGE, /* like SGP_CACHE, but no huge pages */
72 SGP_HUGE, /* like SGP_CACHE, huge pages preferred */
73 SGP_WRITE, /* may exceed i_size, may allocate !Uptodate page */
74 SGP_FALLOC, /* like SGP_WRITE, but make existing page Uptodate */
75};
76
77extern int shmem_getpage(struct inode *inode, pgoff_t index,
78 struct page **pagep, enum sgp_type sgp);
79
d9d90e5e
HD
80static inline struct page *shmem_read_mapping_page(
81 struct address_space *mapping, pgoff_t index)
82{
83 return shmem_read_mapping_page_gfp(mapping, index,
84 mapping_gfp_mask(mapping));
85}
86
f3f0e1d2
KS
87static inline bool shmem_file(struct file *file)
88{
89 if (!IS_ENABLED(CONFIG_SHMEM))
90 return false;
91 if (!file || !file->f_mapping)
92 return false;
93 return shmem_mapping(file->f_mapping);
94}
95
800d8c63
KS
96extern bool shmem_charge(struct inode *inode, long pages);
97extern void shmem_uncharge(struct inode *inode, long pages);
98
40e041a2
DH
99#ifdef CONFIG_TMPFS
100
101extern int shmem_add_seals(struct file *file, unsigned int seals);
102extern int shmem_get_seals(struct file *file);
103extern long shmem_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
104
105#else
106
107static inline long shmem_fcntl(struct file *f, unsigned int c, unsigned long a)
108{
109 return -EINVAL;
110}
111
112#endif
113
e496cf3d
KS
114#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
115extern bool shmem_huge_enabled(struct vm_area_struct *vma);
116#else
117static inline bool shmem_huge_enabled(struct vm_area_struct *vma)
118{
119 return false;
120}
121#endif
122
1da177e4 123#endif