shmem_fs.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #ifndef __SHMEM_FS_H
  2. #define __SHMEM_FS_H
  3. #include <linux/file.h>
  4. #include <linux/swap.h>
  5. #include <linux/mempolicy.h>
  6. #include <linux/pagemap.h>
  7. #include <linux/percpu_counter.h>
  8. #include <linux/xattr.h>
  9. /* inode in-kernel data */
  10. struct shmem_inode_info {
  11. spinlock_t lock;
  12. unsigned int seals; /* shmem seals */
  13. unsigned long flags;
  14. unsigned long alloced; /* data pages alloced to file */
  15. union {
  16. unsigned long swapped; /* subtotal assigned to swap */
  17. char *symlink; /* unswappable short symlink */
  18. };
  19. struct shared_policy policy; /* NUMA memory alloc policy */
  20. struct list_head swaplist; /* chain of maybes on swap */
  21. struct simple_xattrs xattrs; /* list of xattrs */
  22. struct inode vfs_inode;
  23. };
  24. struct shmem_sb_info {
  25. unsigned long max_blocks; /* How many blocks are allowed */
  26. struct percpu_counter used_blocks; /* How many are allocated */
  27. unsigned long max_inodes; /* How many inodes are allowed */
  28. unsigned long free_inodes; /* How many are left for allocation */
  29. spinlock_t stat_lock; /* Serialize shmem_sb_info changes */
  30. kuid_t uid; /* Mount uid for root directory */
  31. kgid_t gid; /* Mount gid for root directory */
  32. umode_t mode; /* Mount mode for root directory */
  33. struct mempolicy *mpol; /* default memory policy for mappings */
  34. };
  35. static inline struct shmem_inode_info *SHMEM_I(struct inode *inode)
  36. {
  37. return container_of(inode, struct shmem_inode_info, vfs_inode);
  38. }
  39. /*
  40. * Functions in mm/shmem.c called directly from elsewhere:
  41. */
  42. extern int shmem_init(void);
  43. extern int shmem_fill_super(struct super_block *sb, void *data, int silent);
  44. extern struct file *shmem_file_setup(const char *name,
  45. loff_t size, unsigned long flags,
  46. int atomic_copy);
  47. extern struct file *shmem_kernel_file_setup(const char *name, loff_t size,
  48. unsigned long flags, int atomic_copy);
  49. extern int shmem_zero_setup(struct vm_area_struct *);
  50. extern int shmem_lock(struct file *file, int lock, struct user_struct *user);
  51. extern bool shmem_mapping(struct address_space *mapping);
  52. extern void shmem_unlock_mapping(struct address_space *mapping);
  53. extern struct page *shmem_read_mapping_page_gfp(struct address_space *mapping,
  54. pgoff_t index, gfp_t gfp_mask);
  55. extern void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end);
  56. extern int shmem_unuse(swp_entry_t entry, struct page *page);
  57. static inline struct page *shmem_read_mapping_page(
  58. struct address_space *mapping, pgoff_t index)
  59. {
  60. return shmem_read_mapping_page_gfp(mapping, index,
  61. mapping_gfp_mask(mapping));
  62. }
  63. #ifdef CONFIG_TMPFS
  64. extern int shmem_add_seals(struct file *file, unsigned int seals);
  65. extern int shmem_get_seals(struct file *file);
  66. extern long shmem_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
  67. #else
  68. static inline long shmem_fcntl(struct file *f, unsigned int c, unsigned long a)
  69. {
  70. return -EINVAL;
  71. }
  72. #endif
  73. #endif