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