public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
From: Jan Kara <jack@suse.cz>
To: xfs@oss.sgi.com
Cc: Ben Myers <bpm@sgi.com>, Alex Elder <elder@kernel.org>,
	Jan Kara <jack@suse.cz>
Subject: [PATCH] xfs: Fix overallocation in xfs_buf_allocate_memory()
Date: Tue,  5 Jun 2012 13:08:10 +0200	[thread overview]
Message-ID: <1338894490-12662-1-git-send-email-jack@suse.cz> (raw)

Commit 0e6e847f which introduced xfs_buf_allocate_memory() function has a bug
causing the function to overestimate the number of necessary pages. The problem
is that xfs_buf_alloc() sets b_bn to -1 and thus effectively every buffer is
straddling a page boundary which causes xfs_buf_allocate_memory() to allocate
two pages and use vmalloc() for access which slows things down.

Fix the code to use correct block number.

Signed-off-by: Jan Kara <jack@suse.cz>
---
 fs/xfs/xfs_buf.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/fs/xfs/xfs_buf.c b/fs/xfs/xfs_buf.c
index 172d3cc..b67cc83 100644
--- a/fs/xfs/xfs_buf.c
+++ b/fs/xfs/xfs_buf.c
@@ -296,6 +296,7 @@ xfs_buf_free(
 STATIC int
 xfs_buf_allocate_memory(
 	xfs_buf_t		*bp,
+	xfs_daddr_t		blkno,
 	uint			flags)
 {
 	size_t			size;
@@ -334,8 +335,8 @@ xfs_buf_allocate_memory(
 	}
 
 use_alloc_page:
-	start = BBTOB(bp->b_bn) >> PAGE_SHIFT;
-	end = (BBTOB(bp->b_bn + bp->b_length) + PAGE_SIZE - 1) >> PAGE_SHIFT;
+	start = BBTOB(blkno) >> PAGE_SHIFT;
+	end = (BBTOB(blkno + bp->b_length) + PAGE_SIZE - 1) >> PAGE_SHIFT;
 	page_count = end - start;
 	error = _xfs_buf_get_pages(bp, page_count, flags);
 	if (unlikely(error))
@@ -552,7 +553,7 @@ xfs_buf_get(
 	if (unlikely(!new_bp))
 		return NULL;
 
-	error = xfs_buf_allocate_memory(new_bp, flags);
+	error = xfs_buf_allocate_memory(new_bp, blkno, flags);
 	if (error) {
 		kmem_zone_free(xfs_buf_zone, new_bp);
 		return NULL;
-- 
1.7.1

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

             reply	other threads:[~2012-06-05 11:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-05 11:08 Jan Kara [this message]
2012-06-05 13:28 ` [PATCH] xfs: Fix overallocation in xfs_buf_allocate_memory() Dave Chinner
2012-06-05 22:16   ` Jan Kara

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=1338894490-12662-1-git-send-email-jack@suse.cz \
    --to=jack@suse.cz \
    --cc=bpm@sgi.com \
    --cc=elder@kernel.org \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox