Merge tag 'trace-fixes-v4.5-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.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 */
8751e039
EB
31 kuid_t uid; /* Mount uid for root directory */
32 kgid_t gid; /* Mount gid for root directory */
09208d15 33 umode_t mode; /* Mount mode for root directory */
71fe804b 34 struct mempolicy *mpol; /* default memory policy for mappings */
1da177e4
LT
35};
36
37static inline struct shmem_inode_info *SHMEM_I(struct inode *inode)
38{
39 return container_of(inode, struct shmem_inode_info, vfs_inode);
40}
41
072441e2
HD
42/*
43 * Functions in mm/shmem.c called directly from elsewhere:
44 */
41ffe5d5 45extern int shmem_init(void);
2b2af54a 46extern int shmem_fill_super(struct super_block *sb, void *data, int silent);
072441e2
HD
47extern struct file *shmem_file_setup(const char *name,
48 loff_t size, unsigned long flags);
c7277090
EP
49extern struct file *shmem_kernel_file_setup(const char *name, loff_t size,
50 unsigned long flags);
072441e2
HD
51extern int shmem_zero_setup(struct vm_area_struct *);
52extern int shmem_lock(struct file *file, int lock, struct user_struct *user);
0cd6144a 53extern bool shmem_mapping(struct address_space *mapping);
24513264 54extern void shmem_unlock_mapping(struct address_space *mapping);
d9d90e5e
HD
55extern struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
56 pgoff_t index, gfp_t gfp_mask);
94c1e62d 57extern void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end);
072441e2 58extern int shmem_unuse(swp_entry_t entry, struct page *page);
2b2af54a 59
6a15a370 60extern unsigned long shmem_swap_usage(struct vm_area_struct *vma);
48131e03
VB
61extern unsigned long shmem_partial_swap_usage(struct address_space *mapping,
62 pgoff_t start, pgoff_t end);
6a15a370 63
d9d90e5e
HD
64static inline struct page *shmem_read_mapping_page(
65 struct address_space *mapping, pgoff_t index)
66{
67 return shmem_read_mapping_page_gfp(mapping, index,
68 mapping_gfp_mask(mapping));
69}
70
40e041a2
DH
71#ifdef CONFIG_TMPFS
72
73extern int shmem_add_seals(struct file *file, unsigned int seals);
74extern int shmem_get_seals(struct file *file);
75extern long shmem_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
76
77#else
78
79static inline long shmem_fcntl(struct file *f, unsigned int c, unsigned long a)
80{
81 return -EINVAL;
82}
83
84#endif
85
1da177e4 86#endif
This page took 1.224231 seconds and 5 git commands to generate.