Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Christoph Hellwig and committed by
Alex Elder
242d6219 b6bede3b

+10
+8
Documentation/feature-removal-schedule.txt
··· 592 592 interface that was used by acer-wmi driver. It will replaced by 593 593 information log when acer-wmi initial. 594 594 Who: Lee, Chun-Yi <jlee@novell.com> 595 + 596 + ---------------------------- 597 + What: The XFS nodelaylog mount option 598 + When: 3.3 599 + Why: The delaylog mode that has been the default since 2.6.39 has proven 600 + stable, and the old code is in the way of additional improvements in 601 + the log code. 602 + Who: Christoph Hellwig <hch@lst.de>
+2
fs/xfs/xfs_super.c
··· 356 356 mp->m_flags |= XFS_MOUNT_DELAYLOG; 357 357 } else if (!strcmp(this_char, MNTOPT_NODELAYLOG)) { 358 358 mp->m_flags &= ~XFS_MOUNT_DELAYLOG; 359 + xfs_warn(mp, 360 + "nodelaylog is deprecated and will be removed in Linux 3.3"); 359 361 } else if (!strcmp(this_char, MNTOPT_DISCARD)) { 360 362 mp->m_flags |= XFS_MOUNT_DISCARD; 361 363 } else if (!strcmp(this_char, MNTOPT_NODISCARD)) {