Skip to content

Commit

Permalink
[XFS] Disable attr2 by default, until a more appropriate time to enable
Browse files Browse the repository at this point in the history
it.

SGI-PV: 941645
SGI-Modid: xfs-linux:xfs-kern:24002a

Signed-off-by: Nathan Scott <[email protected]>
  • Loading branch information
natoscott committed Nov 2, 2005
1 parent 374e2ac commit 8a319ae
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion fs/xfs/xfs_vfsops.c
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,10 @@ xfs_finish_flags(
return XFS_ERROR(EINVAL);
}

if (XFS_SB_VERSION_HASATTR2(&mp->m_sb)) {
mp->m_flags &= ~XFS_MOUNT_COMPAT_ATTR;
}

return 0;
}

Expand Down Expand Up @@ -1676,6 +1680,8 @@ xfs_parseargs(
int iosize;

args->flags |= XFSMNT_COMPAT_IOSIZE;
args->flags |= XFSMNT_COMPAT_ATTR;

#if 0 /* XXX: off by default, until some remaining issues ironed out */
args->flags |= XFSMNT_IDELETE; /* default to on */
#endif
Expand Down Expand Up @@ -1883,7 +1889,6 @@ xfs_showargs(
{ XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
{ XFS_MOUNT_BARRIER, "," MNTOPT_BARRIER },
{ XFS_MOUNT_IDELETE, "," MNTOPT_NOIKEEP },
{ XFS_MOUNT_COMPAT_ATTR, "," MNTOPT_NOATTR2 },
{ 0, NULL }
};
struct proc_xfs_info *xfs_infop;
Expand Down Expand Up @@ -1924,6 +1929,9 @@ xfs_showargs(
if (!(mp->m_flags & XFS_MOUNT_32BITINOOPT))
seq_printf(m, "," MNTOPT_64BITINODE);

if (!(mp->m_flags & XFS_MOUNT_COMPAT_ATTR))
seq_printf(m, "," MNTOPT_ATTR2);

if (!(mp->m_flags & XFS_MOUNT_COMPAT_IOSIZE))
seq_printf(m, "," MNTOPT_LARGEIO);

Expand Down

0 comments on commit 8a319ae

Please sign in to comment.