reiserfs_fs_sb.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:25k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Copyright 1996-2000 Hans Reiser, see reiserfs/README for licensing
  2.  * and copyright details */
  3. #ifndef _LINUX_REISER_FS_SB
  4. #define _LINUX_REISER_FS_SB
  5. #ifdef __KERNEL__
  6. #include <linux/tqueue.h>
  7. #endif
  8. //
  9. // super block's field values
  10. //
  11. /*#define REISERFS_VERSION 0 undistributed bitmap */
  12. /*#define REISERFS_VERSION 1 distributed bitmap and resizer*/
  13. #define REISERFS_VERSION_2 2 /* distributed bitmap, resizer, 64-bit, etc*/
  14. #define UNSET_HASH 0 // read_super will guess about, what hash names
  15.                      // in directories were sorted with
  16. #define TEA_HASH  1
  17. #define YURA_HASH 2
  18. #define R5_HASH   3
  19. #define DEFAULT_HASH R5_HASH
  20. /* this is the on disk super block */
  21. struct reiserfs_super_block
  22. {
  23.   __u32 s_block_count;
  24.   __u32 s_free_blocks;                  /* free blocks count    */
  25.   __u32 s_root_block;            /* root block number    */
  26.   __u32 s_journal_block;            /* journal block number    */
  27.   __u32 s_journal_dev;            /* journal device number  */
  28.   /* Since journal size is currently a #define in a header file, if 
  29.   ** someone creates a disk with a 16MB journal and moves it to a 
  30.   ** system with 32MB journal default, they will overflow their journal 
  31.   ** when they mount the disk.  s_orig_journal_size, plus some checks
  32.   ** while mounting (inside journal_init) prevent that from happening
  33.   */
  34. /* great comment Chris. Thanks.  -Hans */
  35.   __u32 s_orig_journal_size; 
  36.   __u32 s_journal_trans_max ;           /* max number of blocks in a transaction.  */
  37.   __u32 s_journal_block_count ;         /* total size of the journal. can change over time  */
  38.   __u32 s_journal_max_batch ;           /* max number of blocks to batch into a trans */
  39.   __u32 s_journal_max_commit_age ;      /* in seconds, how old can an async commit be */
  40.   __u32 s_journal_max_trans_age ;       /* in seconds, how old can a transaction be */
  41.   __u16 s_blocksize;                    /* block size           */
  42.   __u16 s_oid_maxsize; /* max size of object id array, see get_objectid() commentary  */
  43.   __u16 s_oid_cursize; /* current size of object id array */
  44.   __u16 s_state;                        /* valid or error       */
  45.   char s_magic[12];                     /* reiserfs magic string indicates that file system is reiserfs */
  46.   __u32 s_hash_function_code; /* indicate, what hash function is being use to sort names in a directory*/
  47.   __u16 s_tree_height;                  /* height of disk tree */
  48.   __u16 s_bmap_nr;                      /* amount of bitmap blocks needed to address each block of file system */
  49.   __u16 s_version; /* I'd prefer it if this was a string,
  50.                                    something like "3.6.4", and maybe
  51.                                    16 bytes long mostly unused. We
  52.                                    don't need to save bytes in the
  53.                                    superblock. -Hans */
  54.   __u16 s_reserved;
  55.   __u32 s_inode_generation;
  56.   char s_unused[124] ; /* zero filled by mkreiserfs */
  57. } __attribute__ ((__packed__));
  58. #define SB_SIZE (sizeof(struct reiserfs_super_block))
  59. /* struct reiserfs_super_block accessors/mutators
  60.  * since this is a disk structure, it will always be in 
  61.  * little endian format. */
  62. #define sb_block_count(sbp)           (le32_to_cpu((sbp)->s_block_count))
  63. #define set_sb_block_count(sbp,v)     ((sbp)->s_block_count = cpu_to_le32(v))
  64. #define sb_free_blocks(sbp)           (le32_to_cpu((sbp)->s_free_blocks))
  65. #define set_sb_free_blocks(sbp,v)     ((sbp)->s_free_blocks = cpu_to_le32(v))
  66. #define sb_root_block(sbp)            (le32_to_cpu((sbp)->s_root_block))
  67. #define set_sb_root_block(sbp,v)      ((sbp)->s_root_block = cpu_to_le32(v))
  68. #define sb_journal_block(sbp)         (le32_to_cpu((sbp)->s_journal_block))
  69. #define set_sb_journal_block(sbp,v)   ((sbp)->s_journal_block = cpu_to_le32(v))
  70. #define sb_journal_dev(sbp)           (le32_to_cpu((sbp)->s_journal_dev))
  71. #define set_sb_journal_dev(sbp,v)     ((sbp)->s_journal_dev = cpu_to_le32(v))
  72. #define sb_orig_journal_size(sbp)   (le32_to_cpu((sbp)->s_orig_journal_size))
  73. #define set_sb_orig_journal_size(sbp,v) 
  74.                             ((sbp)->s_orig_journal_size = cpu_to_le32(v))
  75. #define sb_journal_trans_max(sbp)     (le32_to_cpu((sbp)->s_journal_trans_max))
  76. #define set_journal_trans_max(sbp,v) 
  77.                             ((sbp)->s_journal_trans_max = cpu_to_le32(v))
  78. #define sb_journal_block_count(sbp)  (le32_to_cpu((sbp)->journal_block_count))
  79. #define sb_set_journal_block_count(sbp,v) 
  80.                             ((sbp)->s_journal_block_count = cpu_to_le32(v))
  81. #define sb_journal_max_batch(sbp)     (le32_to_cpu((sbp)->s_journal_max_batch))
  82. #define set_sb_journal_max_batch(sbp,v) 
  83.                             ((sbp)->s_journal_max_batch = cpu_to_le32(v))
  84. #define sb_jourmal_max_commit_age(sbp) 
  85.                             (le32_to_cpu((sbp)->s_journal_max_commit_age))
  86. #define set_sb_journal_max_commit_age(sbp,v) 
  87.                             ((sbp)->s_journal_max_commit_age = cpu_to_le32(v))
  88. #define sb_jourmal_max_trans_age(sbp) 
  89.                             (le32_to_cpu((sbp)->s_journal_max_trans_age))
  90. #define set_sb_journal_max_trans_age(sbp,v) 
  91.                             ((sbp)->s_journal_max_trans_age = cpu_to_le32(v))
  92. #define sb_blocksize(sbp)             (le16_to_cpu((sbp)->s_blocksize))
  93. #define set_sb_blocksize(sbp,v)       ((sbp)->s_blocksize = cpu_to_le16(v))
  94. #define sb_oid_maxsize(sbp)           (le16_to_cpu((sbp)->s_oid_maxsize))
  95. #define set_sb_oid_maxsize(sbp,v)     ((sbp)->s_oid_maxsize = cpu_to_le16(v))
  96. #define sb_oid_cursize(sbp)           (le16_to_cpu((sbp)->s_oid_cursize))
  97. #define set_sb_oid_cursize(sbp,v)     ((sbp)->s_oid_cursize = cpu_to_le16(v))
  98. #define sb_state(sbp)                 (le16_to_cpu((sbp)->s_state))
  99. #define set_sb_state(sbp,v)           ((sbp)->s_state = cpu_to_le16(v))
  100. #define sb_hash_function_code(sbp) 
  101.                             (le32_to_cpu((sbp)->s_hash_function_code))
  102. #define set_sb_hash_function_code(sbp,v) 
  103.                             ((sbp)->s_hash_function_code = cpu_to_le32(v))
  104. #define sb_tree_height(sbp)           (le16_to_cpu((sbp)->s_tree_height))
  105. #define set_sb_tree_height(sbp,v)     ((sbp)->s_tree_height = cpu_to_le16(v))
  106. #define sb_bmap_nr(sbp)               (le16_to_cpu((sbp)->s_bmap_nr))
  107. #define set_sb_bmap_nr(sbp,v)         ((sbp)->s_bmap_nr = cpu_to_le16(v))
  108. #define sb_version(sbp)               (le16_to_cpu((sbp)->s_version))
  109. #define set_sb_version(sbp,v)         ((sbp)->s_version = cpu_to_le16(v))
  110. /* this is the super from 3.5.X, where X >= 10 */
  111. struct reiserfs_super_block_v1
  112. {
  113.   __u32 s_block_count; /* blocks count         */
  114.   __u32 s_free_blocks;                  /* free blocks count    */
  115.   __u32 s_root_block;            /* root block number    */
  116.   __u32 s_journal_block;            /* journal block number    */
  117.   __u32 s_journal_dev;            /* journal device number  */
  118.   __u32 s_orig_journal_size;  /* size of the journal on FS creation.  used to make sure they don't overflow it */
  119.   __u32 s_journal_trans_max ;           /* max number of blocks in a transaction.  */
  120.   __u32 s_journal_block_count ;         /* total size of the journal. can change over time  */
  121.   __u32 s_journal_max_batch ;           /* max number of blocks to batch into a trans */
  122.   __u32 s_journal_max_commit_age ;      /* in seconds, how old can an async commit be */
  123.   __u32 s_journal_max_trans_age ;       /* in seconds, how old can a transaction be */
  124.   __u16 s_blocksize;                    /* block size           */
  125.   __u16 s_oid_maxsize; /* max size of object id array, see get_objectid() commentary  */
  126.   __u16 s_oid_cursize; /* current size of object id array */
  127.   __u16 s_state;                        /* valid or error       */
  128.   char s_magic[16];                     /* reiserfs magic string indicates that file system is reiserfs */
  129.   __u16 s_tree_height;                  /* height of disk tree */
  130.   __u16 s_bmap_nr;                      /* amount of bitmap blocks needed to address each block of file system */
  131.   __u32 s_reserved;
  132. } __attribute__ ((__packed__));
  133. #define SB_SIZE_V1 (sizeof(struct reiserfs_super_block_v1))
  134. /* LOGGING -- */
  135. /* These all interelate for performance.  
  136. **
  137. ** If the journal block count is smaller than n transactions, you lose speed. 
  138. ** I don't know what n is yet, I'm guessing 8-16.
  139. **
  140. ** typical transaction size depends on the application, how often fsync is
  141. ** called, and how many metadata blocks you dirty in a 30 second period.  
  142. ** The more small files (<16k) you use, the larger your transactions will
  143. ** be.
  144. ** 
  145. ** If your journal fills faster than dirty buffers get flushed to disk, it must flush them before allowing the journal
  146. ** to wrap, which slows things down.  If you need high speed meta data updates, the journal should be big enough
  147. ** to prevent wrapping before dirty meta blocks get to disk.
  148. **
  149. ** If the batch max is smaller than the transaction max, you'll waste space at the end of the journal
  150. ** because journal_end sets the next transaction to start at 0 if the next transaction has any chance of wrapping.
  151. **
  152. ** The large the batch max age, the better the speed, and the more meta data changes you'll lose after a crash.
  153. **
  154. */
  155. /* don't mess with these for a while */
  156. /* we have a node size define somewhere in reiserfs_fs.h. -Hans */
  157. #define JOURNAL_BLOCK_SIZE  4096 /* BUG gotta get rid of this */
  158. #define JOURNAL_MAX_CNODE   1500 /* max cnodes to allocate. */
  159. #define JOURNAL_TRANS_MAX 1024   /* biggest possible single transaction, don't change for now (8/3/99) */
  160. #define JOURNAL_HASH_SIZE 8192   
  161. #define JOURNAL_NUM_BITMAPS 5 /* number of copies of the bitmaps to have floating.  Must be >= 2 */
  162. #define JOURNAL_LIST_COUNT 64
  163. /* these are bh_state bit flag offset numbers, for use in the buffer head */
  164. #define BH_JDirty       16      /* journal data needs to be written before buffer can be marked dirty */
  165. #define BH_JDirty_wait 18 /* commit is done, buffer marked dirty */
  166. #define BH_JNew 19 /* buffer allocated during this transaction, no need to write if freed during this trans too */
  167. /* ugly.  metadata blocks must be prepared before they can be logged.  
  168. ** prepared means unlocked and cleaned.  If the block is prepared, but not
  169. ** logged for some reason, any bits cleared while preparing it must be 
  170. ** set again.
  171. */
  172. #define BH_JPrepared 20 /* block has been prepared for the log */
  173. #define BH_JRestore_dirty 22    /* restore the dirty bit later */
  174. /* One of these for every block in every transaction
  175. ** Each one is in two hash tables.  First, a hash of the current transaction, and after journal_end, a
  176. ** hash of all the in memory transactions.
  177. ** next and prev are used by the current transaction (journal_hash).
  178. ** hnext and hprev are used by journal_list_hash.  If a block is in more than one transaction, the journal_list_hash
  179. ** links it in multiple times.  This allows flush_journal_list to remove just the cnode belonging
  180. ** to a given transaction.
  181. */
  182. struct reiserfs_journal_cnode {
  183.   struct buffer_head *bh ;  /* real buffer head */
  184.   kdev_t dev ;  /* dev of real buffer head */
  185.   unsigned long blocknr ;  /* block number of real buffer head, == 0 when buffer on disk */  
  186.   long state ;
  187.   struct reiserfs_journal_list *jlist ;  /* journal list this cnode lives in */
  188.   struct reiserfs_journal_cnode *next ;  /* next in transaction list */
  189.   struct reiserfs_journal_cnode *prev ;  /* prev in transaction list */
  190.   struct reiserfs_journal_cnode *hprev ; /* prev in hash list */
  191.   struct reiserfs_journal_cnode *hnext ; /* next in hash list */
  192. };
  193. struct reiserfs_bitmap_node {
  194.   int id ;
  195.   char *data ;
  196.   struct list_head list ;
  197. } ;
  198. struct reiserfs_list_bitmap {
  199.   struct reiserfs_journal_list *journal_list ;
  200.   struct reiserfs_bitmap_node **bitmaps ;
  201. } ;
  202. /*
  203. ** transaction handle which is passed around for all journal calls
  204. */
  205. struct reiserfs_transaction_handle {
  206. /* ifdef it. -Hans */
  207.   char *t_caller ;              /* debugging use */
  208.   int t_blocks_logged ;         /* number of blocks this writer has logged */
  209.   int t_blocks_allocated ;      /* number of blocks this writer allocated */
  210.   unsigned long t_trans_id ;    /* sanity check, equals the current trans id */
  211.   struct super_block *t_super ; /* super for this FS when journal_begin was 
  212.                                    called. saves calls to reiserfs_get_super */
  213. } ;
  214. /*
  215. ** one of these for each transaction.  The most important part here is the j_realblock.
  216. ** this list of cnodes is used to hash all the blocks in all the commits, to mark all the
  217. ** real buffer heads dirty once all the commits hit the disk,
  218. ** and to make sure every real block in a transaction is on disk before allowing the log area
  219. ** to be overwritten */
  220. struct reiserfs_journal_list {
  221.   unsigned long j_start ;
  222.   unsigned long j_len ;
  223.   atomic_t j_nonzerolen ;
  224.   atomic_t j_commit_left ;
  225.   atomic_t j_flushing ;
  226.   atomic_t j_commit_flushing ;
  227.   atomic_t j_older_commits_done ;      /* all commits older than this on disk*/
  228.   unsigned long j_trans_id ;
  229.   time_t j_timestamp ;
  230.   struct reiserfs_list_bitmap *j_list_bitmap ;
  231.   struct buffer_head *j_commit_bh ; /* commit buffer head */
  232.   struct reiserfs_journal_cnode *j_realblock  ;
  233.   struct reiserfs_journal_cnode *j_freedlist ; /* list of buffers that were freed during this trans.  free each of these on flush */
  234.   wait_queue_head_t j_commit_wait ; /* wait for all the commit blocks to be flushed */
  235.   wait_queue_head_t j_flush_wait ; /* wait for all the real blocks to be flushed */
  236. } ;
  237. struct reiserfs_page_list  ; /* defined in reiserfs_fs.h */
  238. struct reiserfs_journal {
  239.   struct buffer_head ** j_ap_blocks ; /* journal blocks on disk */
  240.   struct reiserfs_journal_cnode *j_last ; /* newest journal block */
  241.   struct reiserfs_journal_cnode *j_first ; /*  oldest journal block.  start here for traverse */
  242.   long j_state ;
  243.   unsigned long j_trans_id ;
  244.   unsigned long j_mount_id ;
  245.   unsigned long j_start ;             /* start of current waiting commit (index into j_ap_blocks) */
  246.   unsigned long j_len ;               /* lenght of current waiting commit */
  247.   unsigned long j_len_alloc ;         /* number of buffers requested by journal_begin() */
  248.   atomic_t j_wcount ;            /* count of writers for current commit */
  249.   unsigned long j_bcount ;            /* batch count. allows turning X transactions into 1 */
  250.   unsigned long j_first_unflushed_offset ;  /* first unflushed transactions offset */
  251.   unsigned long j_last_flush_trans_id ;    /* last fully flushed journal timestamp */
  252.   struct buffer_head *j_header_bh ;   
  253.   /* j_flush_pages must be flushed before the current transaction can
  254.   ** commit
  255.   */
  256.   struct reiserfs_page_list *j_flush_pages ;
  257.   time_t j_trans_start_time ;         /* time this transaction started */
  258.   wait_queue_head_t j_wait ;         /* wait  journal_end to finish I/O */
  259.   atomic_t j_wlock ;                       /* lock for j_wait */
  260.   wait_queue_head_t j_join_wait ;    /* wait for current transaction to finish before starting new one */
  261.   atomic_t j_jlock ;                       /* lock for j_join_wait */
  262.   int j_journal_list_index ;       /* journal list number of the current trans */
  263.   int j_list_bitmap_index ;       /* number of next list bitmap to use */
  264.   int j_must_wait ;        /* no more journal begins allowed. MUST sleep on j_join_wait */
  265.   int j_next_full_flush ;             /* next journal_end will flush all journal list */
  266.   int j_next_async_flush ;             /* next journal_end will flush all async commits */
  267.   int j_cnode_used ;       /* number of cnodes on the used list */
  268.   int j_cnode_free ;          /* number of cnodes on the free list */
  269.   struct reiserfs_journal_cnode *j_cnode_free_list ;
  270.   struct reiserfs_journal_cnode *j_cnode_free_orig ; /* orig pointer returned from vmalloc */
  271.   int j_free_bitmap_nodes ;
  272.   int j_used_bitmap_nodes ;
  273.   struct list_head j_bitmap_nodes ;
  274.   struct inode j_dummy_inode ;
  275.   struct reiserfs_list_bitmap j_list_bitmap[JOURNAL_NUM_BITMAPS] ; /* array of bitmaps to record the deleted blocks */
  276.   struct reiserfs_journal_list j_journal_list[JOURNAL_LIST_COUNT] ;     /* array of all the journal lists */
  277.   struct reiserfs_journal_cnode *j_hash_table[JOURNAL_HASH_SIZE] ;      /* hash table for real buffer heads in current trans */ 
  278.   struct reiserfs_journal_cnode *j_list_hash_table[JOURNAL_HASH_SIZE] ; /* hash table for all the real buffer heads in all 
  279.    the transactions */
  280.   struct list_head j_prealloc_list;     /* list of inodes which have preallocated blocks */
  281. };
  282. #define JOURNAL_DESC_MAGIC "ReIsErLB" /* ick.  magic string to find desc blocks in the journal */
  283. typedef __u32 (*hashf_t) (const signed char *, int);
  284. struct proc_dir_entry;
  285. #if defined( CONFIG_PROC_FS ) && defined( CONFIG_REISERFS_PROC_INFO )
  286. typedef unsigned long int stat_cnt_t;
  287. typedef struct reiserfs_proc_info_data
  288. {
  289.   spinlock_t lock;
  290.   int exiting;
  291.   int max_hash_collisions;
  292.   stat_cnt_t breads;
  293.   stat_cnt_t bread_miss;
  294.   stat_cnt_t search_by_key;
  295.   stat_cnt_t search_by_key_fs_changed;
  296.   stat_cnt_t search_by_key_restarted;
  297.   stat_cnt_t leaked_oid;
  298.   stat_cnt_t leaves_removable;
  299.   /* balances per level. Use explicit 5 as MAX_HEIGHT is not visible yet. */
  300.   stat_cnt_t balance_at[ 5 ]; /* XXX */
  301.   /* sbk == search_by_key */
  302.   stat_cnt_t sbk_read_at[ 5 ]; /* XXX */
  303.   stat_cnt_t sbk_fs_changed[ 5 ];
  304.   stat_cnt_t sbk_restarted[ 5 ];
  305.   stat_cnt_t items_at[ 5 ]; /* XXX */
  306.   stat_cnt_t free_at[ 5 ]; /* XXX */
  307.   stat_cnt_t can_node_be_removed[ 5 ]; /* XXX */
  308.   long int lnum[ 5 ]; /* XXX */
  309.   long int rnum[ 5 ]; /* XXX */
  310.   long int lbytes[ 5 ]; /* XXX */
  311.   long int rbytes[ 5 ]; /* XXX */
  312.   stat_cnt_t get_neighbors[ 5 ];
  313.   stat_cnt_t get_neighbors_restart[ 5 ];
  314.   stat_cnt_t need_l_neighbor[ 5 ];
  315.   stat_cnt_t need_r_neighbor[ 5 ];
  316.   stat_cnt_t free_block;
  317.   struct __find_forward_stats {
  318. stat_cnt_t call;
  319. stat_cnt_t wait;
  320. stat_cnt_t bmap;
  321. stat_cnt_t retry;
  322. stat_cnt_t in_journal_hint;
  323. stat_cnt_t in_journal_out;
  324.   } find_forward;
  325.   struct __journal_stats {
  326. stat_cnt_t in_journal;
  327. stat_cnt_t in_journal_bitmap;
  328. stat_cnt_t in_journal_reusable;
  329. stat_cnt_t lock_journal;
  330. stat_cnt_t lock_journal_wait;
  331. stat_cnt_t journal_being;
  332. stat_cnt_t journal_relock_writers;
  333. stat_cnt_t journal_relock_wcount;
  334. stat_cnt_t mark_dirty;
  335. stat_cnt_t mark_dirty_already;
  336. stat_cnt_t mark_dirty_notjournal;
  337. stat_cnt_t restore_prepared;
  338. stat_cnt_t prepare;
  339. stat_cnt_t prepare_retry;
  340.   } journal;
  341. } reiserfs_proc_info_data_t;
  342. #else
  343. typedef struct reiserfs_proc_info_data
  344. {} reiserfs_proc_info_data_t;
  345. #endif
  346. /* reiserfs union of in-core super block data */
  347. struct reiserfs_sb_info
  348. {
  349.     struct buffer_head * s_sbh;                   /* Buffer containing the super block */
  350. /* both the comment and the choice of
  351.                                    name are unclear for s_rs -Hans */
  352.     struct reiserfs_super_block * s_rs;           /* Pointer to the super block in the buffer */
  353.     struct buffer_head ** s_ap_bitmap;       /* array of buffers, holding block bitmap */
  354.     struct reiserfs_journal *s_journal ; /* pointer to journal information */
  355.     unsigned short s_mount_state;                 /* reiserfs state (valid, invalid) */
  356.   
  357. /* Comment? -Hans */
  358.     void (*end_io_handler)(struct buffer_head *, int);
  359.     hashf_t s_hash_function; /* pointer to function which is used
  360.                                    to sort names in directory. Set on
  361.                                    mount */
  362.     unsigned long s_mount_opt; /* reiserfs's mount options are set
  363.                                    here (currently - NOTAIL, NOLOG,
  364.                                    REPLAYONLY) */
  365. /* Comment? -Hans */
  366.     wait_queue_head_t s_wait;
  367. /* To be obsoleted soon by per buffer seals.. -Hans */
  368.     atomic_t s_generation_counter; // increased by one every time the
  369.     // tree gets re-balanced
  370.     unsigned long s_properties;    /* File system properties. Currently holds
  371.      on-disk FS format */
  372.     
  373.     /* session statistics */
  374.     int s_kmallocs;
  375.     int s_disk_reads;
  376.     int s_disk_writes;
  377.     int s_fix_nodes;
  378.     int s_do_balance;
  379.     int s_unneeded_left_neighbor;
  380.     int s_good_search_by_key_reada;
  381.     int s_bmaps;
  382.     int s_bmaps_without_search;
  383.     int s_direct2indirect;
  384.     int s_indirect2direct;
  385. /* set up when it's ok for reiserfs_read_inode2() to read from
  386.    disk inode with nlink==0. Currently this is only used during
  387.    finish_unfinished() processing at mount time */
  388.     int s_is_unlinked_ok;
  389.     reiserfs_proc_info_data_t s_proc_info_data;
  390.     struct proc_dir_entry *procdir;
  391. };
  392. /* Definitions of reiserfs on-disk properties: */
  393. #define REISERFS_3_5 0
  394. #define REISERFS_3_6 1
  395. /* Mount options */
  396. #define NOTAIL 0  /* -o notail: no tails will be created in a session */
  397. #define REPLAYONLY 3 /* replay journal and return 0. Use by fsck */
  398. #define REISERFS_NOLOG 4      /* -o nolog: turn journalling off */
  399. #define REISERFS_CONVERT 5    /* -o conv: causes conversion of old
  400.                                  format super block to the new
  401.                                  format. If not specified - old
  402.                                  partition will be dealt with in a
  403.                                  manner of 3.5.x */
  404. /* -o hash={tea, rupasov, r5, detect} is meant for properly mounting 
  405. ** reiserfs disks from 3.5.19 or earlier.  99% of the time, this option
  406. ** is not required.  If the normal autodection code can't determine which
  407. ** hash to use (because both hases had the same value for a file)
  408. ** use this option to force a specific hash.  It won't allow you to override
  409. ** the existing hash on the FS, so if you have a tea hash disk, and mount
  410. ** with -o hash=rupasov, the mount will fail.
  411. */
  412. #define FORCE_TEA_HASH 6      /* try to force tea hash on mount */
  413. #define FORCE_RUPASOV_HASH 7  /* try to force rupasov hash on mount */
  414. #define FORCE_R5_HASH 8       /* try to force rupasov hash on mount */
  415. #define FORCE_HASH_DETECT 9   /* try to detect hash function on mount */
  416. /* used for testing experimental features, makes benchmarking new
  417.    features with and without more convenient, should never be used by
  418.    users in any code shipped to users (ideally) */
  419. #define REISERFS_NO_BORDER 11
  420. #define REISERFS_NO_UNHASHED_RELOCATION 12
  421. #define REISERFS_HASHED_RELOCATION 13
  422. #define REISERFS_TEST4 14 
  423. #define REISERFS_TEST1 11
  424. #define REISERFS_TEST2 12
  425. #define REISERFS_TEST3 13
  426. #define REISERFS_TEST4 14 
  427. #define reiserfs_r5_hash(s) ((s)->u.reiserfs_sb.s_mount_opt & (1 << FORCE_R5_HASH))
  428. #define reiserfs_rupasov_hash(s) ((s)->u.reiserfs_sb.s_mount_opt & (1 << FORCE_RUPASOV_HASH))
  429. #define reiserfs_tea_hash(s) ((s)->u.reiserfs_sb.s_mount_opt & (1 << FORCE_TEA_HASH))
  430. #define reiserfs_hash_detect(s) ((s)->u.reiserfs_sb.s_mount_opt & (1 << FORCE_HASH_DETECT))
  431. #define reiserfs_no_border(s) ((s)->u.reiserfs_sb.s_mount_opt & (1 << REISERFS_NO_BORDER))
  432. #define reiserfs_no_unhashed_relocation(s) ((s)->u.reiserfs_sb.s_mount_opt & (1 << REISERFS_NO_UNHASHED_RELOCATION))
  433. #define reiserfs_hashed_relocation(s) ((s)->u.reiserfs_sb.s_mount_opt & (1 << REISERFS_HASHED_RELOCATION))
  434. #define reiserfs_test4(s) ((s)->u.reiserfs_sb.s_mount_opt & (1 << REISERFS_TEST4))
  435. #define dont_have_tails(s) ((s)->u.reiserfs_sb.s_mount_opt & (1 << NOTAIL))
  436. #define replay_only(s) ((s)->u.reiserfs_sb.s_mount_opt & (1 << REPLAYONLY))
  437. #define reiserfs_dont_log(s) ((s)->u.reiserfs_sb.s_mount_opt & (1 << REISERFS_NOLOG))
  438. #define old_format_only(s) ((s)->u.reiserfs_sb.s_properties & (1 << REISERFS_3_5))
  439. #define convert_reiserfs(s) ((s)->u.reiserfs_sb.s_mount_opt & (1 << REISERFS_CONVERT))
  440. void reiserfs_file_buffer (struct buffer_head * bh, int list);
  441. int reiserfs_is_super(struct super_block *s)  ;
  442. int journal_mark_dirty(struct reiserfs_transaction_handle *, struct super_block *, struct buffer_head *bh) ;
  443. int flush_old_commits(struct super_block *s, int) ;
  444. int show_reiserfs_locks(void) ;
  445. int reiserfs_resize(struct super_block *, unsigned long) ;
  446. #define CARRY_ON                0
  447. #define SCHEDULE_OCCURRED       1
  448. #define SB_BUFFER_WITH_SB(s) ((s)->u.reiserfs_sb.s_sbh)
  449. #define SB_JOURNAL(s) ((s)->u.reiserfs_sb.s_journal)
  450. #define SB_JOURNAL_LIST(s) (SB_JOURNAL(s)->j_journal_list)
  451. #define SB_JOURNAL_LIST_INDEX(s) (SB_JOURNAL(s)->j_journal_list_index) 
  452. #define SB_JOURNAL_LEN_FREE(s) (SB_JOURNAL(s)->j_journal_len_free) 
  453. #define SB_AP_BITMAP(s) ((s)->u.reiserfs_sb.s_ap_bitmap)
  454. // on-disk super block fields converted to cpu form
  455. #define SB_DISK_SUPER_BLOCK(s)        ((s)->u.reiserfs_sb.s_rs)
  456. #define SB_BLOCK_COUNT(s)             sb_block_count (SB_DISK_SUPER_BLOCK(s))
  457. #define SB_FREE_BLOCKS(s)             sb_free_blocks (SB_DISK_SUPER_BLOCK(s))
  458. #define SB_REISERFS_MAGIC(s)          (SB_DISK_SUPER_BLOCK(s)->s_magic)
  459. #define SB_ROOT_BLOCK(s)              sb_root_block (SB_DISK_SUPER_BLOCK(s))
  460. #define SB_TREE_HEIGHT(s)             sb_tree_height (SB_DISK_SUPER_BLOCK(s))
  461. #define SB_REISERFS_STATE(s)          sb_state (SB_DISK_SUPER_BLOCK(s))
  462. #define SB_VERSION(s)                 sb_version (SB_DISK_SUPER_BLOCK(s))
  463. #define SB_BMAP_NR(s)                 sb_bmap_nr(SB_DISK_SUPER_BLOCK(s))
  464. #define PUT_SB_BLOCK_COUNT(s, val)    do { set_sb_block_count( SB_DISK_SUPER_BLOCK(s), val); } while (0)
  465. #define PUT_SB_FREE_BLOCKS(s, val)    do { set_sb_free_blocks( SB_DISK_SUPER_BLOCK(s), val); } while (0)
  466. #define PUT_SB_ROOT_BLOCK(s, val)     do { set_sb_root_block( SB_DISK_SUPER_BLOCK(s), val); } while (0)
  467. #define PUT_SB_TREE_HEIGHT(s, val)    do { set_sb_tree_height( SB_DISK_SUPER_BLOCK(s), val); } while (0)
  468. #define PUT_SB_REISERFS_STATE(s, val) do { set_sb_state( SB_DISK_SUPER_BLOCK(s), val); } while (0) 
  469. #define PUT_SB_VERSION(s, val)        do { set_sb_version( SB_DISK_SUPER_BLOCK(s), val); } while (0)
  470. #define PUT_SB_BMAP_NR(s, val)        do { set_sb_bmap_nr( SB_DISK_SUPER_BLOCK(s), val); } while (0)
  471. #endif /* _LINUX_REISER_FS_SB */