sb.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * sb.h - NILFS on-memory super block structure.
  3. *
  4. * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. *
  20. * Written by Ryusuke Konishi <ryusuke@osrg.net>
  21. *
  22. */
  23. #ifndef _NILFS_SB
  24. #define _NILFS_SB
  25. #include <linux/types.h>
  26. #include <linux/fs.h>
  27. /*
  28. * Mount options
  29. */
  30. struct nilfs_mount_options {
  31. unsigned long mount_opt;
  32. __u64 snapshot_cno;
  33. };
  34. struct the_nilfs;
  35. struct nilfs_sc_info;
  36. /*
  37. * NILFS super-block data in memory
  38. */
  39. struct nilfs_sb_info {
  40. /* Snapshot status */
  41. __u64 s_snapshot_cno; /* Checkpoint number */
  42. atomic_t s_inodes_count;
  43. atomic_t s_blocks_count; /* Reserved (might be deleted) */
  44. /* Mount options */
  45. unsigned long s_mount_opt;
  46. uid_t s_resuid;
  47. gid_t s_resgid;
  48. unsigned long s_interval; /* construction interval */
  49. unsigned long s_watermark; /* threshold of data amount
  50. for the segment construction */
  51. /* Fundamental members */
  52. struct super_block *s_super; /* reverse pointer to super_block */
  53. struct the_nilfs *s_nilfs;
  54. struct list_head s_list; /* list head for nilfs->ns_supers */
  55. /* Segment constructor */
  56. struct list_head s_dirty_files; /* dirty files list */
  57. struct nilfs_sc_info *s_sc_info; /* segment constructor info */
  58. spinlock_t s_inode_lock; /* Lock for the nilfs inode.
  59. It covers s_dirty_files list */
  60. /* Metadata files */
  61. struct inode *s_ifile; /* index file inode */
  62. /* Inode allocator */
  63. spinlock_t s_next_gen_lock;
  64. u32 s_next_generation;
  65. };
  66. static inline struct nilfs_sb_info *NILFS_SB(struct super_block *sb)
  67. {
  68. return sb->s_fs_info;
  69. }
  70. static inline struct nilfs_sc_info *NILFS_SC(struct nilfs_sb_info *sbi)
  71. {
  72. return sbi->s_sc_info;
  73. }
  74. /*
  75. * Bit operations for the mount option
  76. */
  77. #define nilfs_clear_opt(sbi, opt) \
  78. do { (sbi)->s_mount_opt &= ~NILFS_MOUNT_##opt; } while (0)
  79. #define nilfs_set_opt(sbi, opt) \
  80. do { (sbi)->s_mount_opt |= NILFS_MOUNT_##opt; } while (0)
  81. #define nilfs_test_opt(sbi, opt) ((sbi)->s_mount_opt & NILFS_MOUNT_##opt)
  82. #define nilfs_write_opt(sbi, mask, opt) \
  83. do { (sbi)->s_mount_opt = \
  84. (((sbi)->s_mount_opt & ~NILFS_MOUNT_##mask) | \
  85. NILFS_MOUNT_##opt); \
  86. } while (0)
  87. #endif /* _NILFS_SB */