ocfs2: Add metaecc for ocfs2_refcount_block.
Add metaecc and journal trigger for ocfs2_refcount_block. Signed-off-by: Tao Ma <tao.ma@oracle.com>
This commit is contained in:
parent
721f69c404
commit
93c97087a6
@ -555,6 +555,14 @@ static struct ocfs2_triggers eb_triggers = {
|
|||||||
.ot_offset = offsetof(struct ocfs2_extent_block, h_check),
|
.ot_offset = offsetof(struct ocfs2_extent_block, h_check),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct ocfs2_triggers rb_triggers = {
|
||||||
|
.ot_triggers = {
|
||||||
|
.t_commit = ocfs2_commit_trigger,
|
||||||
|
.t_abort = ocfs2_abort_trigger,
|
||||||
|
},
|
||||||
|
.ot_offset = offsetof(struct ocfs2_refcount_block, rf_check),
|
||||||
|
};
|
||||||
|
|
||||||
static struct ocfs2_triggers gd_triggers = {
|
static struct ocfs2_triggers gd_triggers = {
|
||||||
.ot_triggers = {
|
.ot_triggers = {
|
||||||
.t_commit = ocfs2_commit_trigger,
|
.t_commit = ocfs2_commit_trigger,
|
||||||
@ -677,6 +685,13 @@ int ocfs2_journal_access_eb(handle_t *handle, struct ocfs2_caching_info *ci,
|
|||||||
return __ocfs2_journal_access(handle, ci, bh, &eb_triggers, type);
|
return __ocfs2_journal_access(handle, ci, bh, &eb_triggers, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int ocfs2_journal_access_rb(handle_t *handle, struct ocfs2_caching_info *ci,
|
||||||
|
struct buffer_head *bh, int type)
|
||||||
|
{
|
||||||
|
return __ocfs2_journal_access(handle, ci, bh, &rb_triggers,
|
||||||
|
type);
|
||||||
|
}
|
||||||
|
|
||||||
int ocfs2_journal_access_gd(handle_t *handle, struct ocfs2_caching_info *ci,
|
int ocfs2_journal_access_gd(handle_t *handle, struct ocfs2_caching_info *ci,
|
||||||
struct buffer_head *bh, int type)
|
struct buffer_head *bh, int type)
|
||||||
{
|
{
|
||||||
|
@ -281,6 +281,9 @@ int ocfs2_journal_access_di(handle_t *handle, struct ocfs2_caching_info *ci,
|
|||||||
/* ocfs2_extent_block */
|
/* ocfs2_extent_block */
|
||||||
int ocfs2_journal_access_eb(handle_t *handle, struct ocfs2_caching_info *ci,
|
int ocfs2_journal_access_eb(handle_t *handle, struct ocfs2_caching_info *ci,
|
||||||
struct buffer_head *bh, int type);
|
struct buffer_head *bh, int type);
|
||||||
|
/* ocfs2_refcount_block */
|
||||||
|
int ocfs2_journal_access_rb(handle_t *handle, struct ocfs2_caching_info *ci,
|
||||||
|
struct buffer_head *bh, int type);
|
||||||
/* ocfs2_group_desc */
|
/* ocfs2_group_desc */
|
||||||
int ocfs2_journal_access_gd(handle_t *handle, struct ocfs2_caching_info *ci,
|
int ocfs2_journal_access_gd(handle_t *handle, struct ocfs2_caching_info *ci,
|
||||||
struct buffer_head *bh, int type);
|
struct buffer_head *bh, int type);
|
||||||
|
Loading…
Reference in New Issue
Block a user