nlm: Ensure callback code also checks that the files match
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / shmem_fs.h
CommitLineData
1da177e4
LT
1#ifndef __SHMEM_FS_H
2#define __SHMEM_FS_H
3
4#include <linux/swap.h>
5#include <linux/mempolicy.h>
d9d90e5e 6#include <linux/pagemap.h>
7e496299 7#include <linux/percpu_counter.h>
38f38657 8#include <linux/xattr.h>
1da177e4
LT
9
10/* inode in-kernel data */
11
1da177e4
LT
12struct shmem_inode_info {
13 spinlock_t lock;
14 unsigned long flags;
15 unsigned long alloced; /* data pages alloced to file */
b09e0fa4 16 union {
69f07ec9
HD
17 unsigned long swapped; /* subtotal assigned to swap */
18 char *symlink; /* unswappable short symlink */
b09e0fa4 19 };
69f07ec9 20 struct shared_policy policy; /* NUMA memory alloc policy */
1da177e4 21 struct list_head swaplist; /* chain of maybes on swap */
38f38657 22 struct simple_xattrs xattrs; /* list of xattrs */
1da177e4
LT
23 struct inode vfs_inode;
24};
25
26struct shmem_sb_info {
27 unsigned long max_blocks; /* How many blocks are allowed */
7e496299 28 struct percpu_counter used_blocks; /* How many are allocated */
1da177e4
LT
29 unsigned long max_inodes; /* How many inodes are allowed */
30 unsigned long free_inodes; /* How many are left for allocation */
680d794b 31 spinlock_t stat_lock; /* Serialize shmem_sb_info changes */
8751e039
EB
32 kuid_t uid; /* Mount uid for root directory */
33 kgid_t gid; /* Mount gid for root directory */
09208d15 34 umode_t mode; /* Mount mode 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);
50extern int shmem_zero_setup(struct vm_area_struct *);
51extern int shmem_lock(struct file *file, int lock, struct user_struct *user);
24513264 52extern void shmem_unlock_mapping(struct address_space *mapping);
d9d90e5e
HD
53extern struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
54 pgoff_t index, gfp_t gfp_mask);
94c1e62d 55extern void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end);
072441e2 56extern int shmem_unuse(swp_entry_t entry, struct page *page);
2b2af54a 57
d9d90e5e
HD
58static inline struct page *shmem_read_mapping_page(
59 struct address_space *mapping, pgoff_t index)
60{
61 return shmem_read_mapping_page_gfp(mapping, index,
62 mapping_gfp_mask(mapping));
63}
64
1da177e4 65#endif