]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[XFS] don't encode parent in nfs filehandles unless nessecary
authorChristoph Hellwig <hch@infradead.org>
Thu, 6 Mar 2008 02:45:16 +0000 (13:45 +1100)
committerLachlan McIlroy <lachlan@redback.melbourne.sgi.com>
Fri, 18 Apr 2008 01:39:35 +0000 (11:39 +1000)
As Dave pointed out after the export ops changes we now always encode the
parent into the filehandle for regular files, but it's not actually needed
when the filesystem is export with no_subtree_check. This one-liner fixes
xfs_fs_encode_fh to skip encoding the parent unless nessecary.

SGI-PV: 976035
SGI-Modid: xfs-linux-melb:xfs-kern:30535a

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

index ca4f66c4de16aaa743f5dcb7cc0e44ae02715ef1..21f0e8257590a3239e6a93b2bcf2adee34b9b753 100644 (file)
@@ -66,7 +66,7 @@ xfs_fs_encode_fh(
        int                     len;
 
        /* Directories don't need their parent encoded, they have ".." */
-       if (S_ISDIR(inode->i_mode))
+       if (S_ISDIR(inode->i_mode) || !connectable)
                fileid_type = FILEID_INO32_GEN;
        else
                fileid_type = FILEID_INO32_GEN_PARENT;