OSDN Git Service

[GFS2] Remove unused field in struct gfs2_inode
authorSteven Whitehouse <swhiteho@redhat.com>
Tue, 16 Oct 2007 10:47:04 +0000 (11:47 +0100)
committerSteven Whitehouse <swhiteho@redhat.com>
Fri, 25 Jan 2008 08:07:18 +0000 (08:07 +0000)
Removes a field that is not used.

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/incore.h
fs/gfs2/ops_super.c

index 5662ff9..e53da7d 100644 (file)
@@ -274,7 +274,6 @@ struct gfs2_inode {
 
        spinlock_t i_spin;
        struct rw_semaphore i_rw_mutex;
-       unsigned long i_last_pfault;
 };
 
 /*
index 950f314..5e52421 100644 (file)
@@ -487,7 +487,6 @@ static struct inode *gfs2_alloc_inode(struct super_block *sb)
        if (ip) {
                ip->i_flags = 0;
                ip->i_gl = NULL;
-               ip->i_last_pfault = jiffies;
        }
        return &ip->i_inode;
 }