mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] XFS:  Replace remaining memclear_highpage_flush() with zero_user_page().
@ 2007-06-18 15:59 Robert P. J. Day
  2007-06-18 18:43 ` Christoph Hellwig
  0 siblings, 1 reply; 3+ messages in thread
From: Robert P. J. Day @ 2007-06-18 15:59 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Andrew Morton, xfs-masters


Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>

---

  this appears to be the final occurrence of that deprecated call in
the entire tree which suggests that, if you're not concerned about
out-of-tree modules, that definition could also be removed from
include/linux/highmem.h:

static inline void __deprecated memclear_highpage_flush(struct page *page,
                        unsigned int offset, unsigned int size)
{
        zero_user_page(page, offset, size, KM_USER0);
}


diff --git a/fs/xfs/linux-2.6/xfs_lrw.c b/fs/xfs/linux-2.6/xfs_lrw.c
index 86fb671..ed90403 100644
--- a/fs/xfs/linux-2.6/xfs_lrw.c
+++ b/fs/xfs/linux-2.6/xfs_lrw.c
@@ -159,7 +159,7 @@ xfs_iozero(
 		if (status)
 			goto unlock;

-		memclear_highpage_flush(page, offset, bytes);
+		zero_user_page(page, offset, bytes, KM_USER0);

 		status = mapping->a_ops->commit_write(NULL, page, offset,
 							offset + bytes);
-- 
========================================================================
Robert P. J. Day
Linux Consulting, Training and Annoying Kernel Pedantry
Waterloo, Ontario, CANADA

http://fsdev.net/wiki/index.php?title=Main_Page
========================================================================

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

end of thread, other threads:[~2007-06-20 10:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-06-18 15:59 [PATCH] XFS: Replace remaining memclear_highpage_flush() with zero_user_page() Robert P. J. Day
2007-06-18 18:43 ` Christoph Hellwig
2007-06-20 10:40   ` Hans-Peter Jansen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome