diff options
author | Tao Ma <tao.ma@oracle.com> | 2008-03-03 04:12:30 -0500 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2008-04-18 11:56:10 -0400 |
commit | a4a4891164d4f6f383cc17e7c90828a7ca6a1146 (patch) | |
tree | a0a881ae3f1910d5f4e4aa9824f93781616ef99f /fs/ocfs2/suballoc.c | |
parent | ffda89a3bf3b968bdc268584c6bc1da5c173cf12 (diff) |
ocfs2: Add ac_alloc_slot in ocfs2_alloc_context
In inode stealing, we no longer restrict the allocation to
happen in the local node. So it is neccessary for us to add
a new member in ocfs2_alloc_context to indicate which slot
we are using for allocation. We also modify the process of
local alloc so that this member can be used there also.
Signed-off-by: Tao Ma <tao.ma@oracle.com>
Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/ocfs2/suballoc.c')
-rw-r--r-- | fs/ocfs2/suballoc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ocfs2/suballoc.c b/fs/ocfs2/suballoc.c index 3be4e73e8b13..33d55734c514 100644 --- a/fs/ocfs2/suballoc.c +++ b/fs/ocfs2/suballoc.c | |||
@@ -424,6 +424,7 @@ static int ocfs2_reserve_suballoc_bits(struct ocfs2_super *osb, | |||
424 | } | 424 | } |
425 | 425 | ||
426 | ac->ac_inode = alloc_inode; | 426 | ac->ac_inode = alloc_inode; |
427 | ac->ac_alloc_slot = slot; | ||
427 | 428 | ||
428 | fe = (struct ocfs2_dinode *) bh->b_data; | 429 | fe = (struct ocfs2_dinode *) bh->b_data; |
429 | if (!OCFS2_IS_VALID_DINODE(fe)) { | 430 | if (!OCFS2_IS_VALID_DINODE(fe)) { |