Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 23161
b: refs/heads/master
c: e15f195
h: refs/heads/master
i:
  23159: 6e097a7
v: v3
  • Loading branch information
Nathan Scott committed Mar 22, 2006
1 parent 51aa47d commit 6dfe53e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2ddee844eef48bf9240ebdfd6c5ffc4333c7d639
refs/heads/master: e15f195cfb2fb1f2af0fdfc21277643deb26c0df
8 changes: 3 additions & 5 deletions trunk/fs/xfs/xfs_vfsops.c
Original file line number Diff line number Diff line change
Expand Up @@ -1698,10 +1698,7 @@ xfs_parseargs(
int iosize;

args->flags2 |= XFSMNT2_COMPAT_IOSIZE;

#if 0 /* XXX: off by default, until some remaining issues ironed out */
args->flags |= XFSMNT_IDELETE; /* default to on */
#endif
args->flags |= XFSMNT_IDELETE;

if (!options)
goto done;
Expand Down Expand Up @@ -1911,7 +1908,6 @@ xfs_showargs(
{ XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
{ XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
{ XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
{ XFS_MOUNT_IDELETE, "," MNTOPT_NOIKEEP },
{ 0, NULL }
};
struct proc_xfs_info *xfs_infop;
Expand Down Expand Up @@ -1947,6 +1943,8 @@ xfs_showargs(
seq_printf(m, "," MNTOPT_SWIDTH "=%d",
(int)XFS_FSB_TO_BB(mp, mp->m_swidth));

if (!(mp->m_flags & XFS_MOUNT_IDELETE))
seq_printf(m, "," MNTOPT_IKEEP);
if (!(mp->m_flags & XFS_MOUNT_COMPAT_IOSIZE))
seq_printf(m, "," MNTOPT_LARGEIO);
if (mp->m_flags & XFS_MOUNT_BARRIER)
Expand Down

0 comments on commit 6dfe53e

Please sign in to comment.