All of lore.kernel.org
 help / color / mirror / Atom feed
* + mm-silently-skip-readahead-for-dax-inodes.patch added to -mm tree
@ 2016-08-24 22:49 akpm
  0 siblings, 0 replies; 2+ messages in thread
From: akpm @ 2016-08-24 22:49 UTC (permalink / raw)
  To: ross.zwisler, dan.j.williams, dave.hansen, david, jack, jmoyer,
	stable, mm-commits


The patch titled
     Subject: mm: silently skip readahead for DAX inodes
has been added to the -mm tree.  Its filename is
     mm-silently-skip-readahead-for-dax-inodes.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/mm-silently-skip-readahead-for-dax-inodes.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/mm-silently-skip-readahead-for-dax-inodes.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Ross Zwisler <ross.zwisler@linux.intel.com>
Subject: mm: silently skip readahead for DAX inodes

For DAX inodes we need to be careful to never have page cache pages in the
mapping->page_tree.  This radix tree should be composed only of DAX
exceptional entries and zero pages.

ltp's readahead02 test was triggering a warning because we were trying to
insert a DAX exceptional entry but found that a page cache page had
already been inserted into the tree.  This page was being inserted into
the radix tree in response to a readahead(2) call.

Readahead doesn't make sense for DAX inodes, but we don't want it to report
a failure either.  Instead, we just return success and don't do any work.

Link: http://lkml.kernel.org/r/20160824221429.21158-1-ross.zwisler@linux.intel.com
Signed-off-by: Ross Zwisler <ross.zwisler@linux.intel.com>
Reported-by: Jeff Moyer <jmoyer@redhat.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Dave Chinner <david@fromorbit.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Jan Kara <jack@suse.com>
Cc: <stable@vger.kernel.org>	[4.5+]
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 mm/readahead.c |    9 +++++++++
 1 file changed, 9 insertions(+)

diff -puN mm/readahead.c~mm-silently-skip-readahead-for-dax-inodes mm/readahead.c
--- a/mm/readahead.c~mm-silently-skip-readahead-for-dax-inodes
+++ a/mm/readahead.c
@@ -8,6 +8,7 @@
  */
 
 #include <linux/kernel.h>
+#include <linux/dax.h>
 #include <linux/gfp.h>
 #include <linux/export.h>
 #include <linux/blkdev.h>
@@ -544,6 +545,14 @@ do_readahead(struct address_space *mappi
 	if (!mapping || !mapping->a_ops)
 		return -EINVAL;
 
+	/*
+	 * Readahead doesn't make sense for DAX inodes, but we don't want it
+	 * to report a failure either.  Instead, we just return success and
+	 * don't do any work.
+	 */
+	if (dax_mapping(mapping))
+		return 0;
+
 	return force_page_cache_readahead(mapping, filp, index, nr);
 }
 
_

Patches currently in -mm which might be from ross.zwisler@linux.intel.com are

mm-silently-skip-readahead-for-dax-inodes.patch
radix-tree-slot-can-be-null-in-radix_tree_next_slot.patch
radix-tree-tests-add-iteration-test.patch
radix-tree-tests-properly-initialize-mutex.patch


^ permalink raw reply	[flat|nested] 2+ messages in thread

* + mm-silently-skip-readahead-for-dax-inodes.patch added to -mm tree
@ 2016-08-24 22:49 akpm
  0 siblings, 0 replies; 2+ messages in thread
From: akpm @ 2016-08-24 22:49 UTC (permalink / raw)
  To: ross.zwisler, dan.j.williams, dave.hansen, david, jack, jmoyer,
	stable, mm-commits


The patch titled
     Subject: mm: silently skip readahead for DAX inodes
has been added to the -mm tree.  Its filename is
     mm-silently-skip-readahead-for-dax-inodes.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/mm-silently-skip-readahead-for-dax-inodes.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/mm-silently-skip-readahead-for-dax-inodes.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Ross Zwisler <ross.zwisler@linux.intel.com>
Subject: mm: silently skip readahead for DAX inodes

For DAX inodes we need to be careful to never have page cache pages in the
mapping->page_tree.  This radix tree should be composed only of DAX
exceptional entries and zero pages.

ltp's readahead02 test was triggering a warning because we were trying to
insert a DAX exceptional entry but found that a page cache page had
already been inserted into the tree.  This page was being inserted into
the radix tree in response to a readahead(2) call.

Readahead doesn't make sense for DAX inodes, but we don't want it to report
a failure either.  Instead, we just return success and don't do any work.

Link: http://lkml.kernel.org/r/20160824221429.21158-1-ross.zwisler@linux.intel.com
Signed-off-by: Ross Zwisler <ross.zwisler@linux.intel.com>
Reported-by: Jeff Moyer <jmoyer@redhat.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Dave Chinner <david@fromorbit.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Jan Kara <jack@suse.com>
Cc: <stable@vger.kernel.org>	[4.5+]
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 mm/readahead.c |    9 +++++++++
 1 file changed, 9 insertions(+)

diff -puN mm/readahead.c~mm-silently-skip-readahead-for-dax-inodes mm/readahead.c
--- a/mm/readahead.c~mm-silently-skip-readahead-for-dax-inodes
+++ a/mm/readahead.c
@@ -8,6 +8,7 @@
  */
 
 #include <linux/kernel.h>
+#include <linux/dax.h>
 #include <linux/gfp.h>
 #include <linux/export.h>
 #include <linux/blkdev.h>
@@ -544,6 +545,14 @@ do_readahead(struct address_space *mappi
 	if (!mapping || !mapping->a_ops)
 		return -EINVAL;
 
+	/*
+	 * Readahead doesn't make sense for DAX inodes, but we don't want it
+	 * to report a failure either.  Instead, we just return success and
+	 * don't do any work.
+	 */
+	if (dax_mapping(mapping))
+		return 0;
+
 	return force_page_cache_readahead(mapping, filp, index, nr);
 }
 
_

Patches currently in -mm which might be from ross.zwisler@linux.intel.com are

mm-silently-skip-readahead-for-dax-inodes.patch
radix-tree-slot-can-be-null-in-radix_tree_next_slot.patch
radix-tree-tests-add-iteration-test.patch
radix-tree-tests-properly-initialize-mutex.patch


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-08-24 22:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-24 22:49 + mm-silently-skip-readahead-for-dax-inodes.patch added to -mm tree akpm
  -- strict thread matches above, loose matches on Subject: below --
2016-08-24 22:49 akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.