journal.h 22 KB

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