All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ben Myers <bpm@sgi.com>
To: aelder@sgi.com
Cc: xfs@oss.sgi.com
Subject: [PATCH] xfs: only SetPageUptodate if all buffers are uptodate
Date: Tue, 19 Apr 2011 06:40:28 -0500	[thread overview]
Message-ID: <20110419114028.7844.10303.stgit@nfs3> (raw)

xfs_vm_writepage and xfs_page_convert set a page uptodate if it is determined
that all of the buffer_heads attached to that page are uptodate.

Currently we use the flag variable 'uptodate'.  The flag is initially set = 1
and it is cleared if a !buffer_uptodate buffer is encountered.  In addition we
check that bh == head in order to ensure that all of the buffer_heads have been
checked.  However, it is possible to break out of the buffer_head loop early
having processed only the first buffer.  This leaves uptodate == 1 and bh ==
head, so the uptodate bit can be set on a page even if not all of the buffers
have been checked.  This can lead to data corruption on platforms with > 1
buffer per page.

SGI-PV: 1014173

Signed-off-by: Ben Myers <bpm@sgi.com>
---
 fs/xfs/linux-2.6/xfs_aops.c |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/fs/xfs/linux-2.6/xfs_aops.c b/fs/xfs/linux-2.6/xfs_aops.c
index 52dbd14..c961f35 100644
--- a/fs/xfs/linux-2.6/xfs_aops.c
+++ b/fs/xfs/linux-2.6/xfs_aops.c
@@ -686,7 +686,7 @@ xfs_convert_page(
 	unsigned long		p_offset;
 	unsigned int		type;
 	int			len, page_dirty;
-	int			count = 0, done = 0, uptodate = 1;
+	int			count = 0, done = 0, uptodate = 0;
  	xfs_off_t		offset = page_offset(page);
 
 	if (page->index != tindex)
@@ -727,8 +727,8 @@ xfs_convert_page(
 	do {
 		if (offset >= end_offset)
 			break;
-		if (!buffer_uptodate(bh))
-			uptodate = 0;
+		if (buffer_uptodate(bh))
+			uptodate++;
 		if (!(PageUptodate(page) || buffer_uptodate(bh))) {
 			done = 1;
 			continue;
@@ -761,7 +761,7 @@ xfs_convert_page(
 		}
 	} while (offset += len, (bh = bh->b_this_page) != head);
 
-	if (uptodate && bh == head)
+	if (uptodate == (PAGE_CACHE_SIZE / len))
 		SetPageUptodate(page);
 
 	if (count) {
@@ -915,7 +915,7 @@ xfs_vm_writepage(
 	__uint64_t              end_offset;
 	pgoff_t                 end_index, last_index;
 	ssize_t			len;
-	int			err, imap_valid = 0, uptodate = 1;
+	int			err, imap_valid = 0, uptodate = 0;
 	int			count = 0;
 	int			nonblocking = 0;
 
@@ -978,8 +978,8 @@ xfs_vm_writepage(
 
 		if (offset >= end_offset)
 			break;
-		if (!buffer_uptodate(bh))
-			uptodate = 0;
+		if (buffer_uptodate(bh))
+			uptodate++;
 
 		/*
 		 * set_page_dirty dirties all buffers in a page, independent
@@ -1047,7 +1047,7 @@ xfs_vm_writepage(
 
 	} while (offset += len, ((bh = bh->b_this_page) != head));
 
-	if (uptodate && bh == head)
+	if (uptodate == (PAGE_CACHE_SIZE / len))
 		SetPageUptodate(page);
 
 	xfs_start_page_writeback(page, 1, count);

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

             reply	other threads:[~2011-04-19 19:20 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-19 11:40 Ben Myers [this message]
2011-04-20 10:35 ` [PATCH] xfs: only SetPageUptodate if all buffers are uptodate Christoph Hellwig
2011-04-20 14:57   ` bpm
2011-04-20 15:36     ` Christoph Hellwig
2011-06-23  5:08       ` Dave Chinner
2011-06-23  6:09         ` Dave Chinner
2011-06-23 10:35           ` Dave Chinner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110419114028.7844.10303.stgit@nfs3 \
    --to=bpm@sgi.com \
    --cc=aelder@sgi.com \
    --cc=xfs@oss.sgi.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.