]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/shmem_fs.h
UBUNTU: SAUCE: Import aufs driver
[mirror_ubuntu-artful-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 */
779750d2 19 struct list_head shrinklist; /* shrinkable hpage inodes */
1da177e4 20 struct list_head swaplist; /* chain of maybes on swap */
779750d2 21 struct shared_policy policy; /* NUMA memory alloc policy */
38f38657 22 struct simple_xattrs xattrs; /* list of xattrs */
1da177e4
LT
23 struct inode vfs_inode;
24};
25
26struct shmem_sb_info {
fe9d3fa6
SF
27 struct mutex idr_lock;
28 bool idr_nouse;
29 struct idr idr; /* manages inode-number */
1da177e4 30 unsigned long max_blocks; /* How many blocks are allowed */
7e496299 31 struct percpu_counter used_blocks; /* How many are allocated */
fe9d3fa6
SF
32 int max_inodes; /* How many inodes are allowed */
33 int free_inodes; /* How many are left for allocation */
680d794b 34 spinlock_t stat_lock; /* Serialize shmem_sb_info changes */
5a6e75f8
KS
35 umode_t mode; /* Mount mode for root directory */
36 unsigned char huge; /* Whether to try for hugepages */
8751e039
EB
37 kuid_t uid; /* Mount uid for root directory */
38 kgid_t gid; /* Mount gid for root directory */
71fe804b 39 struct mempolicy *mpol; /* default memory policy for mappings */
779750d2
KS
40 spinlock_t shrinklist_lock; /* Protects shrinklist */
41 struct list_head shrinklist; /* List of shinkable inodes */
42 unsigned long shrinklist_len; /* Length of shrinklist */
1da177e4
LT
43};
44
45static inline struct shmem_inode_info *SHMEM_I(struct inode *inode)
46{
47 return container_of(inode, struct shmem_inode_info, vfs_inode);
48}
49
072441e2
HD
50/*
51 * Functions in mm/shmem.c called directly from elsewhere:
52 */
41ffe5d5 53extern int shmem_init(void);
2b2af54a 54extern int shmem_fill_super(struct super_block *sb, void *data, int silent);
072441e2
HD
55extern struct file *shmem_file_setup(const char *name,
56 loff_t size, unsigned long flags);
c7277090
EP
57extern struct file *shmem_kernel_file_setup(const char *name, loff_t size,
58 unsigned long flags);
072441e2 59extern int shmem_zero_setup(struct vm_area_struct *);
c01d5b30
HD
60extern unsigned long shmem_get_unmapped_area(struct file *, unsigned long addr,
61 unsigned long len, unsigned long pgoff, unsigned long flags);
072441e2 62extern int shmem_lock(struct file *file, int lock, struct user_struct *user);
3a4f8a0b 63#ifdef CONFIG_SHMEM
0cd6144a 64extern bool shmem_mapping(struct address_space *mapping);
3a4f8a0b
HD
65#else
66static inline bool shmem_mapping(struct address_space *mapping)
67{
68 return false;
69}
70#endif /* CONFIG_SHMEM */
24513264 71extern void shmem_unlock_mapping(struct address_space *mapping);
d9d90e5e
HD
72extern struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
73 pgoff_t index, gfp_t gfp_mask);
94c1e62d 74extern void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end);
072441e2 75extern int shmem_unuse(swp_entry_t entry, struct page *page);
2b2af54a 76
6a15a370 77extern unsigned long shmem_swap_usage(struct vm_area_struct *vma);
48131e03
VB
78extern unsigned long shmem_partial_swap_usage(struct address_space *mapping,
79 pgoff_t start, pgoff_t end);
6a15a370 80
f3f0e1d2
KS
81/* Flag allocation requirements to shmem_getpage */
82enum sgp_type {
83 SGP_READ, /* don't exceed i_size, don't allocate page */
84 SGP_CACHE, /* don't exceed i_size, may allocate page */
85 SGP_NOHUGE, /* like SGP_CACHE, but no huge pages */
86 SGP_HUGE, /* like SGP_CACHE, huge pages preferred */
87 SGP_WRITE, /* may exceed i_size, may allocate !Uptodate page */
88 SGP_FALLOC, /* like SGP_WRITE, but make existing page Uptodate */
89};
90
91extern int shmem_getpage(struct inode *inode, pgoff_t index,
92 struct page **pagep, enum sgp_type sgp);
93
d9d90e5e
HD
94static inline struct page *shmem_read_mapping_page(
95 struct address_space *mapping, pgoff_t index)
96{
97 return shmem_read_mapping_page_gfp(mapping, index,
98 mapping_gfp_mask(mapping));
99}
100
f3f0e1d2
KS
101static inline bool shmem_file(struct file *file)
102{
103 if (!IS_ENABLED(CONFIG_SHMEM))
104 return false;
105 if (!file || !file->f_mapping)
106 return false;
107 return shmem_mapping(file->f_mapping);
108}
109
800d8c63
KS
110extern bool shmem_charge(struct inode *inode, long pages);
111extern void shmem_uncharge(struct inode *inode, long pages);
112
40e041a2
DH
113#ifdef CONFIG_TMPFS
114
115extern int shmem_add_seals(struct file *file, unsigned int seals);
116extern int shmem_get_seals(struct file *file);
117extern long shmem_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
118
119#else
120
121static inline long shmem_fcntl(struct file *f, unsigned int c, unsigned long a)
122{
123 return -EINVAL;
124}
125
126#endif
127
e496cf3d
KS
128#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
129extern bool shmem_huge_enabled(struct vm_area_struct *vma);
130#else
131static inline bool shmem_huge_enabled(struct vm_area_struct *vma)
132{
133 return false;
134}
135#endif
136
4c27fe4c
MR
137#ifdef CONFIG_SHMEM
138extern int shmem_mcopy_atomic_pte(struct mm_struct *dst_mm, pmd_t *dst_pmd,
139 struct vm_area_struct *dst_vma,
140 unsigned long dst_addr,
141 unsigned long src_addr,
142 struct page **pagep);
143#else
144#define shmem_mcopy_atomic_pte(dst_mm, dst_pte, dst_vma, dst_addr, \
145 src_addr, pagep) ({ BUG(); 0; })
146#endif
147
1da177e4 148#endif