blob: bca370dab021d86978681d849087ff1930e3a7f8 [file] [log] [blame]
Mark Fashehccd979b2005-12-15 14:31:24 -08001/* -*- 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
26#ifndef OCFS2_JOURNAL_H
27#define OCFS2_JOURNAL_H
28
29#include <linux/fs.h>
Mark Fasheh53ef99c2008-11-18 16:53:43 -080030#include <linux/jbd2.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080031
Mark Fashehccd979b2005-12-15 14:31:24 -080032enum ocfs2_journal_state {
33 OCFS2_JOURNAL_FREE = 0,
34 OCFS2_JOURNAL_LOADED,
35 OCFS2_JOURNAL_IN_SHUTDOWN,
36};
37
38struct ocfs2_super;
39struct ocfs2_dinode;
Mark Fashehccd979b2005-12-15 14:31:24 -080040
41struct ocfs2_journal {
42 enum ocfs2_journal_state j_state; /* Journals current state */
43
44 journal_t *j_journal; /* The kernels journal type */
45 struct inode *j_inode; /* Kernel inode pointing to
46 * this journal */
47 struct ocfs2_super *j_osb; /* pointer to the super
48 * block for the node
49 * we're currently
50 * running on -- not
51 * necessarily the super
52 * block from the node
53 * which we usually run
54 * from (recovery,
55 * etc) */
56 struct buffer_head *j_bh; /* Journal disk inode block */
57 atomic_t j_num_trans; /* Number of transactions
58 * currently in the system. */
59 unsigned long j_trans_id;
60 struct rw_semaphore j_trans_barrier;
61 wait_queue_head_t j_checkpointed;
62
63 spinlock_t j_lock;
64 struct list_head j_la_cleanups;
65 struct work_struct j_recovery_work;
66};
67
68extern spinlock_t trans_inc_lock;
69
70/* wrap j_trans_id so we never have it equal to zero. */
71static inline unsigned long ocfs2_inc_trans_id(struct ocfs2_journal *j)
72{
73 unsigned long old_id;
74 spin_lock(&trans_inc_lock);
75 old_id = j->j_trans_id++;
76 if (unlikely(!j->j_trans_id))
77 j->j_trans_id = 1;
78 spin_unlock(&trans_inc_lock);
79 return old_id;
80}
81
82static inline void ocfs2_set_inode_lock_trans(struct ocfs2_journal *journal,
83 struct inode *inode)
84{
85 spin_lock(&trans_inc_lock);
86 OCFS2_I(inode)->ip_last_trans = journal->j_trans_id;
87 spin_unlock(&trans_inc_lock);
88}
89
90/* Used to figure out whether it's safe to drop a metadata lock on an
91 * inode. Returns true if all the inodes changes have been
92 * checkpointed to disk. You should be holding the spinlock on the
93 * metadata lock while calling this to be sure that nobody can take
94 * the lock and put it on another transaction. */
95static inline int ocfs2_inode_fully_checkpointed(struct inode *inode)
96{
97 int ret;
98 struct ocfs2_journal *journal = OCFS2_SB(inode->i_sb)->journal;
99
100 spin_lock(&trans_inc_lock);
101 ret = time_after(journal->j_trans_id, OCFS2_I(inode)->ip_last_trans);
102 spin_unlock(&trans_inc_lock);
103 return ret;
104}
105
106/* convenience function to check if an inode is still new (has never
107 * hit disk) Will do you a favor and set created_trans = 0 when you've
108 * been checkpointed. returns '1' if the inode is still new. */
109static inline int ocfs2_inode_is_new(struct inode *inode)
110{
111 int ret;
112
113 /* System files are never "new" as they're written out by
114 * mkfs. This helps us early during mount, before we have the
115 * journal open and j_trans_id could be junk. */
116 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_SYSTEM_FILE)
117 return 0;
118 spin_lock(&trans_inc_lock);
119 ret = !(time_after(OCFS2_SB(inode->i_sb)->journal->j_trans_id,
120 OCFS2_I(inode)->ip_created_trans));
121 if (!ret)
122 OCFS2_I(inode)->ip_created_trans = 0;
123 spin_unlock(&trans_inc_lock);
124 return ret;
125}
126
127static inline void ocfs2_inode_set_new(struct ocfs2_super *osb,
128 struct inode *inode)
129{
130 spin_lock(&trans_inc_lock);
131 OCFS2_I(inode)->ip_created_trans = osb->journal->j_trans_id;
132 spin_unlock(&trans_inc_lock);
133}
134
Mark Fashehccd979b2005-12-15 14:31:24 -0800135/* Exported only for the journal struct init code in super.c. Do not call. */
David Howellsc4028952006-11-22 14:57:56 +0000136void ocfs2_complete_recovery(struct work_struct *work);
Joel Becker553abd02008-02-01 12:03:57 -0800137void ocfs2_wait_for_recovery(struct ocfs2_super *osb);
138
139int ocfs2_recovery_init(struct ocfs2_super *osb);
140void ocfs2_recovery_exit(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800141
142/*
143 * Journal Control:
144 * Initialize, Load, Shutdown, Wipe a journal.
145 *
146 * ocfs2_journal_init - Initialize journal structures in the OSB.
147 * ocfs2_journal_load - Load the given journal off disk. Replay it if
148 * there's transactions still in there.
149 * ocfs2_journal_shutdown - Shutdown a journal, this will flush all
150 * uncommitted, uncheckpointed transactions.
151 * ocfs2_journal_wipe - Wipe transactions from a journal. Optionally
152 * zero out each block.
153 * ocfs2_recovery_thread - Perform recovery on a node. osb is our own osb.
154 * ocfs2_mark_dead_nodes - Start recovery on nodes we won't get a heartbeat
155 * event on.
156 * ocfs2_start_checkpoint - Kick the commit thread to do a checkpoint.
157 */
158void ocfs2_set_journal_params(struct ocfs2_super *osb);
159int ocfs2_journal_init(struct ocfs2_journal *journal,
160 int *dirty);
161void ocfs2_journal_shutdown(struct ocfs2_super *osb);
162int ocfs2_journal_wipe(struct ocfs2_journal *journal,
163 int full);
Sunil Mushran539d8262008-07-14 17:31:10 -0700164int ocfs2_journal_load(struct ocfs2_journal *journal, int local,
165 int replayed);
Mark Fashehccd979b2005-12-15 14:31:24 -0800166int ocfs2_check_journals_nolocks(struct ocfs2_super *osb);
167void ocfs2_recovery_thread(struct ocfs2_super *osb,
168 int node_num);
169int ocfs2_mark_dead_nodes(struct ocfs2_super *osb);
170void ocfs2_complete_mount_recovery(struct ocfs2_super *osb);
Jan Kara22053632008-10-20 23:50:38 +0200171void ocfs2_complete_quota_recovery(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800172
173static inline void ocfs2_start_checkpoint(struct ocfs2_super *osb)
174{
175 atomic_set(&osb->needs_checkpoint, 1);
176 wake_up(&osb->checkpoint_event);
177}
178
179static inline void ocfs2_checkpoint_inode(struct inode *inode)
180{
181 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
182
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800183 if (ocfs2_mount_local(osb))
184 return;
185
Mark Fashehccd979b2005-12-15 14:31:24 -0800186 if (!ocfs2_inode_fully_checkpointed(inode)) {
187 /* WARNING: This only kicks off a single
188 * checkpoint. If someone races you and adds more
189 * metadata to the journal, you won't know, and will
190 * wind up waiting *alot* longer than necessary. Right
191 * now we only use this in clear_inode so that's
192 * OK. */
193 ocfs2_start_checkpoint(osb);
194
195 wait_event(osb->journal->j_checkpointed,
196 ocfs2_inode_fully_checkpointed(inode));
197 }
198}
199
200/*
201 * Transaction Handling:
202 * Manage the lifetime of a transaction handle.
203 *
Mark Fashehccd979b2005-12-15 14:31:24 -0800204 * ocfs2_start_trans - Begin a transaction. Give it an upper estimate of
205 * the number of blocks that will be changed during
206 * this handle.
Mark Fasheh1fabe142006-10-09 18:11:45 -0700207 * ocfs2_commit_trans - Complete a handle. It might return -EIO if
208 * the journal was aborted. The majority of paths don't
209 * check the return value as an error there comes too
210 * late to do anything (and will be picked up in a
211 * later transaction).
Mark Fashehccd979b2005-12-15 14:31:24 -0800212 * ocfs2_extend_trans - Extend a handle by nblocks credits. This may
213 * commit the handle to disk in the process, but will
214 * not release any locks taken during the transaction.
Joel Becker50655ae2008-09-11 15:53:07 -0700215 * ocfs2_journal_access* - Notify the handle that we want to journal this
Mark Fashehccd979b2005-12-15 14:31:24 -0800216 * buffer. Will have to call ocfs2_journal_dirty once
217 * we've actually dirtied it. Type is one of . or .
Joel Becker50655ae2008-09-11 15:53:07 -0700218 * Always call the specific flavor of
219 * ocfs2_journal_access_*() unless you intend to
220 * manage the checksum by hand.
Mark Fashehccd979b2005-12-15 14:31:24 -0800221 * ocfs2_journal_dirty - Mark a journalled buffer as having dirty data.
Joel Becker2b4e30f2008-09-03 20:03:41 -0700222 * ocfs2_jbd2_file_inode - Mark an inode so that its data goes out before
223 * the current handle commits.
Mark Fashehccd979b2005-12-15 14:31:24 -0800224 */
225
226/* You must always start_trans with a number of buffs > 0, but it's
227 * perfectly legal to go through an entire transaction without having
228 * dirtied any buffers. */
Mark Fasheh1fabe142006-10-09 18:11:45 -0700229handle_t *ocfs2_start_trans(struct ocfs2_super *osb,
Mark Fashehccd979b2005-12-15 14:31:24 -0800230 int max_buffs);
Mark Fasheh1fabe142006-10-09 18:11:45 -0700231int ocfs2_commit_trans(struct ocfs2_super *osb,
232 handle_t *handle);
Mark Fasheh1fc58142006-10-05 14:15:36 -0700233int ocfs2_extend_trans(handle_t *handle, int nblocks);
Mark Fashehccd979b2005-12-15 14:31:24 -0800234
235/*
236 * Create access is for when we get a newly created buffer and we're
237 * not gonna read it off disk, but rather fill it ourselves. Right
238 * now, we don't do anything special with this (it turns into a write
239 * request), but this is a good placeholder in case we do...
240 *
241 * Write access is for when we read a block off disk and are going to
242 * modify it. This way the journalling layer knows it may need to make
243 * a copy of that block (if it's part of another, uncommitted
244 * transaction) before we do so.
245 */
246#define OCFS2_JOURNAL_ACCESS_CREATE 0
247#define OCFS2_JOURNAL_ACCESS_WRITE 1
248#define OCFS2_JOURNAL_ACCESS_UNDO 2
249
Joel Becker50655ae2008-09-11 15:53:07 -0700250/* ocfs2_inode */
251int ocfs2_journal_access_di(handle_t *handle, struct inode *inode,
252 struct buffer_head *bh, int type);
253/* ocfs2_extent_block */
254int ocfs2_journal_access_eb(handle_t *handle, struct inode *inode,
255 struct buffer_head *bh, int type);
256/* ocfs2_group_desc */
257int ocfs2_journal_access_gd(handle_t *handle, struct inode *inode,
258 struct buffer_head *bh, int type);
259/* ocfs2_xattr_block */
260int ocfs2_journal_access_xb(handle_t *handle, struct inode *inode,
261 struct buffer_head *bh, int type);
262/* quota blocks */
263int ocfs2_journal_access_dq(handle_t *handle, struct inode *inode,
264 struct buffer_head *bh, int type);
265/* dirblock */
266int ocfs2_journal_access_db(handle_t *handle, struct inode *inode,
267 struct buffer_head *bh, int type);
268/* Anything that has no ecc */
269int ocfs2_journal_access(handle_t *handle, struct inode *inode,
270 struct buffer_head *bh, int type);
271
Mark Fashehccd979b2005-12-15 14:31:24 -0800272/*
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 */
Mark Fasheh1fabe142006-10-09 18:11:45 -0700291int ocfs2_journal_dirty(handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -0800292 struct buffer_head *bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800293
294/*
295 * Credit Macros:
296 * Convenience macros to calculate number of credits needed.
297 *
298 * For convenience sake, I have a set of macros here which calculate
299 * the *maximum* number of sectors which will be changed for various
300 * metadata updates.
301 */
302
303/* simple file updates like chmod, etc. */
304#define OCFS2_INODE_UPDATE_CREDITS 1
305
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800306/* extended attribute block update */
307#define OCFS2_XATTR_BLOCK_UPDATE_CREDITS 1
308
Jan Karaa90714c2008-10-09 19:38:40 +0200309/* global quotafile inode update, data block */
310#define OCFS2_QINFO_WRITE_CREDITS (OCFS2_INODE_UPDATE_CREDITS + 1)
311
312/*
313 * The two writes below can accidentally see global info dirty due
314 * to set_info() quotactl so make them prepared for the writes.
315 */
316/* quota data block, global info */
317/* Write to local quota file */
318#define OCFS2_QWRITE_CREDITS (OCFS2_QINFO_WRITE_CREDITS + 1)
319
320/* global quota data block, local quota data block, global quota inode,
321 * global quota info */
322#define OCFS2_QSYNC_CREDITS (OCFS2_INODE_UPDATE_CREDITS + 3)
323
324static inline int ocfs2_quota_trans_credits(struct super_block *sb)
325{
326 int credits = 0;
327
328 if (OCFS2_HAS_RO_COMPAT_FEATURE(sb, OCFS2_FEATURE_RO_COMPAT_USRQUOTA))
329 credits += OCFS2_QWRITE_CREDITS;
330 if (OCFS2_HAS_RO_COMPAT_FEATURE(sb, OCFS2_FEATURE_RO_COMPAT_GRPQUOTA))
331 credits += OCFS2_QWRITE_CREDITS;
332 return credits;
333}
334
335/* Number of credits needed for removing quota structure from file */
336int ocfs2_calc_qdel_credits(struct super_block *sb, int type);
337/* Number of credits needed for initialization of new quota structure */
338int ocfs2_calc_qinit_credits(struct super_block *sb, int type);
339
Tao Mad6590722007-12-18 15:47:03 +0800340/* group extend. inode update and last group update. */
341#define OCFS2_GROUP_EXTEND_CREDITS (OCFS2_INODE_UPDATE_CREDITS + 1)
342
Tao Ma7909f2b2007-12-18 15:47:25 +0800343/* group add. inode update and the new group update. */
344#define OCFS2_GROUP_ADD_CREDITS (OCFS2_INODE_UPDATE_CREDITS + 1)
345
Mark Fashehccd979b2005-12-15 14:31:24 -0800346/* get one bit out of a suballocator: dinode + group descriptor +
347 * prev. group desc. if we relink. */
348#define OCFS2_SUBALLOC_ALLOC (3)
349
Jan Karaa90714c2008-10-09 19:38:40 +0200350static inline int ocfs2_inline_to_extents_credits(struct super_block *sb)
351{
352 return OCFS2_SUBALLOC_ALLOC + OCFS2_INODE_UPDATE_CREDITS +
353 ocfs2_quota_trans_credits(sb);
354}
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700355
Mark Fashehccd979b2005-12-15 14:31:24 -0800356/* dinode + group descriptor update. We don't relink on free yet. */
357#define OCFS2_SUBALLOC_FREE (2)
358
359#define OCFS2_TRUNCATE_LOG_UPDATE OCFS2_INODE_UPDATE_CREDITS
360#define OCFS2_TRUNCATE_LOG_FLUSH_ONE_REC (OCFS2_SUBALLOC_FREE \
361 + OCFS2_TRUNCATE_LOG_UPDATE)
362
Jan Karaa90714c2008-10-09 19:38:40 +0200363static inline int ocfs2_remove_extent_credits(struct super_block *sb)
364{
365 return OCFS2_TRUNCATE_LOG_UPDATE + OCFS2_INODE_UPDATE_CREDITS +
366 ocfs2_quota_trans_credits(sb);
367}
Mark Fasheh063c4562007-07-03 13:34:11 -0700368
Mark Fashehccd979b2005-12-15 14:31:24 -0800369/* data block for new dir/symlink, 2 for bitmap updates (bitmap fe +
370 * bitmap block for the new bit) */
371#define OCFS2_DIR_LINK_ADDITIONAL_CREDITS (1 + 2)
372
373/* parent fe, parent block, new file entry, inode alloc fe, inode alloc
Jan Karaa90714c2008-10-09 19:38:40 +0200374 * group descriptor + mkdir/symlink blocks + quota update */
375static inline int ocfs2_mknod_credits(struct super_block *sb)
376{
377 return 3 + OCFS2_SUBALLOC_ALLOC + OCFS2_DIR_LINK_ADDITIONAL_CREDITS +
378 ocfs2_quota_trans_credits(sb);
379}
Mark Fashehccd979b2005-12-15 14:31:24 -0800380
381/* local alloc metadata change + main bitmap updates */
382#define OCFS2_WINDOW_MOVE_CREDITS (OCFS2_INODE_UPDATE_CREDITS \
383 + OCFS2_SUBALLOC_ALLOC + OCFS2_SUBALLOC_FREE)
384
385/* used when we don't need an allocation change for a dir extend. One
386 * for the dinode, one for the new block. */
387#define OCFS2_SIMPLE_DIR_EXTEND_CREDITS (2)
388
Jan Karaa90714c2008-10-09 19:38:40 +0200389/* file update (nlink, etc) + directory mtime/ctime + dir entry block + quota
390 * update on dir */
391static inline int ocfs2_link_credits(struct super_block *sb)
392{
393 return 2*OCFS2_INODE_UPDATE_CREDITS + 1 +
394 ocfs2_quota_trans_credits(sb);
395}
Mark Fashehccd979b2005-12-15 14:31:24 -0800396
397/* inode + dir inode (if we unlink a dir), + dir entry block + orphan
398 * dir inode link */
Jan Karaa90714c2008-10-09 19:38:40 +0200399static inline int ocfs2_unlink_credits(struct super_block *sb)
400{
401 /* The quota update from ocfs2_link_credits is unused here... */
402 return 2 * OCFS2_INODE_UPDATE_CREDITS + 1 + ocfs2_link_credits(sb);
403}
Mark Fashehccd979b2005-12-15 14:31:24 -0800404
405/* dinode + orphan dir dinode + inode alloc dinode + orphan dir entry +
406 * inode alloc group descriptor */
407#define OCFS2_DELETE_INODE_CREDITS (3 * OCFS2_INODE_UPDATE_CREDITS + 1 + 1)
408
409/* dinode update, old dir dinode update, new dir dinode update, old
410 * dir dir entry, new dir dir entry, dir entry update for renaming
411 * directory + target unlink */
Jan Karaa90714c2008-10-09 19:38:40 +0200412static inline int ocfs2_rename_credits(struct super_block *sb)
413{
414 return 3 * OCFS2_INODE_UPDATE_CREDITS + 3 + ocfs2_unlink_credits(sb);
415}
Mark Fashehccd979b2005-12-15 14:31:24 -0800416
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800417/* global bitmap dinode, group desc., relinked group,
418 * suballocator dinode, group desc., relinked group,
419 * dinode, xattr block */
420#define OCFS2_XATTR_BLOCK_CREATE_CREDITS (OCFS2_SUBALLOC_ALLOC * 2 + \
421 + OCFS2_INODE_UPDATE_CREDITS \
422 + OCFS2_XATTR_BLOCK_UPDATE_CREDITS)
423
Tao Ma811f9332008-08-18 17:38:43 +0800424/*
425 * Please note that the caller must make sure that root_el is the root
426 * of extent tree. So for an inode, it should be &fe->id2.i_list. Otherwise
427 * the result may be wrong.
428 */
Mark Fashehccd979b2005-12-15 14:31:24 -0800429static inline int ocfs2_calc_extend_credits(struct super_block *sb,
Tao Ma811f9332008-08-18 17:38:43 +0800430 struct ocfs2_extent_list *root_el,
Mark Fashehccd979b2005-12-15 14:31:24 -0800431 u32 bits_wanted)
432{
Tao Ma811f9332008-08-18 17:38:43 +0800433 int bitmap_blocks, sysfile_bitmap_blocks, extent_blocks;
Mark Fashehccd979b2005-12-15 14:31:24 -0800434
435 /* bitmap dinode, group desc. + relinked group. */
436 bitmap_blocks = OCFS2_SUBALLOC_ALLOC;
437
438 /* we might need to shift tree depth so lets assume an
439 * absolute worst case of complete fragmentation. Even with
440 * that, we only need one update for the dinode, and then
441 * however many metadata chunks needed * a remaining suballoc
442 * alloc. */
443 sysfile_bitmap_blocks = 1 +
Tao Ma811f9332008-08-18 17:38:43 +0800444 (OCFS2_SUBALLOC_ALLOC - 1) * ocfs2_extend_meta_needed(root_el);
Mark Fashehccd979b2005-12-15 14:31:24 -0800445
446 /* this does not include *new* metadata blocks, which are
Tao Ma811f9332008-08-18 17:38:43 +0800447 * accounted for in sysfile_bitmap_blocks. root_el +
Mark Fashehccd979b2005-12-15 14:31:24 -0800448 * prev. last_eb_blk + blocks along edge of tree.
449 * calc_symlink_credits passes because we just need 1
450 * credit for the dinode there. */
Tao Ma811f9332008-08-18 17:38:43 +0800451 extent_blocks = 1 + 1 + le16_to_cpu(root_el->l_tree_depth);
Mark Fashehccd979b2005-12-15 14:31:24 -0800452
Jan Karaa90714c2008-10-09 19:38:40 +0200453 return bitmap_blocks + sysfile_bitmap_blocks + extent_blocks +
454 ocfs2_quota_trans_credits(sb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800455}
456
457static inline int ocfs2_calc_symlink_credits(struct super_block *sb)
458{
Jan Karaa90714c2008-10-09 19:38:40 +0200459 int blocks = ocfs2_mknod_credits(sb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800460
461 /* links can be longer than one block so we may update many
462 * within our single allocated extent. */
463 blocks += ocfs2_clusters_to_blocks(sb, 1);
464
Jan Karaa90714c2008-10-09 19:38:40 +0200465 return blocks + ocfs2_quota_trans_credits(sb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800466}
467
468static inline int ocfs2_calc_group_alloc_credits(struct super_block *sb,
469 unsigned int cpg)
470{
471 int blocks;
472 int bitmap_blocks = OCFS2_SUBALLOC_ALLOC + 1;
473 /* parent inode update + new block group header + bitmap inode update
474 + bitmap blocks affected */
475 blocks = 1 + 1 + 1 + bitmap_blocks;
476 return blocks;
477}
478
479static inline int ocfs2_calc_tree_trunc_credits(struct super_block *sb,
480 unsigned int clusters_to_del,
481 struct ocfs2_dinode *fe,
482 struct ocfs2_extent_list *last_el)
483{
484 /* for dinode + all headers in this pass + update to next leaf */
485 u16 next_free = le16_to_cpu(last_el->l_next_free_rec);
486 u16 tree_depth = le16_to_cpu(fe->id2.i_list.l_tree_depth);
487 int credits = 1 + tree_depth + 1;
488 int i;
489
490 i = next_free - 1;
491 BUG_ON(i < 0);
492
493 /* We may be deleting metadata blocks, so metadata alloc dinode +
494 one desc. block for each possible delete. */
495 if (tree_depth && next_free == 1 &&
Mark Fashehe48edee2007-03-07 16:46:57 -0800496 ocfs2_rec_clusters(last_el, &last_el->l_recs[i]) == clusters_to_del)
Mark Fashehccd979b2005-12-15 14:31:24 -0800497 credits += 1 + tree_depth;
498
499 /* update to the truncate log. */
500 credits += OCFS2_TRUNCATE_LOG_UPDATE;
501
Jan Karaa90714c2008-10-09 19:38:40 +0200502 credits += ocfs2_quota_trans_credits(sb);
503
Mark Fashehccd979b2005-12-15 14:31:24 -0800504 return credits;
505}
506
Joel Becker2b4e30f2008-09-03 20:03:41 -0700507static inline int ocfs2_jbd2_file_inode(handle_t *handle, struct inode *inode)
508{
509 return jbd2_journal_file_inode(handle, &OCFS2_I(inode)->ip_jinode);
510}
511
512static inline int ocfs2_begin_ordered_truncate(struct inode *inode,
513 loff_t new_size)
514{
515 return jbd2_journal_begin_ordered_truncate(&OCFS2_I(inode)->ip_jinode,
516 new_size);
517}
518
Mark Fashehccd979b2005-12-15 14:31:24 -0800519#endif /* OCFS2_JOURNAL_H */