jbd.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:28k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/linux/jbd.h
  3.  * 
  4.  * Written by Stephen C. Tweedie <sct@redhat.com>
  5.  *
  6.  * Copyright 1998-2000 Red Hat, Inc --- All Rights Reserved
  7.  *
  8.  * This file is part of the Linux kernel and is made available under
  9.  * the terms of the GNU General Public License, version 2, or at your
  10.  * option, any later version, incorporated herein by reference.
  11.  *
  12.  * Definitions for transaction data structures for the buffer cache
  13.  * filesystem journaling support.
  14.  */
  15. #ifndef _LINUX_JBD_H
  16. #define _LINUX_JBD_H
  17. #if defined(CONFIG_JBD) || defined(CONFIG_JBD_MODULE) || !defined(__KERNEL__)
  18. /* Allow this file to be included directly into e2fsprogs */
  19. #ifndef __KERNEL__
  20. #include "jfs_compat.h"
  21. #define JFS_DEBUG
  22. #define jfs_debug jbd_debug
  23. #else
  24. #include <linux/journal-head.h>
  25. #include <linux/stddef.h>
  26. #include <asm/semaphore.h>
  27. #endif
  28. #define journal_oom_retry 1
  29. /*
  30.  * Define JBD_PARANOID_WRITES to cause a kernel BUG() check if ext3
  31.  * finds a buffer unexpectedly dirty.  This is useful for debugging, but
  32.  * can cause spurious kernel panics if there are applications such as
  33.  * tune2fs modifying our buffer_heads behind our backs.
  34.  */
  35. #undef JBD_PARANOID_WRITES
  36. #ifdef CONFIG_JBD_DEBUG
  37. /*
  38.  * Define JBD_EXPENSIVE_CHECKING to enable more expensive internal
  39.  * consistency checks.  By default we don't do this unless
  40.  * CONFIG_JBD_DEBUG is on.
  41.  */
  42. #define JBD_EXPENSIVE_CHECKING
  43. extern int journal_enable_debug;
  44. #define jbd_debug(n, f, a...)
  45. do {
  46. if ((n) <= journal_enable_debug) {
  47. printk (KERN_DEBUG "(%s, %d): %s: ",
  48. __FILE__, __LINE__, __FUNCTION__);
  49.    printk (f, ## a);
  50. }
  51. } while (0)
  52. #else
  53. #define jbd_debug(f, a...) /**/
  54. #endif
  55. extern void * __jbd_kmalloc (char *where, size_t size, int flags, int retry);
  56. #define jbd_kmalloc(size, flags) 
  57. __jbd_kmalloc(__FUNCTION__, (size), (flags), journal_oom_retry)
  58. #define jbd_rep_kmalloc(size, flags) 
  59. __jbd_kmalloc(__FUNCTION__, (size), (flags), 1)
  60. #define JFS_MIN_JOURNAL_BLOCKS 1024
  61. #ifdef __KERNEL__
  62. typedef struct handle_s handle_t; /* Atomic operation type */
  63. typedef struct journal_s journal_t; /* Journal control structure */
  64. #endif
  65. /*
  66.  * Internal structures used by the logging mechanism:
  67.  */
  68. #define JFS_MAGIC_NUMBER 0xc03b3998U /* The first 4 bytes of /dev/random! */
  69. /*
  70.  * On-disk structures
  71.  */
  72. /* 
  73.  * Descriptor block types:
  74.  */
  75. #define JFS_DESCRIPTOR_BLOCK 1
  76. #define JFS_COMMIT_BLOCK 2
  77. #define JFS_SUPERBLOCK_V1 3
  78. #define JFS_SUPERBLOCK_V2 4
  79. #define JFS_REVOKE_BLOCK 5
  80. /*
  81.  * Standard header for all descriptor blocks:
  82.  */
  83. typedef struct journal_header_s
  84. {
  85. __u32 h_magic;
  86. __u32 h_blocktype;
  87. __u32 h_sequence;
  88. } journal_header_t;
  89. /* 
  90.  * The block tag: used to describe a single buffer in the journal 
  91.  */
  92. typedef struct journal_block_tag_s
  93. {
  94. __u32 t_blocknr; /* The on-disk block number */
  95. __u32 t_flags; /* See below */
  96. } journal_block_tag_t;
  97. /* 
  98.  * The revoke descriptor: used on disk to describe a series of blocks to
  99.  * be revoked from the log 
  100.  */
  101. typedef struct journal_revoke_header_s
  102. {
  103. journal_header_t r_header;
  104. int  r_count; /* Count of bytes used in the block */
  105. } journal_revoke_header_t;
  106. /* Definitions for the journal tag flags word: */
  107. #define JFS_FLAG_ESCAPE 1 /* on-disk block is escaped */
  108. #define JFS_FLAG_SAME_UUID 2 /* block has same uuid as previous */
  109. #define JFS_FLAG_DELETED 4 /* block deleted by this transaction */
  110. #define JFS_FLAG_LAST_TAG 8 /* last tag in this descriptor block */
  111. /*
  112.  * The journal superblock.  All fields are in big-endian byte order.
  113.  */
  114. typedef struct journal_superblock_s
  115. {
  116. /* 0x0000 */
  117. journal_header_t s_header;
  118. /* 0x000C */
  119. /* Static information describing the journal */
  120. __u32 s_blocksize; /* journal device blocksize */
  121. __u32 s_maxlen; /* total blocks in journal file */
  122. __u32 s_first; /* first block of log information */
  123. /* 0x0018 */
  124. /* Dynamic information describing the current state of the log */
  125. __u32 s_sequence; /* first commit ID expected in log */
  126. __u32 s_start; /* blocknr of start of log */
  127. /* 0x0020 */
  128. /* Error value, as set by journal_abort(). */
  129. __s32 s_errno;
  130. /* 0x0024 */
  131. /* Remaining fields are only valid in a version-2 superblock */
  132. __u32 s_feature_compat;  /* compatible feature set */
  133. __u32 s_feature_incompat;  /* incompatible feature set */
  134. __u32 s_feature_ro_compat;  /* readonly-compatible feature set */
  135. /* 0x0030 */
  136. __u8 s_uuid[16]; /* 128-bit uuid for journal */
  137. /* 0x0040 */
  138. __u32 s_nr_users; /* Nr of filesystems sharing log */
  139. __u32 s_dynsuper; /* Blocknr of dynamic superblock copy*/
  140. /* 0x0048 */
  141. __u32 s_max_transaction; /* Limit of journal blocks per trans.*/
  142. __u32 s_max_trans_data; /* Limit of data blocks per trans. */
  143. /* 0x0050 */
  144. __u32 s_padding[44];
  145. /* 0x0100 */
  146. __u8 s_users[16*48]; /* ids of all fs'es sharing the log */
  147. /* 0x0400 */
  148. } journal_superblock_t;
  149. #define JFS_HAS_COMPAT_FEATURE(j,mask)
  150. ((j)->j_format_version >= 2 &&
  151.  ((j)->j_superblock->s_feature_compat & cpu_to_be32((mask))))
  152. #define JFS_HAS_RO_COMPAT_FEATURE(j,mask)
  153. ((j)->j_format_version >= 2 &&
  154.  ((j)->j_superblock->s_feature_ro_compat & cpu_to_be32((mask))))
  155. #define JFS_HAS_INCOMPAT_FEATURE(j,mask)
  156. ((j)->j_format_version >= 2 &&
  157.  ((j)->j_superblock->s_feature_incompat & cpu_to_be32((mask))))
  158. #define JFS_FEATURE_INCOMPAT_REVOKE 0x00000001
  159. /* Features known to this kernel version: */
  160. #define JFS_KNOWN_COMPAT_FEATURES 0
  161. #define JFS_KNOWN_ROCOMPAT_FEATURES 0
  162. #define JFS_KNOWN_INCOMPAT_FEATURES JFS_FEATURE_INCOMPAT_REVOKE
  163. #ifdef __KERNEL__
  164. #include <linux/fs.h>
  165. #include <linux/sched.h>
  166. #define JBD_ASSERTIONS
  167. #ifdef JBD_ASSERTIONS
  168. #define J_ASSERT(assert)
  169. do {
  170. if (!(assert)) {
  171. printk (KERN_EMERG
  172. "Assertion failure in %s() at %s:%d: "%s"n",
  173. __FUNCTION__, __FILE__, __LINE__, # assert);
  174. BUG();
  175. }
  176. } while (0)
  177. #if defined(CONFIG_BUFFER_DEBUG)
  178. void buffer_assertion_failure(struct buffer_head *bh);
  179. #define J_ASSERT_BH(bh, expr)
  180. do {
  181. if (!(expr))
  182. buffer_assertion_failure(bh);
  183. J_ASSERT(expr);
  184. } while (0)
  185. #define J_ASSERT_JH(jh, expr) J_ASSERT_BH(jh2bh(jh), expr)
  186. #else
  187. #define J_ASSERT_BH(bh, expr) J_ASSERT(expr)
  188. #define J_ASSERT_JH(jh, expr) J_ASSERT(expr)
  189. #endif
  190. #else
  191. #define J_ASSERT(assert) do { } while (0)
  192. #endif /* JBD_ASSERTIONS */
  193. enum jbd_state_bits {
  194. BH_JWrite
  195.   = BH_PrivateStart, /* 1 if being written to log (@@@ DEBUGGING) */
  196. BH_Freed, /* 1 if buffer has been freed (truncated) */
  197. BH_Revoked, /* 1 if buffer has been revoked from the log */
  198. BH_RevokeValid, /* 1 if buffer revoked flag is valid */
  199. BH_JBDDirty, /* 1 if buffer is dirty but journaled */
  200. };
  201. /* Return true if the buffer is one which JBD is managing */
  202. static inline int buffer_jbd(struct buffer_head *bh)
  203. {
  204. return __buffer_state(bh, JBD);
  205. }
  206. static inline struct buffer_head *jh2bh(struct journal_head *jh)
  207. {
  208. return jh->b_bh;
  209. }
  210. static inline struct journal_head *bh2jh(struct buffer_head *bh)
  211. {
  212. return bh->b_private;
  213. }
  214. #define HAVE_JOURNAL_CALLBACK_STATUS
  215. struct journal_callback {
  216. struct list_head jcb_list;
  217. void (*jcb_func)(struct journal_callback *jcb, int error);
  218. /* user data goes here */
  219. };
  220. struct jbd_revoke_table_s;
  221. /* The handle_t type represents a single atomic update being performed
  222.  * by some process.  All filesystem modifications made by the process go
  223.  * through this handle.  Recursive operations (such as quota operations)
  224.  * are gathered into a single update.
  225.  *
  226.  * The buffer credits field is used to account for journaled buffers
  227.  * being modified by the running process.  To ensure that there is
  228.  * enough log space for all outstanding operations, we need to limit the
  229.  * number of outstanding buffers possible at any time.  When the
  230.  * operation completes, any buffer credits not used are credited back to
  231.  * the transaction, so that at all times we know how many buffers the
  232.  * outstanding updates on a transaction might possibly touch. */
  233. struct handle_s 
  234. {
  235. /* Which compound transaction is this update a part of? */
  236. transaction_t       * h_transaction;
  237. /* Number of remaining buffers we are allowed to dirty: */
  238. int h_buffer_credits;
  239. /* Reference count on this handle */
  240. int h_ref;
  241. /* Field for caller's use to track errors through large fs
  242.    operations */
  243. int h_err;
  244. /* List of application registered callbacks for this handle.
  245.  * The function(s) will be called after the transaction that
  246.  * this handle is part of has been committed to disk.
  247.  */
  248. struct list_head h_jcb;
  249. /* Flags */
  250. unsigned int h_sync: 1; /* sync-on-close */
  251. unsigned int h_jdata: 1; /* force data journaling */
  252. unsigned int h_aborted: 1; /* fatal error on handle */
  253. };
  254. /* The transaction_t type is the guts of the journaling mechanism.  It
  255.  * tracks a compound transaction through its various states:
  256.  *
  257.  * RUNNING: accepting new updates
  258.  * LOCKED: Updates still running but we don't accept new ones
  259.  * RUNDOWN: Updates are tidying up but have finished requesting
  260.  * new buffers to modify (state not used for now)
  261.  * FLUSH:       All updates complete, but we are still writing to disk
  262.  * COMMIT:      All data on disk, writing commit record
  263.  * FINISHED: We still have to keep the transaction for checkpointing.
  264.  *
  265.  * The transaction keeps track of all of the buffers modified by a
  266.  * running transaction, and all of the buffers committed but not yet
  267.  * flushed to home for finished transactions.
  268.  */
  269. struct transaction_s 
  270. {
  271. /* Pointer to the journal for this transaction. */
  272. journal_t * t_journal;
  273. /* Sequence number for this transaction */
  274. tid_t t_tid;
  275. /* Transaction's current state */
  276. enum {
  277. T_RUNNING,
  278. T_LOCKED,
  279. T_RUNDOWN,
  280. T_FLUSH,
  281. T_COMMIT,
  282. T_FINISHED 
  283. } t_state;
  284. /* Where in the log does this transaction's commit start? */
  285. unsigned long t_log_start;
  286. /* Doubly-linked circular list of all inodes owned by this
  287.            transaction */ /* AKPM: unused */
  288. struct inode * t_ilist;
  289. /* Number of buffers on the t_buffers list */
  290. int t_nr_buffers;
  291. /* Doubly-linked circular list of all buffers reserved but not
  292.            yet modified by this transaction */
  293. struct journal_head * t_reserved_list;
  294. /* Doubly-linked circular list of all metadata buffers owned by this
  295.            transaction */
  296. struct journal_head * t_buffers;
  297. /*
  298.  * Doubly-linked circular list of all data buffers still to be
  299.  * flushed before this transaction can be committed.
  300.  * Protected by journal_datalist_lock.
  301.  */
  302. struct journal_head * t_sync_datalist;
  303. /*
  304.  * Doubly-linked circular list of all writepage data buffers
  305.  * still to be written before this transaction can be committed.
  306.  * Protected by journal_datalist_lock.
  307.  */
  308. struct journal_head * t_async_datalist;
  309. /* Doubly-linked circular list of all forget buffers (superseded
  310.            buffers which we can un-checkpoint once this transaction
  311.            commits) */
  312. struct journal_head * t_forget;
  313. /*
  314.  * Doubly-linked circular list of all buffers still to be
  315.  * flushed before this transaction can be checkpointed.
  316.  */
  317. /* Protected by journal_datalist_lock */
  318. struct journal_head * t_checkpoint_list;
  319. /* Doubly-linked circular list of temporary buffers currently
  320.            undergoing IO in the log */
  321. struct journal_head * t_iobuf_list;
  322. /* Doubly-linked circular list of metadata buffers being
  323.            shadowed by log IO.  The IO buffers on the iobuf list and the
  324.            shadow buffers on this list match each other one for one at
  325.            all times. */
  326. struct journal_head * t_shadow_list;
  327. /* Doubly-linked circular list of control buffers being written
  328.            to the log. */
  329. struct journal_head * t_log_list;
  330. /* Number of outstanding updates running on this transaction */
  331. int t_updates;
  332. /* Number of buffers reserved for use by all handles in this
  333.  * transaction handle but not yet modified. */
  334. int t_outstanding_credits;
  335. /*
  336.  * Forward and backward links for the circular list of all
  337.  * transactions awaiting checkpoint.
  338.  */
  339. /* Protected by journal_datalist_lock */
  340. transaction_t *t_cpnext, *t_cpprev;
  341. /* When will the transaction expire (become due for commit), in
  342.  * jiffies ? */
  343. unsigned long t_expires;
  344. /* How many handles used this transaction? */
  345. int t_handle_count;
  346. /* List of registered callback functions for this transaction.
  347.  * Called when the transaction is committed. */
  348. struct list_head t_jcb;
  349. };
  350. /* The journal_t maintains all of the journaling state information for a
  351.  * single filesystem.  It is linked to from the fs superblock structure.
  352.  * 
  353.  * We use the journal_t to keep track of all outstanding transaction
  354.  * activity on the filesystem, and to manage the state of the log
  355.  * writing process. */
  356. struct journal_s
  357. {
  358. /* General journaling state flags */
  359. unsigned long j_flags;
  360. /* Is there an outstanding uncleared error on the journal (from
  361.  * a prior abort)? */
  362. int j_errno;
  363. /* The superblock buffer */
  364. struct buffer_head * j_sb_buffer;
  365. journal_superblock_t * j_superblock;
  366. /* Version of the superblock format */
  367. int j_format_version;
  368. /* Number of processes waiting to create a barrier lock */
  369. int j_barrier_count;
  370. /* The barrier lock itself */
  371. struct semaphore j_barrier;
  372. /* Transactions: The current running transaction... */
  373. transaction_t * j_running_transaction;
  374. /* ... the transaction we are pushing to disk ... */
  375. transaction_t * j_committing_transaction;
  376. /* ... and a linked circular list of all transactions waiting
  377.  * for checkpointing. */
  378. /* Protected by journal_datalist_lock */
  379. transaction_t * j_checkpoint_transactions;
  380. /* Wait queue for waiting for a locked transaction to start
  381.            committing, or for a barrier lock to be released */
  382. wait_queue_head_t j_wait_transaction_locked;
  383. /* Wait queue for waiting for checkpointing to complete */
  384. wait_queue_head_t j_wait_logspace;
  385. /* Wait queue for waiting for commit to complete */
  386. wait_queue_head_t j_wait_done_commit;
  387. /* Wait queue to trigger checkpointing */
  388. wait_queue_head_t j_wait_checkpoint;
  389. /* Wait queue to trigger commit */
  390. wait_queue_head_t j_wait_commit;
  391. /* Wait queue to wait for updates to complete */
  392. wait_queue_head_t j_wait_updates;
  393. /* Semaphore for locking against concurrent checkpoints */
  394. struct semaphore  j_checkpoint_sem;
  395. /* The main journal lock, used by lock_journal() */
  396. struct semaphore j_sem;
  397. /* Journal head: identifies the first unused block in the journal. */
  398. unsigned long j_head;
  399. /* Journal tail: identifies the oldest still-used block in the
  400.  * journal. */
  401. unsigned long j_tail;
  402. /* Journal free: how many free blocks are there in the journal? */
  403. unsigned long j_free;
  404. /* Journal start and end: the block numbers of the first usable
  405.  * block and one beyond the last usable block in the journal. */
  406. unsigned long j_first, j_last;
  407. /* Device, blocksize and starting block offset for the location
  408.  * where we store the journal. */
  409. kdev_t j_dev;
  410. int j_blocksize;
  411. unsigned int j_blk_offset;
  412. /* Device which holds the client fs.  For internal journal this
  413.  * will be equal to j_dev. */
  414. kdev_t j_fs_dev;
  415. /* Total maximum capacity of the journal region on disk. */
  416. unsigned int j_maxlen;
  417. /* Optional inode where we store the journal.  If present, all
  418.  * journal block numbers are mapped into this inode via
  419.  * bmap(). */
  420. struct inode * j_inode;
  421. /* Sequence number of the oldest transaction in the log */
  422. tid_t j_tail_sequence;
  423. /* Sequence number of the next transaction to grant */
  424. tid_t j_transaction_sequence;
  425. /* Sequence number of the most recently committed transaction */
  426. tid_t j_commit_sequence;
  427. /* Sequence number of the most recent transaction wanting commit */
  428. tid_t j_commit_request;
  429. /* Journal uuid: identifies the object (filesystem, LVM volume
  430.  * etc) backed by this journal.  This will eventually be
  431.  * replaced by an array of uuids, allowing us to index multiple
  432.  * devices within a single journal and to perform atomic updates
  433.  * across them.  */
  434. __u8 j_uuid[16];
  435. /* Pointer to the current commit thread for this journal */
  436. struct task_struct * j_task;
  437. /* Maximum number of metadata buffers to allow in a single
  438.  * compound commit transaction */
  439. int j_max_transaction_buffers;
  440. /* What is the maximum transaction lifetime before we begin a
  441.  * commit? */
  442. unsigned long j_commit_interval;
  443. /* The timer used to wakeup the commit thread: */
  444. struct timer_list * j_commit_timer;
  445. int j_commit_timer_active;
  446. /* Link all journals together - system-wide */
  447. struct list_head j_all_journals;
  448. /* The revoke table: maintains the list of revoked blocks in the
  449.            current transaction. */
  450. struct jbd_revoke_table_s *j_revoke;
  451. };
  452. /* 
  453.  * Journal flag definitions 
  454.  */
  455. #define JFS_UNMOUNT 0x001 /* Journal thread is being destroyed */
  456. #define JFS_ABORT 0x002 /* Journaling has been aborted for errors. */
  457. #define JFS_ACK_ERR 0x004 /* The errno in the sb has been acked */
  458. #define JFS_FLUSHED 0x008 /* The journal superblock has been flushed */
  459. #define JFS_LOADED 0x010 /* The journal superblock has been loaded */
  460. /* 
  461.  * Function declarations for the journaling transaction and buffer
  462.  * management
  463.  */
  464. /* Filing buffers */
  465. extern void __journal_unfile_buffer(struct journal_head *);
  466. extern void journal_unfile_buffer(struct journal_head *);
  467. extern void __journal_refile_buffer(struct journal_head *);
  468. extern void journal_refile_buffer(struct journal_head *);
  469. extern void __journal_file_buffer(struct journal_head *, transaction_t *, int);
  470. extern void __journal_free_buffer(struct journal_head *bh);
  471. extern void journal_file_buffer(struct journal_head *, transaction_t *, int);
  472. extern void __journal_clean_data_list(transaction_t *transaction);
  473. /* Log buffer allocation */
  474. extern struct journal_head * journal_get_descriptor_buffer(journal_t *);
  475. int journal_next_log_block(journal_t *, unsigned long *);
  476. /* Commit management */
  477. void journal_end_buffer_io_sync(struct buffer_head *bh, int uptodate);
  478. extern void journal_commit_transaction(journal_t *);
  479. /* Checkpoint list management */
  480. int __journal_clean_checkpoint_list(journal_t *journal);
  481. extern void journal_remove_checkpoint(struct journal_head *);
  482. extern void __journal_remove_checkpoint(struct journal_head *);
  483. extern void journal_insert_checkpoint(struct journal_head *, transaction_t *);
  484. extern void __journal_insert_checkpoint(struct journal_head *,transaction_t *);
  485. /* Buffer IO */
  486. extern int 
  487. journal_write_metadata_buffer(transaction_t   *transaction,
  488.       struct journal_head  *jh_in,
  489.       struct journal_head **jh_out,
  490.       int    blocknr);
  491. /* Transaction locking */
  492. extern void __wait_on_journal (journal_t *);
  493. /*
  494.  * Journal locking.
  495.  *
  496.  * We need to lock the journal during transaction state changes so that
  497.  * nobody ever tries to take a handle on the running transaction while
  498.  * we are in the middle of moving it to the commit phase.  
  499.  *
  500.  * Note that the locking is completely interrupt unsafe.  We never touch
  501.  * journal structures from interrupts.
  502.  *
  503.  * In 2.2, the BKL was required for lock_journal.  This is no longer
  504.  * the case.
  505.  */
  506. static inline void lock_journal(journal_t *journal)
  507. {
  508. down(&journal->j_sem);
  509. }
  510. /* This returns zero if we acquired the semaphore */
  511. static inline int try_lock_journal(journal_t * journal)
  512. {
  513. return down_trylock(&journal->j_sem);
  514. }
  515. static inline void unlock_journal(journal_t * journal)
  516. {
  517. up(&journal->j_sem);
  518. }
  519. static inline handle_t *journal_current_handle(void)
  520. {
  521. return current->journal_info;
  522. }
  523. /* The journaling code user interface:
  524.  *
  525.  * Create and destroy handles
  526.  * Register buffer modifications against the current transaction. 
  527.  */
  528. extern handle_t *journal_start(journal_t *, int nblocks);
  529. extern handle_t *journal_try_start(journal_t *, int nblocks);
  530. extern int  journal_restart (handle_t *, int nblocks);
  531. extern int  journal_extend (handle_t *, int nblocks);
  532. extern int  journal_get_write_access (handle_t *, struct buffer_head *);
  533. extern int  journal_get_create_access (handle_t *, struct buffer_head *);
  534. extern int  journal_get_undo_access (handle_t *, struct buffer_head *);
  535. extern int  journal_dirty_data (handle_t *,
  536. struct buffer_head *, int async);
  537. extern int  journal_dirty_metadata (handle_t *, struct buffer_head *);
  538. extern void  journal_release_buffer (handle_t *, struct buffer_head *);
  539. extern void  journal_forget (handle_t *, struct buffer_head *);
  540. extern void  journal_sync_buffer (struct buffer_head *);
  541. extern int  journal_flushpage(journal_t *, struct page *, unsigned long);
  542. extern int  journal_try_to_free_buffers(journal_t *, struct page *, int);
  543. extern int  journal_stop(handle_t *);
  544. extern int  journal_flush (journal_t *);
  545. extern void  journal_callback_set(handle_t *handle,
  546.       void (*fn)(struct journal_callback *,int),
  547.       struct journal_callback *jcb);
  548. extern void  journal_lock_updates (journal_t *);
  549. extern void  journal_unlock_updates (journal_t *);
  550. extern journal_t * journal_init_dev(kdev_t dev, kdev_t fs_dev,
  551. int start, int len, int bsize);
  552. extern journal_t * journal_init_inode (struct inode *);
  553. extern int    journal_update_format (journal_t *);
  554. extern int    journal_check_used_features 
  555.    (journal_t *, unsigned long, unsigned long, unsigned long);
  556. extern int    journal_check_available_features 
  557.    (journal_t *, unsigned long, unsigned long, unsigned long);
  558. extern int    journal_set_features 
  559.    (journal_t *, unsigned long, unsigned long, unsigned long);
  560. extern int    journal_create     (journal_t *);
  561. extern int    journal_load       (journal_t *journal);
  562. extern void    journal_destroy    (journal_t *);
  563. extern int    journal_recover    (journal_t *journal);
  564. extern int    journal_wipe       (journal_t *, int);
  565. extern int    journal_skip_recovery (journal_t *);
  566. extern void    journal_update_superblock (journal_t *, int);
  567. extern void    __journal_abort_hard (journal_t *);
  568. extern void    __journal_abort_soft (journal_t *, int);
  569. extern void    journal_abort      (journal_t *, int);
  570. extern int    journal_errno      (journal_t *);
  571. extern void    journal_ack_err    (journal_t *);
  572. extern int    journal_clear_err  (journal_t *);
  573. extern int    journal_bmap(journal_t *, unsigned long, unsigned long *);
  574. extern int    journal_force_commit(journal_t *);
  575. /*
  576.  * journal_head management
  577.  */
  578. extern struct journal_head
  579. *journal_add_journal_head(struct buffer_head *bh);
  580. extern void journal_remove_journal_head(struct buffer_head *bh);
  581. extern void __journal_remove_journal_head(struct buffer_head *bh);
  582. extern void journal_unlock_journal_head(struct journal_head *jh);
  583. /* Primary revoke support */
  584. #define JOURNAL_REVOKE_DEFAULT_HASH 256
  585. extern int    journal_init_revoke(journal_t *, int);
  586. extern void    journal_destroy_revoke_caches(void);
  587. extern int    journal_init_revoke_caches(void);
  588. extern void    journal_destroy_revoke(journal_t *);
  589. extern int    journal_revoke (handle_t *,
  590. unsigned long, struct buffer_head *);
  591. extern int    journal_cancel_revoke(handle_t *, struct journal_head *);
  592. extern void    journal_write_revoke_records(journal_t *, transaction_t *);
  593. /* Recovery revoke support */
  594. extern int    journal_set_revoke(journal_t *, unsigned long, tid_t);
  595. extern int    journal_test_revoke(journal_t *, unsigned long, tid_t);
  596. extern void    journal_clear_revoke(journal_t *);
  597. extern void    journal_brelse_array(struct buffer_head *b[], int n);
  598. /* The log thread user interface:
  599.  *
  600.  * Request space in the current transaction, and force transaction commit
  601.  * transitions on demand.
  602.  */
  603. extern int log_space_left (journal_t *); /* Called with journal locked */
  604. extern tid_t log_start_commit (journal_t *, transaction_t *);
  605. extern void log_wait_commit (journal_t *, tid_t);
  606. extern int log_do_checkpoint (journal_t *, int);
  607. extern void log_wait_for_space(journal_t *, int nblocks);
  608. extern void __journal_drop_transaction(journal_t *, transaction_t *);
  609. extern int cleanup_journal_tail(journal_t *);
  610. /* Reduce journal memory usage by flushing */
  611. extern void shrink_journal_memory(void);
  612. /* Debugging code only: */
  613. #define jbd_ENOSYS() 
  614. do {       
  615. printk (KERN_ERR "JBD unimplemented function " __FUNCTION__); 
  616. current->state = TASK_UNINTERRUPTIBLE;       
  617. schedule();       
  618. } while (1)
  619. extern void __jbd_unexpected_dirty_buffer(char *, int, struct journal_head *);
  620. #define jbd_unexpected_dirty_buffer(jh) 
  621. __jbd_unexpected_dirty_buffer(__FUNCTION__, __LINE__, (jh))
  622. /*
  623.  * is_journal_abort
  624.  *
  625.  * Simple test wrapper function to test the JFS_ABORT state flag.  This
  626.  * bit, when set, indicates that we have had a fatal error somewhere,
  627.  * either inside the journaling layer or indicated to us by the client
  628.  * (eg. ext3), and that we and should not commit any further
  629.  * transactions.  
  630.  */
  631. static inline int is_journal_aborted(journal_t *journal)
  632. {
  633. return journal->j_flags & JFS_ABORT;
  634. }
  635. static inline int is_handle_aborted(handle_t *handle)
  636. {
  637. if (handle->h_aborted)
  638. return 1;
  639. return is_journal_aborted(handle->h_transaction->t_journal);
  640. }
  641. static inline void journal_abort_handle(handle_t *handle)
  642. {
  643. handle->h_aborted = 1;
  644. }
  645. /* Not all architectures define BUG() */
  646. #ifndef BUG
  647.  #define BUG() do { 
  648.         printk("kernel BUG at %s:%d!n", __FILE__, __LINE__); 
  649. * ((char *) 0) = 0; 
  650.  } while (0)
  651. #endif /* BUG */
  652. #endif /* __KERNEL__   */
  653. /* Comparison functions for transaction IDs: perform comparisons using
  654.  * modulo arithmetic so that they work over sequence number wraps. */
  655. static inline int tid_gt(tid_t x, tid_t y)
  656. {
  657. int difference = (x - y);
  658. return (difference > 0);
  659. }
  660. static inline int tid_geq(tid_t x, tid_t y)
  661. {
  662. int difference = (x - y);
  663. return (difference >= 0);
  664. }
  665. extern int journal_blocks_per_page(struct inode *inode);
  666. /*
  667.  * Definitions which augment the buffer_head layer
  668.  */
  669. /* journaling buffer types */
  670. #define BJ_None 0 /* Not journaled */
  671. #define BJ_SyncData 1 /* Normal data: flush before commit */
  672. #define BJ_AsyncData 2 /* writepage data: wait on it before commit */
  673. #define BJ_Metadata 3 /* Normal journaled metadata */
  674. #define BJ_Forget 4 /* Buffer superseded by this transaction */
  675. #define BJ_IO 5 /* Buffer is for temporary IO use */
  676. #define BJ_Shadow 6 /* Buffer contents being shadowed to the log */
  677. #define BJ_LogCtl 7 /* Buffer contains log descriptors */
  678. #define BJ_Reserved 8 /* Buffer is reserved for access by journal */
  679. #define BJ_Types 9
  680.  
  681. #ifdef __KERNEL__
  682. extern spinlock_t jh_splice_lock;
  683. /*
  684.  * Once `expr1' has been found true, take jh_splice_lock
  685.  * and then reevaluate everything.
  686.  */
  687. #define SPLICE_LOCK(expr1, expr2)
  688. ({
  689. int ret = (expr1);
  690. if (ret) {
  691. spin_lock(&jh_splice_lock);
  692. ret = (expr1) && (expr2);
  693. spin_unlock(&jh_splice_lock);
  694. }
  695. ret;
  696. })
  697. /*
  698.  * A number of buffer state predicates.  They test for
  699.  * buffer_jbd() because they are used in core kernel code.
  700.  *
  701.  * These will be racy on SMP unless we're *sure* that the
  702.  * buffer won't be detached from the journalling system
  703.  * in parallel.
  704.  */
  705. /* Return true if the buffer is on journal list `list' */
  706. static inline int buffer_jlist_eq(struct buffer_head *bh, int list)
  707. {
  708. return SPLICE_LOCK(buffer_jbd(bh), bh2jh(bh)->b_jlist == list);
  709. }
  710. /* Return true if this bufer is dirty wrt the journal */
  711. static inline int buffer_jdirty(struct buffer_head *bh)
  712. {
  713. return buffer_jbd(bh) && __buffer_state(bh, JBDDirty);
  714. }
  715. /* Return true if it's a data buffer which journalling is managing */
  716. static inline int buffer_jbd_data(struct buffer_head *bh)
  717. {
  718. return SPLICE_LOCK(buffer_jbd(bh),
  719. bh2jh(bh)->b_jlist == BJ_SyncData ||
  720. bh2jh(bh)->b_jlist == BJ_AsyncData);
  721. }
  722. #ifdef CONFIG_SMP
  723. #define assert_spin_locked(lock) J_ASSERT(spin_is_locked(lock))
  724. #else
  725. #define assert_spin_locked(lock) do {} while(0)
  726. #endif
  727. #define buffer_trace_init(bh) do {} while (0)
  728. #define print_buffer_fields(bh) do {} while (0)
  729. #define print_buffer_trace(bh) do {} while (0)
  730. #define BUFFER_TRACE(bh, info) do {} while (0)
  731. #define BUFFER_TRACE2(bh, bh2, info) do {} while (0)
  732. #define JBUFFER_TRACE(jh, info) do {} while (0)
  733. #endif /* __KERNEL__ */
  734. #endif /* CONFIG_JBD || CONFIG_JBD_MODULE || !__KERNEL__ */
  735. /*
  736.  * Compatibility no-ops which allow the kernel to compile without CONFIG_JBD
  737.  * go here.
  738.  */
  739. #if defined(__KERNEL__) && !(defined(CONFIG_JBD) || defined(CONFIG_JBD_MODULE))
  740. #define J_ASSERT(expr) do {} while (0)
  741. #define J_ASSERT_BH(bh, expr) do {} while (0)
  742. #define buffer_jbd(bh) 0
  743. #define buffer_jlist_eq(bh, val) 0
  744. #define journal_buffer_journal_lru(bh) 0
  745. #endif /* defined(__KERNEL__) && !defined(CONFIG_JBD) */
  746. #endif /* _LINUX_JBD_H */