linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ext2: Convert kmap to kmap_local_page
@ 2021-03-29  6:54 ira.weiny
  2021-03-29  6:54 ` [PATCH 1/2] ext2: Match up ext2_put_page() with ext2_dotdot() and ext2_find_entry() ira.weiny
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: ira.weiny @ 2021-03-29  6:54 UTC (permalink / raw)
  To: Jan Kara; +Cc: Ira Weiny, linux-ext4, linux-kernel

From: Ira Weiny <ira.weiny@intel.com>

kmap is inefficient and can be abused so it is being phased out in favor of
kmap_local_page where possible.

ext2 uses kmap in ext2_[get|put]_page().  All of the calls to
ext2_[get|put]_page() occur in single threads so it is perfectly safe and
preferable to use kmap_local_page().

This series has a clean up which matches ext2_put_page() with ext2_dotdot() and
ext2_find_entry().  Those calls use ext2_get_page() to map the page prior to
returning it to their callers.  And they document that ext2_put_page() should
be matched up with them.  This was the case but the ext2_put_page() calls were
hidden in other functions.  We lift the ext2_put_page() calls to match up to
the functions where ext2_dotdot() and ext2_find_entry() are called.

After that clean up convert ext2_[get|put]_page() to kmap and adjust for
kunmap_local() requiring the page address.

Nesting of kmap_local_page() calls is maintained with minor changes.

Ira Weiny (2):
  ext2: Match up ext2_put_page() with ext2_dotdot() and
    ext2_find_entry()
  fs/ext2: Replace kmap() with kmap_local_page()

 fs/ext2/dir.c   | 94 +++++++++++++++++++++++++++++++------------------
 fs/ext2/ext2.h  | 12 ++++---
 fs/ext2/namei.c | 34 +++++++++++-------
 3 files changed, 89 insertions(+), 51 deletions(-)

-- 
2.28.0.rc0.12.gb6a658bd00c9


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

end of thread, other threads:[~2021-03-31 12:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-29  6:54 [PATCH 0/2] ext2: Convert kmap to kmap_local_page ira.weiny
2021-03-29  6:54 ` [PATCH 1/2] ext2: Match up ext2_put_page() with ext2_dotdot() and ext2_find_entry() ira.weiny
2021-03-29  6:54 ` [PATCH 2/2] fs/ext2: Replace kmap() with kmap_local_page() ira.weiny
2021-03-31 12:05 ` [PATCH 0/2] ext2: Convert kmap to kmap_local_page Jan Kara

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).