Skip to content

Commit

Permalink
ext4: do not reference pa_inode from group_pa
Browse files Browse the repository at this point in the history
pa_inode in group_pa is set NULL in ext4_mb_new_group_pa, so
pa_inode should be not referenced.

Reported-by: Wu Fengguang <fengguang.wu@intel.com>
Signed-off-by: Yongqiang Yang <xiaoqiangnk@gmail.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
  • Loading branch information
Yongqiang Yang authored and Theodore Ts'o committed Dec 18, 2011
1 parent 384703b commit 60e07cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fs/ext4/mballoc.c
Original file line number Diff line number Diff line change
Expand Up @@ -3671,7 +3671,7 @@ ext4_mb_release_group_pa(struct ext4_buddy *e4b,
ext4_group_t group;
ext4_grpblk_t bit;

trace_ext4_mb_release_group_pa(pa);
trace_ext4_mb_release_group_pa(sb, pa);
BUG_ON(pa->pa_deleted == 0);
ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
Expand Down
6 changes: 3 additions & 3 deletions include/trace/events/ext4.h
Original file line number Diff line number Diff line change
Expand Up @@ -573,9 +573,9 @@ TRACE_EVENT(ext4_mb_release_inode_pa,
);

TRACE_EVENT(ext4_mb_release_group_pa,
TP_PROTO(struct ext4_prealloc_space *pa),
TP_PROTO(struct super_block *sb, struct ext4_prealloc_space *pa),

TP_ARGS(pa),
TP_ARGS(sb, pa),

TP_STRUCT__entry(
__field( dev_t, dev )
Expand All @@ -585,7 +585,7 @@ TRACE_EVENT(ext4_mb_release_group_pa,
),

TP_fast_assign(
__entry->dev = pa->pa_inode->i_sb->s_dev;
__entry->dev = sb->s_dev;
__entry->pa_pstart = pa->pa_pstart;
__entry->pa_len = pa->pa_len;
),
Expand Down

0 comments on commit 60e07cf

Please sign in to comment.