diff options
author | Christoph Hellwig <hch@infradead.org> | 2011-08-24 05:57:51 +0000 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2011-08-25 10:30:05 -0500 |
commit | 242d621964dd8641df53f7d51d4c6ead655cc5a6 (patch) | |
tree | 50fa61892c54ddf7a46e35d7f76451da3f80a5bd /fs/xfs | |
parent | b6bede3b4cdfbd188557ab50fceec2e91d295edf (diff) | |
download | linux-3.10-242d621964dd8641df53f7d51d4c6ead655cc5a6.tar.gz linux-3.10-242d621964dd8641df53f7d51d4c6ead655cc5a6.tar.bz2 linux-3.10-242d621964dd8641df53f7d51d4c6ead655cc5a6.zip |
xfs: deprecate the nodelaylog mount option
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_super.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index 9a72dda58bd..c1b022f20d3 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -356,6 +356,8 @@ xfs_parseargs( mp->m_flags |= XFS_MOUNT_DELAYLOG; } else if (!strcmp(this_char, MNTOPT_NODELAYLOG)) { mp->m_flags &= ~XFS_MOUNT_DELAYLOG; + xfs_warn(mp, + "nodelaylog is deprecated and will be removed in Linux 3.3"); } else if (!strcmp(this_char, MNTOPT_DISCARD)) { mp->m_flags |= XFS_MOUNT_DISCARD; } else if (!strcmp(this_char, MNTOPT_NODISCARD)) { |