journal.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  1. /* -*- mode: c; c-basic-offset: 8; -*-
  2. * vim: noexpandtab sw=8 ts=8 sts=0:
  3. *
  4. * journal.h
  5. *
  6. * Defines journalling api and structures.
  7. *
  8. * Copyright (C) 2003, 2005 Oracle. All rights reserved.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2 of the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public
  21. * License along with this program; if not, write to the
  22. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23. * Boston, MA 021110-1307, USA.
  24. */
  25. #ifndef OCFS2_JOURNAL_H
  26. #define OCFS2_JOURNAL_H
  27. #include <linux/fs.h>
  28. #include <linux/jbd2.h>
  29. enum ocfs2_journal_state {
  30. OCFS2_JOURNAL_FREE = 0,
  31. OCFS2_JOURNAL_LOADED,
  32. OCFS2_JOURNAL_IN_SHUTDOWN,
  33. };
  34. struct ocfs2_super;
  35. struct ocfs2_dinode;
  36. /*
  37. * The recovery_list is a simple linked list of node numbers to recover.
  38. * It is protected by the recovery_lock.
  39. */
  40. struct ocfs2_recovery_map {
  41. unsigned int rm_used;
  42. unsigned int *rm_entries;
  43. };
  44. struct ocfs2_journal {
  45. enum ocfs2_journal_state j_state; /* Journals current state */
  46. journal_t *j_journal; /* The kernels journal type */
  47. struct inode *j_inode; /* Kernel inode pointing to
  48. * this journal */
  49. struct ocfs2_super *j_osb; /* pointer to the super
  50. * block for the node
  51. * we're currently
  52. * running on -- not
  53. * necessarily the super
  54. * block from the node
  55. * which we usually run
  56. * from (recovery,
  57. * etc) */
  58. struct buffer_head *j_bh; /* Journal disk inode block */
  59. atomic_t j_num_trans; /* Number of transactions
  60. * currently in the system. */
  61. unsigned long j_trans_id;
  62. struct rw_semaphore j_trans_barrier;
  63. wait_queue_head_t j_checkpointed;
  64. spinlock_t j_lock;
  65. struct list_head j_la_cleanups;
  66. struct work_struct j_recovery_work;
  67. };
  68. extern spinlock_t trans_inc_lock;
  69. /* wrap j_trans_id so we never have it equal to zero. */
  70. static inline unsigned long ocfs2_inc_trans_id(struct ocfs2_journal *j)
  71. {
  72. unsigned long old_id;
  73. spin_lock(&trans_inc_lock);
  74. old_id = j->j_trans_id++;
  75. if (unlikely(!j->j_trans_id))
  76. j->j_trans_id = 1;
  77. spin_unlock(&trans_inc_lock);
  78. return old_id;
  79. }
  80. static inline void ocfs2_set_inode_lock_trans(struct ocfs2_journal *journal,
  81. struct inode *inode)
  82. {
  83. spin_lock(&trans_inc_lock);
  84. OCFS2_I(inode)->ip_last_trans = journal->j_trans_id;
  85. spin_unlock(&trans_inc_lock);
  86. }
  87. /* Used to figure out whether it's safe to drop a metadata lock on an
  88. * inode. Returns true if all the inodes changes have been
  89. * checkpointed to disk. You should be holding the spinlock on the
  90. * metadata lock while calling this to be sure that nobody can take
  91. * the lock and put it on another transaction. */
  92. static inline int ocfs2_inode_fully_checkpointed(struct inode *inode)
  93. {
  94. int ret;
  95. struct ocfs2_journal *journal = OCFS2_SB(inode->i_sb)->journal;
  96. spin_lock(&trans_inc_lock);
  97. ret = time_after(journal->j_trans_id, OCFS2_I(inode)->ip_last_trans);
  98. spin_unlock(&trans_inc_lock);
  99. return ret;
  100. }
  101. /* convenience function to check if an inode is still new (has never
  102. * hit disk) Will do you a favor and set created_trans = 0 when you've
  103. * been checkpointed. returns '1' if the inode is still new. */
  104. static inline int ocfs2_inode_is_new(struct inode *inode)
  105. {
  106. int ret;
  107. /* System files are never "new" as they're written out by
  108. * mkfs. This helps us early during mount, before we have the
  109. * journal open and j_trans_id could be junk. */
  110. if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_SYSTEM_FILE)
  111. return 0;
  112. spin_lock(&trans_inc_lock);
  113. ret = !(time_after(OCFS2_SB(inode->i_sb)->journal->j_trans_id,
  114. OCFS2_I(inode)->ip_created_trans));
  115. if (!ret)
  116. OCFS2_I(inode)->ip_created_trans = 0;
  117. spin_unlock(&trans_inc_lock);
  118. return ret;
  119. }
  120. static inline void ocfs2_inode_set_new(struct ocfs2_super *osb,
  121. struct inode *inode)
  122. {
  123. spin_lock(&trans_inc_lock);
  124. OCFS2_I(inode)->ip_created_trans = osb->journal->j_trans_id;
  125. spin_unlock(&trans_inc_lock);
  126. }
  127. /* Exported only for the journal struct init code in super.c. Do not call. */
  128. void ocfs2_complete_recovery(struct work_struct *work);
  129. void ocfs2_wait_for_recovery(struct ocfs2_super *osb);
  130. int ocfs2_recovery_init(struct ocfs2_super *osb);
  131. void ocfs2_recovery_exit(struct ocfs2_super *osb);
  132. int ocfs2_compute_replay_slots(struct ocfs2_super *osb);
  133. /*
  134. * Journal Control:
  135. * Initialize, Load, Shutdown, Wipe a journal.
  136. *
  137. * ocfs2_journal_init - Initialize journal structures in the OSB.
  138. * ocfs2_journal_load - Load the given journal off disk. Replay it if
  139. * there's transactions still in there.
  140. * ocfs2_journal_shutdown - Shutdown a journal, this will flush all
  141. * uncommitted, uncheckpointed transactions.
  142. * ocfs2_journal_wipe - Wipe transactions from a journal. Optionally
  143. * zero out each block.
  144. * ocfs2_recovery_thread - Perform recovery on a node. osb is our own osb.
  145. * ocfs2_mark_dead_nodes - Start recovery on nodes we won't get a heartbeat
  146. * event on.
  147. * ocfs2_start_checkpoint - Kick the commit thread to do a checkpoint.
  148. */
  149. void ocfs2_set_journal_params(struct ocfs2_super *osb);
  150. int ocfs2_journal_init(struct ocfs2_journal *journal,
  151. int *dirty);
  152. void ocfs2_journal_shutdown(struct ocfs2_super *osb);
  153. int ocfs2_journal_wipe(struct ocfs2_journal *journal,
  154. int full);
  155. int ocfs2_journal_load(struct ocfs2_journal *journal, int local,
  156. int replayed);
  157. int ocfs2_check_journals_nolocks(struct ocfs2_super *osb);
  158. void ocfs2_recovery_thread(struct ocfs2_super *osb,
  159. int node_num);
  160. int ocfs2_mark_dead_nodes(struct ocfs2_super *osb);
  161. void ocfs2_complete_mount_recovery(struct ocfs2_super *osb);
  162. void ocfs2_complete_quota_recovery(struct ocfs2_super *osb);
  163. static inline void ocfs2_start_checkpoint(struct ocfs2_super *osb)
  164. {
  165. atomic_set(&osb->needs_checkpoint, 1);
  166. wake_up(&osb->checkpoint_event);
  167. }
  168. static inline void ocfs2_checkpoint_inode(struct inode *inode)
  169. {
  170. struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
  171. if (ocfs2_mount_local(osb))
  172. return;
  173. if (!ocfs2_inode_fully_checkpointed(inode)) {
  174. /* WARNING: This only kicks off a single
  175. * checkpoint. If someone races you and adds more
  176. * metadata to the journal, you won't know, and will
  177. * wind up waiting *alot* longer than necessary. Right
  178. * now we only use this in clear_inode so that's
  179. * OK. */
  180. ocfs2_start_checkpoint(osb);
  181. wait_event(osb->journal->j_checkpointed,
  182. ocfs2_inode_fully_checkpointed(inode));
  183. }
  184. }
  185. /*
  186. * Transaction Handling:
  187. * Manage the lifetime of a transaction handle.
  188. *
  189. * ocfs2_start_trans - Begin a transaction. Give it an upper estimate of
  190. * the number of blocks that will be changed during
  191. * this handle.
  192. * ocfs2_commit_trans - Complete a handle. It might return -EIO if
  193. * the journal was aborted. The majority of paths don't
  194. * check the return value as an error there comes too
  195. * late to do anything (and will be picked up in a
  196. * later transaction).
  197. * ocfs2_extend_trans - Extend a handle by nblocks credits. This may
  198. * commit the handle to disk in the process, but will
  199. * not release any locks taken during the transaction.
  200. * ocfs2_journal_access* - Notify the handle that we want to journal this
  201. * buffer. Will have to call ocfs2_journal_dirty once
  202. * we've actually dirtied it. Type is one of . or .
  203. * Always call the specific flavor of
  204. * ocfs2_journal_access_*() unless you intend to
  205. * manage the checksum by hand.
  206. * ocfs2_journal_dirty - Mark a journalled buffer as having dirty data.
  207. * ocfs2_jbd2_file_inode - Mark an inode so that its data goes out before
  208. * the current handle commits.
  209. */
  210. /* You must always start_trans with a number of buffs > 0, but it's
  211. * perfectly legal to go through an entire transaction without having
  212. * dirtied any buffers. */
  213. handle_t *ocfs2_start_trans(struct ocfs2_super *osb,
  214. int max_buffs);
  215. int ocfs2_commit_trans(struct ocfs2_super *osb,
  216. handle_t *handle);
  217. int ocfs2_extend_trans(handle_t *handle, int nblocks);
  218. /*
  219. * Create access is for when we get a newly created buffer and we're
  220. * not gonna read it off disk, but rather fill it ourselves. Right
  221. * now, we don't do anything special with this (it turns into a write
  222. * request), but this is a good placeholder in case we do...
  223. *
  224. * Write access is for when we read a block off disk and are going to
  225. * modify it. This way the journalling layer knows it may need to make
  226. * a copy of that block (if it's part of another, uncommitted
  227. * transaction) before we do so.
  228. */
  229. #define OCFS2_JOURNAL_ACCESS_CREATE 0
  230. #define OCFS2_JOURNAL_ACCESS_WRITE 1
  231. #define OCFS2_JOURNAL_ACCESS_UNDO 2
  232. /* ocfs2_inode */
  233. int ocfs2_journal_access_di(handle_t *handle, struct inode *inode,
  234. struct buffer_head *bh, int type);
  235. /* ocfs2_extent_block */
  236. int ocfs2_journal_access_eb(handle_t *handle, struct inode *inode,
  237. struct buffer_head *bh, int type);
  238. /* ocfs2_group_desc */
  239. int ocfs2_journal_access_gd(handle_t *handle, struct inode *inode,
  240. struct buffer_head *bh, int type);
  241. /* ocfs2_xattr_block */
  242. int ocfs2_journal_access_xb(handle_t *handle, struct inode *inode,
  243. struct buffer_head *bh, int type);
  244. /* quota blocks */
  245. int ocfs2_journal_access_dq(handle_t *handle, struct inode *inode,
  246. struct buffer_head *bh, int type);
  247. /* dirblock */
  248. int ocfs2_journal_access_db(handle_t *handle, struct inode *inode,
  249. struct buffer_head *bh, int type);
  250. /* ocfs2_dx_root_block */
  251. int ocfs2_journal_access_dr(handle_t *handle, struct inode *inode,
  252. struct buffer_head *bh, int type);
  253. /* ocfs2_dx_leaf */
  254. int ocfs2_journal_access_dl(handle_t *handle, struct inode *inode,
  255. struct buffer_head *bh, int type);
  256. /* Anything that has no ecc */
  257. int ocfs2_journal_access(handle_t *handle, struct inode *inode,
  258. struct buffer_head *bh, int type);
  259. /*
  260. * A word about the journal_access/journal_dirty "dance". It is
  261. * entirely legal to journal_access a buffer more than once (as long
  262. * as the access type is the same -- I'm not sure what will happen if
  263. * access type is different but this should never happen anyway) It is
  264. * also legal to journal_dirty a buffer more than once. In fact, you
  265. * can even journal_access a buffer after you've done a
  266. * journal_access/journal_dirty pair. The only thing you cannot do
  267. * however, is journal_dirty a buffer which you haven't yet passed to
  268. * journal_access at least once.
  269. *
  270. * That said, 99% of the time this doesn't matter and this is what the
  271. * path looks like:
  272. *
  273. * <read a bh>
  274. * ocfs2_journal_access(handle, bh, OCFS2_JOURNAL_ACCESS_WRITE);
  275. * <modify the bh>
  276. * ocfs2_journal_dirty(handle, bh);
  277. */
  278. int ocfs2_journal_dirty(handle_t *handle,
  279. struct buffer_head *bh);
  280. /*
  281. * Credit Macros:
  282. * Convenience macros to calculate number of credits needed.
  283. *
  284. * For convenience sake, I have a set of macros here which calculate
  285. * the *maximum* number of sectors which will be changed for various
  286. * metadata updates.
  287. */
  288. /* simple file updates like chmod, etc. */
  289. #define OCFS2_INODE_UPDATE_CREDITS 1
  290. /* extended attribute block update */
  291. #define OCFS2_XATTR_BLOCK_UPDATE_CREDITS 1
  292. /* global quotafile inode update, data block */
  293. #define OCFS2_QINFO_WRITE_CREDITS (OCFS2_INODE_UPDATE_CREDITS + 1)
  294. /*
  295. * The two writes below can accidentally see global info dirty due
  296. * to set_info() quotactl so make them prepared for the writes.
  297. */
  298. /* quota data block, global info */
  299. /* Write to local quota file */
  300. #define OCFS2_QWRITE_CREDITS (OCFS2_QINFO_WRITE_CREDITS + 1)
  301. /* global quota data block, local quota data block, global quota inode,
  302. * global quota info */
  303. #define OCFS2_QSYNC_CREDITS (OCFS2_INODE_UPDATE_CREDITS + 3)
  304. static inline int ocfs2_quota_trans_credits(struct super_block *sb)
  305. {
  306. int credits = 0;
  307. if (OCFS2_HAS_RO_COMPAT_FEATURE(sb, OCFS2_FEATURE_RO_COMPAT_USRQUOTA))
  308. credits += OCFS2_QWRITE_CREDITS;
  309. if (OCFS2_HAS_RO_COMPAT_FEATURE(sb, OCFS2_FEATURE_RO_COMPAT_GRPQUOTA))
  310. credits += OCFS2_QWRITE_CREDITS;
  311. return credits;
  312. }
  313. /* Number of credits needed for removing quota structure from file */
  314. int ocfs2_calc_qdel_credits(struct super_block *sb, int type);
  315. /* Number of credits needed for initialization of new quota structure */
  316. int ocfs2_calc_qinit_credits(struct super_block *sb, int type);
  317. /* group extend. inode update and last group update. */
  318. #define OCFS2_GROUP_EXTEND_CREDITS (OCFS2_INODE_UPDATE_CREDITS + 1)
  319. /* group add. inode update and the new group update. */
  320. #define OCFS2_GROUP_ADD_CREDITS (OCFS2_INODE_UPDATE_CREDITS + 1)
  321. /* get one bit out of a suballocator: dinode + group descriptor +
  322. * prev. group desc. if we relink. */
  323. #define OCFS2_SUBALLOC_ALLOC (3)
  324. static inline int ocfs2_inline_to_extents_credits(struct super_block *sb)
  325. {
  326. return OCFS2_SUBALLOC_ALLOC + OCFS2_INODE_UPDATE_CREDITS +
  327. ocfs2_quota_trans_credits(sb);
  328. }
  329. /* dinode + group descriptor update. We don't relink on free yet. */
  330. #define OCFS2_SUBALLOC_FREE (2)
  331. #define OCFS2_TRUNCATE_LOG_UPDATE OCFS2_INODE_UPDATE_CREDITS
  332. #define OCFS2_TRUNCATE_LOG_FLUSH_ONE_REC (OCFS2_SUBALLOC_FREE \
  333. + OCFS2_TRUNCATE_LOG_UPDATE)
  334. static inline int ocfs2_remove_extent_credits(struct super_block *sb)
  335. {
  336. return OCFS2_TRUNCATE_LOG_UPDATE + OCFS2_INODE_UPDATE_CREDITS +
  337. ocfs2_quota_trans_credits(sb);
  338. }
  339. /* data block for new dir/symlink, 2 for bitmap updates (bitmap fe +
  340. * bitmap block for the new bit) dx_root update for free list */
  341. #define OCFS2_DIR_LINK_ADDITIONAL_CREDITS (1 + 2 + 1)
  342. static inline int ocfs2_add_dir_index_credits(struct super_block *sb)
  343. {
  344. /* 1 block for index, 2 allocs (data, metadata), 1 clusters
  345. * worth of blocks for initial extent. */
  346. return 1 + 2 * OCFS2_SUBALLOC_ALLOC +
  347. ocfs2_clusters_to_blocks(sb, 1);
  348. }
  349. /* parent fe, parent block, new file entry, index leaf, inode alloc fe, inode
  350. * alloc group descriptor + mkdir/symlink blocks + dir blocks + xattr
  351. * blocks + quota update */
  352. static inline int ocfs2_mknod_credits(struct super_block *sb, int is_dir,
  353. int xattr_credits)
  354. {
  355. int dir_credits = OCFS2_DIR_LINK_ADDITIONAL_CREDITS;
  356. if (is_dir)
  357. dir_credits += ocfs2_add_dir_index_credits(sb);
  358. return 4 + OCFS2_SUBALLOC_ALLOC + dir_credits + xattr_credits +
  359. ocfs2_quota_trans_credits(sb);
  360. }
  361. /* local alloc metadata change + main bitmap updates */
  362. #define OCFS2_WINDOW_MOVE_CREDITS (OCFS2_INODE_UPDATE_CREDITS \
  363. + OCFS2_SUBALLOC_ALLOC + OCFS2_SUBALLOC_FREE)
  364. /* used when we don't need an allocation change for a dir extend. One
  365. * for the dinode, one for the new block. */
  366. #define OCFS2_SIMPLE_DIR_EXTEND_CREDITS (2)
  367. /* file update (nlink, etc) + directory mtime/ctime + dir entry block + quota
  368. * update on dir + index leaf + dx root update for free list */
  369. static inline int ocfs2_link_credits(struct super_block *sb)
  370. {
  371. return 2*OCFS2_INODE_UPDATE_CREDITS + 3 +
  372. ocfs2_quota_trans_credits(sb);
  373. }
  374. /* inode + dir inode (if we unlink a dir), + dir entry block + orphan
  375. * dir inode link + dir inode index leaf + dir index root */
  376. static inline int ocfs2_unlink_credits(struct super_block *sb)
  377. {
  378. /* The quota update from ocfs2_link_credits is unused here... */
  379. return 2 * OCFS2_INODE_UPDATE_CREDITS + 3 + ocfs2_link_credits(sb);
  380. }
  381. /* dinode + orphan dir dinode + inode alloc dinode + orphan dir entry +
  382. * inode alloc group descriptor + orphan dir index leaf */
  383. #define OCFS2_DELETE_INODE_CREDITS (3 * OCFS2_INODE_UPDATE_CREDITS + 3)
  384. /* dinode update, old dir dinode update, new dir dinode update, old
  385. * dir dir entry, new dir dir entry, dir entry update for renaming
  386. * directory + target unlink + 3 x dir index leaves */
  387. static inline int ocfs2_rename_credits(struct super_block *sb)
  388. {
  389. return 3 * OCFS2_INODE_UPDATE_CREDITS + 6 + ocfs2_unlink_credits(sb);
  390. }
  391. /* global bitmap dinode, group desc., relinked group,
  392. * suballocator dinode, group desc., relinked group,
  393. * dinode, xattr block */
  394. #define OCFS2_XATTR_BLOCK_CREATE_CREDITS (OCFS2_SUBALLOC_ALLOC * 2 + \
  395. + OCFS2_INODE_UPDATE_CREDITS \
  396. + OCFS2_XATTR_BLOCK_UPDATE_CREDITS)
  397. /* inode update, removal of dx root block from allocator */
  398. #define OCFS2_DX_ROOT_REMOVE_CREDITS (OCFS2_INODE_UPDATE_CREDITS + \
  399. OCFS2_SUBALLOC_FREE)
  400. static inline int ocfs2_calc_dxi_expand_credits(struct super_block *sb)
  401. {
  402. int credits = 1 + OCFS2_SUBALLOC_ALLOC;
  403. credits += ocfs2_clusters_to_blocks(sb, 1);
  404. credits += ocfs2_quota_trans_credits(sb);
  405. return credits;
  406. }
  407. /*
  408. * Please note that the caller must make sure that root_el is the root
  409. * of extent tree. So for an inode, it should be &fe->id2.i_list. Otherwise
  410. * the result may be wrong.
  411. */
  412. static inline int ocfs2_calc_extend_credits(struct super_block *sb,
  413. struct ocfs2_extent_list *root_el,
  414. u32 bits_wanted)
  415. {
  416. int bitmap_blocks, sysfile_bitmap_blocks, extent_blocks;
  417. /* bitmap dinode, group desc. + relinked group. */
  418. bitmap_blocks = OCFS2_SUBALLOC_ALLOC;
  419. /* we might need to shift tree depth so lets assume an
  420. * absolute worst case of complete fragmentation. Even with
  421. * that, we only need one update for the dinode, and then
  422. * however many metadata chunks needed * a remaining suballoc
  423. * alloc. */
  424. sysfile_bitmap_blocks = 1 +
  425. (OCFS2_SUBALLOC_ALLOC - 1) * ocfs2_extend_meta_needed(root_el);
  426. /* this does not include *new* metadata blocks, which are
  427. * accounted for in sysfile_bitmap_blocks. root_el +
  428. * prev. last_eb_blk + blocks along edge of tree.
  429. * calc_symlink_credits passes because we just need 1
  430. * credit for the dinode there. */
  431. extent_blocks = 1 + 1 + le16_to_cpu(root_el->l_tree_depth);
  432. return bitmap_blocks + sysfile_bitmap_blocks + extent_blocks +
  433. ocfs2_quota_trans_credits(sb);
  434. }
  435. static inline int ocfs2_calc_symlink_credits(struct super_block *sb)
  436. {
  437. int blocks = ocfs2_mknod_credits(sb, 0, 0);
  438. /* links can be longer than one block so we may update many
  439. * within our single allocated extent. */
  440. blocks += ocfs2_clusters_to_blocks(sb, 1);
  441. return blocks + ocfs2_quota_trans_credits(sb);
  442. }
  443. static inline int ocfs2_calc_group_alloc_credits(struct super_block *sb,
  444. unsigned int cpg)
  445. {
  446. int blocks;
  447. int bitmap_blocks = OCFS2_SUBALLOC_ALLOC + 1;
  448. /* parent inode update + new block group header + bitmap inode update
  449. + bitmap blocks affected */
  450. blocks = 1 + 1 + 1 + bitmap_blocks;
  451. return blocks;
  452. }
  453. static inline int ocfs2_calc_tree_trunc_credits(struct super_block *sb,
  454. unsigned int clusters_to_del,
  455. struct ocfs2_dinode *fe,
  456. struct ocfs2_extent_list *last_el)
  457. {
  458. /* for dinode + all headers in this pass + update to next leaf */
  459. u16 next_free = le16_to_cpu(last_el->l_next_free_rec);
  460. u16 tree_depth = le16_to_cpu(fe->id2.i_list.l_tree_depth);
  461. int credits = 1 + tree_depth + 1;
  462. int i;
  463. i = next_free - 1;
  464. BUG_ON(i < 0);
  465. /* We may be deleting metadata blocks, so metadata alloc dinode +
  466. one desc. block for each possible delete. */
  467. if (tree_depth && next_free == 1 &&
  468. ocfs2_rec_clusters(last_el, &last_el->l_recs[i]) == clusters_to_del)
  469. credits += 1 + tree_depth;
  470. /* update to the truncate log. */
  471. credits += OCFS2_TRUNCATE_LOG_UPDATE;
  472. credits += ocfs2_quota_trans_credits(sb);
  473. return credits;
  474. }
  475. static inline int ocfs2_jbd2_file_inode(handle_t *handle, struct inode *inode)
  476. {
  477. return jbd2_journal_file_inode(handle, &OCFS2_I(inode)->ip_jinode);
  478. }
  479. static inline int ocfs2_begin_ordered_truncate(struct inode *inode,
  480. loff_t new_size)
  481. {
  482. return jbd2_journal_begin_ordered_truncate(
  483. OCFS2_SB(inode->i_sb)->journal->j_journal,
  484. &OCFS2_I(inode)->ip_jinode,
  485. new_size);
  486. }
  487. #endif /* OCFS2_JOURNAL_H */