From: Dave Chinner <david@fromorbit.com>
To: linux-fsdevel@vger.kernel.org
Cc: xfs@oss.sgi.com, sandeen@sandeen.net
Subject: [PATCH 2/2] dio: scale unaligned IO tracking via multiple lists
Date: Mon, 2 Aug 2010 17:25:45 +1000 [thread overview]
Message-ID: <1280733945-16231-3-git-send-email-david@fromorbit.com> (raw)
In-Reply-To: <1280733945-16231-1-git-send-email-david@fromorbit.com>
From: Dave Chinner <dchinner@redhat.com>
To avoid concerns that a single list and lock tracking the unaligned IOs
will not scale appropriately, create multiple lists and locks and chose them by
hashing the unaligned block being zeroed.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
fs/direct-io.c | 53 ++++++++++++++++++++++++++++++++++++++++-------------
1 files changed, 40 insertions(+), 13 deletions(-)
diff --git a/fs/direct-io.c b/fs/direct-io.c
index 611524e..95dcba4 100644
--- a/fs/direct-io.c
+++ b/fs/direct-io.c
@@ -152,8 +152,29 @@ struct dio_zero_block {
atomic_t ref; /* reference count */
};
-DEFINE_SPINLOCK(dio_zero_block_lock);
-LIST_HEAD(dio_zero_block_list);
+#define DIO_ZERO_BLOCK_NR 37LL
+struct dio_zero_block_head {
+ struct list_head list;
+ spinlock_t lock;
+};
+
+struct dio_zero_block_head dio_zero_blocks[DIO_ZERO_BLOCK_NR];
+#define to_dio_zero_list(zb) (&dio_zero_blocks[zb % DIO_ZERO_BLOCK_NR].list)
+#define to_dio_zero_lock(zb) (&dio_zero_blocks[zb % DIO_ZERO_BLOCK_NR].lock)
+
+
+static int __init
+dio_init_zero_block(void)
+{
+ int i;
+
+ for (i = 0; i < DIO_ZERO_BLOCK_NR; i++) {
+ spin_lock_init(&dio_zero_blocks[i].lock);
+ INIT_LIST_HEAD(&dio_zero_blocks[i].list);
+ }
+ return 0;
+}
+subsys_initcall(dio_init_zero_block);
/*
* Add a filesystem block to the list of blocks we are tracking.
@@ -162,6 +183,8 @@ static void
dio_start_zero_block(struct dio *dio, sector_t zero_block)
{
struct dio_zero_block *zb;
+ struct list_head *list = to_dio_zero_list(zero_block);
+ spinlock_t *lock = to_dio_zero_lock(zero_block);
zb = kmalloc(sizeof(*zb), GFP_NOIO);
if (!zb)
@@ -172,9 +195,9 @@ dio_start_zero_block(struct dio *dio, sector_t zero_block)
zb->dio = dio;
atomic_set(&zb->ref, 1);
- spin_lock(&dio_zero_block_lock);
- list_add(&zb->dio_list, &dio_zero_block_list);
- spin_unlock(&dio_zero_block_lock);
+ spin_lock(lock);
+ list_add(&zb->dio_list, list);
+ spin_unlock(lock);
}
static void
@@ -194,20 +217,22 @@ static int
dio_wait_zero_block(struct dio *dio, sector_t zero_block)
{
struct dio_zero_block *zb;
+ struct list_head *list = to_dio_zero_list(zero_block);
+ spinlock_t *lock = to_dio_zero_lock(zero_block);
- spin_lock(&dio_zero_block_lock);
- list_for_each_entry(zb, &dio_zero_block_list, dio_list) {
+ spin_lock(lock);
+ list_for_each_entry(zb, list, dio_list) {
if (zb->dio->inode != dio->inode)
continue;
if (zb->zero_block != zero_block)
continue;
atomic_inc(&zb->ref);
- spin_unlock(&dio_zero_block_lock);
+ spin_unlock(lock);
wait_event(zb->wq, (list_empty(&zb->dio_list)));
dio_drop_zero_block(zb);
return 1;
}
- spin_unlock(&dio_zero_block_lock);
+ spin_unlock(lock);
return 0;
}
@@ -217,20 +242,22 @@ dio_wait_zero_block(struct dio *dio, sector_t zero_block)
static void dio_end_zero_block(struct dio *dio, sector_t zero_block)
{
struct dio_zero_block *zb;
+ struct list_head *list = to_dio_zero_list(zero_block);
+ spinlock_t *lock = to_dio_zero_lock(zero_block);
- spin_lock(&dio_zero_block_lock);
- list_for_each_entry(zb, &dio_zero_block_list, dio_list) {
+ spin_lock(lock);
+ list_for_each_entry(zb, list, dio_list) {
if (zb->dio->inode != dio->inode)
continue;
if (zb->zero_block != zero_block)
continue;
list_del_init(&zb->dio_list);
- spin_unlock(&dio_zero_block_lock);
+ spin_unlock(lock);
wake_up(&zb->wq);
dio_drop_zero_block(zb);
return;
}
- spin_unlock(&dio_zero_block_lock);
+ spin_unlock(lock);
}
/*
--
1.7.1
next prev parent reply other threads:[~2010-08-02 7:26 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-02 7:25 [PATCH 0/2] dio: serialise unaligned direct IO V2 Dave Chinner
2010-08-02 7:25 ` [PATCH 1/2] dio: track and serialise unaligned direct IO Dave Chinner
2010-08-02 9:30 ` Christoph Hellwig
2010-08-02 18:50 ` Jan Kara
2010-08-02 7:25 ` Dave Chinner [this message]
2010-08-02 9:32 ` [PATCH 2/2] dio: scale unaligned IO tracking via multiple lists Christoph Hellwig
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=1280733945-16231-3-git-send-email-david@fromorbit.com \
--to=david@fromorbit.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=sandeen@sandeen.net \
--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;
as well as URLs for NNTP newsgroup(s).