]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - include/linux/shmem_fs.h
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 503
[thirdparty/kernel/stable.git] / include / linux / shmem_fs.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef __SHMEM_FS_H
3#define __SHMEM_FS_H
4
40e041a2 5#include <linux/file.h>
1da177e4
LT
6#include <linux/swap.h>
7#include <linux/mempolicy.h>
d9d90e5e 8#include <linux/pagemap.h>
7e496299 9#include <linux/percpu_counter.h>
38f38657 10#include <linux/xattr.h>
1da177e4
LT
11
12/* inode in-kernel data */
13
1da177e4
LT
14struct shmem_inode_info {
15 spinlock_t lock;
40e041a2 16 unsigned int seals; /* shmem seals */
1da177e4
LT
17 unsigned long flags;
18 unsigned long alloced; /* data pages alloced to file */
3ed47db3 19 unsigned long swapped; /* subtotal assigned to swap */
779750d2 20 struct list_head shrinklist; /* shrinkable hpage inodes */
1da177e4 21 struct list_head swaplist; /* chain of maybes on swap */
779750d2 22 struct shared_policy policy; /* NUMA memory alloc policy */
38f38657 23 struct simple_xattrs xattrs; /* list of xattrs */
af53d3e9 24 atomic_t stop_eviction; /* hold when working on inode */
1da177e4
LT
25 struct inode vfs_inode;
26};
27
28struct shmem_sb_info {
29 unsigned long max_blocks; /* How many blocks are allowed */
7e496299 30 struct percpu_counter used_blocks; /* How many are allocated */
1da177e4
LT
31 unsigned long max_inodes; /* How many inodes are allowed */
32 unsigned long free_inodes; /* How many are left for allocation */
680d794b 33 spinlock_t stat_lock; /* Serialize shmem_sb_info changes */
5a6e75f8
KS
34 umode_t mode; /* Mount mode for root directory */
35 unsigned char huge; /* Whether to try for hugepages */
8751e039
EB
36 kuid_t uid; /* Mount uid for root directory */
37 kgid_t gid; /* Mount gid for root directory */
71fe804b 38 struct mempolicy *mpol; /* default memory policy for mappings */
779750d2
KS
39 spinlock_t shrinklist_lock; /* Protects shrinklist */
40 struct list_head shrinklist; /* List of shinkable inodes */
41 unsigned long shrinklist_len; /* Length of shrinklist */
1da177e4
LT
42};
43
44static inline struct shmem_inode_info *SHMEM_I(struct inode *inode)
45{
46 return container_of(inode, struct shmem_inode_info, vfs_inode);
47}
48
072441e2
HD
49/*
50 * Functions in mm/shmem.c called directly from elsewhere:
51 */
41ffe5d5 52extern int shmem_init(void);
2b2af54a 53extern int shmem_fill_super(struct super_block *sb, void *data, int silent);
072441e2
HD
54extern struct file *shmem_file_setup(const char *name,
55 loff_t size, unsigned long flags);
c7277090
EP
56extern struct file *shmem_kernel_file_setup(const char *name, loff_t size,
57 unsigned long flags);
703321b6
MA
58extern struct file *shmem_file_setup_with_mnt(struct vfsmount *mnt,
59 const char *name, loff_t size, unsigned long flags);
072441e2 60extern int shmem_zero_setup(struct vm_area_struct *);
c01d5b30
HD
61extern unsigned long shmem_get_unmapped_area(struct file *, unsigned long addr,
62 unsigned long len, unsigned long pgoff, unsigned long flags);
072441e2 63extern int shmem_lock(struct file *file, int lock, struct user_struct *user);
3a4f8a0b 64#ifdef CONFIG_SHMEM
0cd6144a 65extern bool shmem_mapping(struct address_space *mapping);
3a4f8a0b
HD
66#else
67static inline bool shmem_mapping(struct address_space *mapping)
68{
69 return false;
70}
71#endif /* CONFIG_SHMEM */
24513264 72extern void shmem_unlock_mapping(struct address_space *mapping);
d9d90e5e
HD
73extern struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
74 pgoff_t index, gfp_t gfp_mask);
94c1e62d 75extern void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end);
b56a2d8a
VRP
76extern int shmem_unuse(unsigned int type, bool frontswap,
77 unsigned long *fs_pages_to_unuse);
2b2af54a 78
6a15a370 79extern unsigned long shmem_swap_usage(struct vm_area_struct *vma);
48131e03
VB
80extern unsigned long shmem_partial_swap_usage(struct address_space *mapping,
81 pgoff_t start, pgoff_t end);
6a15a370 82
f3f0e1d2
KS
83/* Flag allocation requirements to shmem_getpage */
84enum sgp_type {
85 SGP_READ, /* don't exceed i_size, don't allocate page */
86 SGP_CACHE, /* don't exceed i_size, may allocate page */
87 SGP_NOHUGE, /* like SGP_CACHE, but no huge pages */
88 SGP_HUGE, /* like SGP_CACHE, huge pages preferred */
89 SGP_WRITE, /* may exceed i_size, may allocate !Uptodate page */
90 SGP_FALLOC, /* like SGP_WRITE, but make existing page Uptodate */
91};
92
93extern int shmem_getpage(struct inode *inode, pgoff_t index,
94 struct page **pagep, enum sgp_type sgp);
95
d9d90e5e
HD
96static inline struct page *shmem_read_mapping_page(
97 struct address_space *mapping, pgoff_t index)
98{
99 return shmem_read_mapping_page_gfp(mapping, index,
100 mapping_gfp_mask(mapping));
101}
102
f3f0e1d2
KS
103static inline bool shmem_file(struct file *file)
104{
105 if (!IS_ENABLED(CONFIG_SHMEM))
106 return false;
107 if (!file || !file->f_mapping)
108 return false;
109 return shmem_mapping(file->f_mapping);
110}
111
800d8c63
KS
112extern bool shmem_charge(struct inode *inode, long pages);
113extern void shmem_uncharge(struct inode *inode, long pages);
114
e496cf3d
KS
115#ifdef CONFIG_TRANSPARENT_HUGE_PAGECACHE
116extern bool shmem_huge_enabled(struct vm_area_struct *vma);
117#else
118static inline bool shmem_huge_enabled(struct vm_area_struct *vma)
119{
120 return false;
121}
122#endif
123
4c27fe4c
MR
124#ifdef CONFIG_SHMEM
125extern int shmem_mcopy_atomic_pte(struct mm_struct *dst_mm, pmd_t *dst_pmd,
126 struct vm_area_struct *dst_vma,
127 unsigned long dst_addr,
128 unsigned long src_addr,
129 struct page **pagep);
8d103963
MR
130extern int shmem_mfill_zeropage_pte(struct mm_struct *dst_mm,
131 pmd_t *dst_pmd,
132 struct vm_area_struct *dst_vma,
133 unsigned long dst_addr);
4c27fe4c
MR
134#else
135#define shmem_mcopy_atomic_pte(dst_mm, dst_pte, dst_vma, dst_addr, \
136 src_addr, pagep) ({ BUG(); 0; })
8d103963
MR
137#define shmem_mfill_zeropage_pte(dst_mm, dst_pmd, dst_vma, \
138 dst_addr) ({ BUG(); 0; })
4c27fe4c
MR
139#endif
140
1da177e4 141#endif