Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 70835
b: refs/heads/master
c: b93bd20
h: refs/heads/master
i:
  70833: 87dd183
  70831: a3c3f66
v: v3
  • Loading branch information
Vlad Apostolov authored and Tim Shimmin committed Oct 15, 2007
1 parent 9483026 commit ec927b0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 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: da353b0d64e070ae7c5342a0d56ec20ae9ef5cfb
refs/heads/master: b93bd20cd59eb7ec172f95d08b100fea688d8bcf
13 changes: 12 additions & 1 deletion trunk/fs/xfs/xfs_vfsops.c
Original file line number Diff line number Diff line change
Expand Up @@ -1720,7 +1720,18 @@ xfs_parseargs(
int dsunit, dswidth, vol_dsunit, vol_dswidth;
int iosize;

args->flags |= XFSMNT_IDELETE;
/*
* Applications using DMI filesystems often expect the
* inode generation number to be monotonically increasing.
* If we delete inode chunks we break this assumption, so
* keep unused inode chunks on disk for DMI filesystems
* until we come up with a better solution.
* Note that if "ikeep" or "noikeep" mount options are
* supplied, then they are honored.
*/
if (!(args->flags & XFSMNT_DMAPI))
args->flags |= XFSMNT_IDELETE;

args->flags |= XFSMNT_BARRIER;
args->flags2 |= XFSMNT2_COMPAT_IOSIZE;

Expand Down

0 comments on commit ec927b0

Please sign in to comment.