diff options
author | Bob Peterson <rpeterso@redhat.com> | 2012-04-27 13:59:27 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2012-04-30 05:41:04 -0400 |
commit | 1c47f09592148ba629edb2020d4dd94f81b16d11 (patch) | |
tree | 626468e622b1bcff23b82cbeae6d7418f10d2d16 /fs/gfs2 | |
parent | 06344b9186e0d9520cb1b032728aba9f6ee55b91 (diff) |
GFS2: Eliminate vestigial sd_log_le_rg
This patch eliminates gfs2 superblock variable sd_log_le_rg which
is no longer used.
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/incore.h | 1 | ||||
-rw-r--r-- | fs/gfs2/ops_fstype.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h index e773fbc28f95..f1189a2cdb78 100644 --- a/fs/gfs2/incore.h +++ b/fs/gfs2/incore.h | |||
@@ -690,7 +690,6 @@ struct gfs2_sbd { | |||
690 | 690 | ||
691 | struct list_head sd_log_le_buf; | 691 | struct list_head sd_log_le_buf; |
692 | struct list_head sd_log_le_revoke; | 692 | struct list_head sd_log_le_revoke; |
693 | struct list_head sd_log_le_rg; | ||
694 | struct list_head sd_log_le_databuf; | 693 | struct list_head sd_log_le_databuf; |
695 | struct list_head sd_log_le_ordered; | 694 | struct list_head sd_log_le_ordered; |
696 | 695 | ||
diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index 6f3a18f9e176..c5871ae40561 100644 --- a/fs/gfs2/ops_fstype.c +++ b/fs/gfs2/ops_fstype.c | |||
@@ -99,7 +99,6 @@ static struct gfs2_sbd *init_sbd(struct super_block *sb) | |||
99 | atomic_set(&sdp->sd_log_pinned, 0); | 99 | atomic_set(&sdp->sd_log_pinned, 0); |
100 | INIT_LIST_HEAD(&sdp->sd_log_le_buf); | 100 | INIT_LIST_HEAD(&sdp->sd_log_le_buf); |
101 | INIT_LIST_HEAD(&sdp->sd_log_le_revoke); | 101 | INIT_LIST_HEAD(&sdp->sd_log_le_revoke); |
102 | INIT_LIST_HEAD(&sdp->sd_log_le_rg); | ||
103 | INIT_LIST_HEAD(&sdp->sd_log_le_databuf); | 102 | INIT_LIST_HEAD(&sdp->sd_log_le_databuf); |
104 | INIT_LIST_HEAD(&sdp->sd_log_le_ordered); | 103 | INIT_LIST_HEAD(&sdp->sd_log_le_ordered); |
105 | 104 | ||