]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[XFS] keep i_nlink updated and use proper accessors
authorChristoph Hellwig <hch@infradead.org>
Tue, 5 Feb 2008 01:13:53 +0000 (12:13 +1100)
committerLachlan McIlroy <lachlan@redback.melbourne.sgi.com>
Thu, 7 Feb 2008 07:23:38 +0000 (18:23 +1100)
To get the read-only bind mounts in -mm to work correctly with XFS we need
to call the drop_nlink and inc_nlink helpers to monitor the link count.
Add calls to these to xfs_bumplink and xfs_droplink and stop copying over
di_nlink to i_nlink in xfs_validate_fields and vn_revalidate.

SGI-PV: 971186
SGI-Modid: xfs-linux-melb:xfs-kern:30392a

Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
fs/xfs/linux-2.6/xfs_iops.c
fs/xfs/linux-2.6/xfs_vnode.c
fs/xfs/xfs_utils.c

index 5e16016bf65710ce6cf4348f64dafda2effb8775..cc4abd3daa49b62aa8a6a822015e33c69e099ea9 100644 (file)
@@ -201,7 +201,6 @@ xfs_validate_fields(
        struct xfs_inode        *ip = XFS_I(inode);
        loff_t size;
 
-       inode->i_nlink = ip->i_d.di_nlink;
        /* we're under i_sem so i_size can't change under us */
        size = XFS_ISIZE(ip);
        if (i_size_read(inode) != size)
index 9bf36dc48a6e15e5c20f9ed4c1ca51bc8d9cdd42..44a48ef900736056c43ea1eec6b1612183585b55 100644 (file)
@@ -103,7 +103,6 @@ vn_revalidate(
 
        xfs_ilock(ip, XFS_ILOCK_SHARED);
        inode->i_mode       = ip->i_d.di_mode;
-       inode->i_nlink      = ip->i_d.di_nlink;
        inode->i_uid        = ip->i_d.di_uid;
        inode->i_gid        = ip->i_d.di_gid;
        inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
index 4df466fa3a407edb84f0cc049bb54fbc1cbe4ecb..45d740df53b73d2166fe92490e68ea004ec83a7e 100644 (file)
@@ -302,6 +302,7 @@ xfs_droplink(
 
        ASSERT (ip->i_d.di_nlink > 0);
        ip->i_d.di_nlink--;
+       drop_nlink(ip->i_vnode);
        xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
 
        error = 0;
@@ -365,6 +366,7 @@ xfs_bumplink(
 
        ASSERT(ip->i_d.di_nlink > 0);
        ip->i_d.di_nlink++;
+       inc_nlink(ip->i_vnode);
        if ((ip->i_d.di_version == XFS_DINODE_VERSION_1) &&
            (ip->i_d.di_nlink > XFS_MAXLINK_1)) {
                /*