diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2007-10-16 06:47:04 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2008-01-25 03:07:18 -0500 |
commit | e7e36f143565d14950055c893cfaf4400ad64d34 (patch) | |
tree | 972889a8329afc80d4bef454cf2800e042fa5cc6 /fs/gfs2 | |
parent | f91a0d3e24e4b0198be5fae20d45a35c40d1efce (diff) |
[GFS2] Remove unused field in struct gfs2_inode
Removes a field that is not used.
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_super.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h index 5662ff9f86e1..e53da7d4cfff 100644 --- a/fs/gfs2/incore.h +++ b/fs/gfs2/incore.h | |||
@@ -274,7 +274,6 @@ struct gfs2_inode { | |||
274 | 274 | ||
275 | spinlock_t i_spin; | 275 | spinlock_t i_spin; |
276 | struct rw_semaphore i_rw_mutex; | 276 | struct rw_semaphore i_rw_mutex; |
277 | unsigned long i_last_pfault; | ||
278 | }; | 277 | }; |
279 | 278 | ||
280 | /* | 279 | /* |
diff --git a/fs/gfs2/ops_super.c b/fs/gfs2/ops_super.c index 950f31460e8b..5e524217944a 100644 --- a/fs/gfs2/ops_super.c +++ b/fs/gfs2/ops_super.c | |||
@@ -487,7 +487,6 @@ static struct inode *gfs2_alloc_inode(struct super_block *sb) | |||
487 | if (ip) { | 487 | if (ip) { |
488 | ip->i_flags = 0; | 488 | ip->i_flags = 0; |
489 | ip->i_gl = NULL; | 489 | ip->i_gl = NULL; |
490 | ip->i_last_pfault = jiffies; | ||
491 | } | 490 | } |
492 | return &ip->i_inode; | 491 | return &ip->i_inode; |
493 | } | 492 | } |