lkml.org 
[lkml]   [2018]   [Apr]   [4]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[RFC PATCH 08/79] mm/page: add helpers to find page mapping and private given a bio
Date
From: Jérôme Glisse <jglisse@redhat.com>

When page undergo io it is associated with a unique bio and thus we can
use it to lookup other page fields which are relevant only for the bio
under consideration.

Note this only apply when page is special ie page->mapping is pointing
to some special structure which is not a valid struct address_space.

Signed-off-by: Jérôme Glisse <jglisse@redhat.com>
Cc: linux-mm@kvack.org
CC: Andrew Morton <akpm@linux-foundation.org>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: linux-fsdevel@vger.kernel.org
Cc: Tejun Heo <tj@kernel.org>
Cc: Jan Kara <jack@suse.cz>
Cc: Josef Bacik <jbacik@fb.com>
Cc: Mel Gorman <mgorman@techsingularity.net>
---
include/linux/mm-page.h | 9 +++++++++
1 file changed, 9 insertions(+)

diff --git a/include/linux/mm-page.h b/include/linux/mm-page.h
index 647a8a8cf9ba..6ec3ba19b1a4 100644
--- a/include/linux/mm-page.h
+++ b/include/linux/mm-page.h
@@ -24,6 +24,7 @@

/* External struct dependencies: */
struct address_space;
+struct bio;

/* External function dependencies: */
extern pgoff_t __page_file_index(struct page *page);
@@ -144,5 +145,13 @@ static inline struct address_space *fs_page_mapping_get_with_bh(
return page_mapping(page);
}

+static inline void bio_page_mapping_and_private(struct page *page,
+ struct bio *bio, struct address_space **mappingp,
+ unsigned long *privatep)
+{
+ *mappingp = page->mapping;
+ *privatep = page_private(page);
+}
+
#endif /* MM_PAGE_H */
#endif /* DOT_NOT_INCLUDE___INSIDE_MM */
--
2.14.3
\
 
 \ /
  Last update: 2018-04-04 21:31    [W:0.601 / U:0.980 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site