Blame view

include/linux/shmem_fs.h 2.16 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
  #ifndef __SHMEM_FS_H
  #define __SHMEM_FS_H
  
  #include <linux/swap.h>
  #include <linux/mempolicy.h>
d9d90e5eb   Hugh Dickins   tmpfs: add shmem_...
6
  #include <linux/pagemap.h>
7e496299d   Tim Chen   tmpfs: make tmpfs...
7
  #include <linux/percpu_counter.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
9
  
  /* inode in-kernel data */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
11
12
13
  struct shmem_inode_info {
  	spinlock_t		lock;
  	unsigned long		flags;
  	unsigned long		alloced;	/* data pages alloced to file */
b09e0fa4b   Eric Paris   tmpfs: implement ...
14
  	union {
69f07ec93   Hugh Dickins   tmpfs: use kmemdu...
15
16
  		unsigned long	swapped;	/* subtotal assigned to swap */
  		char		*symlink;	/* unswappable short symlink */
b09e0fa4b   Eric Paris   tmpfs: implement ...
17
  	};
69f07ec93   Hugh Dickins   tmpfs: use kmemdu...
18
  	struct shared_policy	policy;		/* NUMA memory alloc policy */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19
  	struct list_head	swaplist;	/* chain of maybes on swap */
b09e0fa4b   Eric Paris   tmpfs: implement ...
20
  	struct list_head	xattr_list;	/* list of shmem_xattr */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
21
22
23
24
25
  	struct inode		vfs_inode;
  };
  
  struct shmem_sb_info {
  	unsigned long max_blocks;   /* How many blocks are allowed */
7e496299d   Tim Chen   tmpfs: make tmpfs...
26
  	struct percpu_counter used_blocks;  /* How many are allocated */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
28
  	unsigned long max_inodes;   /* How many inodes are allowed */
  	unsigned long free_inodes;  /* How many are left for allocation */
680d794ba   akpm@linux-foundation.org   mount options: fi...
29
30
31
32
  	spinlock_t stat_lock;	    /* Serialize shmem_sb_info changes */
  	uid_t uid;		    /* Mount uid for root directory */
  	gid_t gid;		    /* Mount gid for root directory */
  	mode_t mode;		    /* Mount mode for root directory */
71fe804b6   Lee Schermerhorn   mempolicy: use st...
33
  	struct mempolicy *mpol;     /* default memory policy for mappings */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
34
35
36
37
38
39
  };
  
  static inline struct shmem_inode_info *SHMEM_I(struct inode *inode)
  {
  	return container_of(inode, struct shmem_inode_info, vfs_inode);
  }
072441e21   Hugh Dickins   mm: move shmem pr...
40
41
42
  /*
   * Functions in mm/shmem.c called directly from elsewhere:
   */
41ffe5d5c   Hugh Dickins   tmpfs: miscellane...
43
  extern int shmem_init(void);
2b2af54a5   Kay Sievers   Driver Core: devt...
44
  extern int shmem_fill_super(struct super_block *sb, void *data, int silent);
072441e21   Hugh Dickins   mm: move shmem pr...
45
46
47
48
  extern struct file *shmem_file_setup(const char *name,
  					loff_t size, unsigned long flags);
  extern int shmem_zero_setup(struct vm_area_struct *);
  extern int shmem_lock(struct file *file, int lock, struct user_struct *user);
d9d90e5eb   Hugh Dickins   tmpfs: add shmem_...
49
50
  extern struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
  					pgoff_t index, gfp_t gfp_mask);
94c1e62df   Hugh Dickins   tmpfs: take contr...
51
  extern void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end);
072441e21   Hugh Dickins   mm: move shmem pr...
52
  extern int shmem_unuse(swp_entry_t entry, struct page *page);
2b2af54a5   Kay Sievers   Driver Core: devt...
53

d9d90e5eb   Hugh Dickins   tmpfs: add shmem_...
54
55
56
57
58
59
  static inline struct page *shmem_read_mapping_page(
  				struct address_space *mapping, pgoff_t index)
  {
  	return shmem_read_mapping_page_gfp(mapping, index,
  					mapping_gfp_mask(mapping));
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
60
  #endif