From: Ming Lin <ming.l@samsung.com>
To: linux-kernel@vger.kernel.org
Cc: Jens Axboe <axboe@fb.com>,
linux-fsdevel@vger.kernel.org, david@fromorbit.com,
Changho Choi-SSI <changho.c@ssi.samsung.com>,
"Kwan (Hingkwan) Huen-SSI" <kwan.huen@ssi.samsung.com>
Subject: [RFC DRAFT PATCH] per-buffered-write stream IDs
Date: Tue, 21 Apr 2015 10:09:47 -0700 [thread overview]
Message-ID: <1429636187-30236-1-git-send-email-ming.l@samsung.com> (raw)
Hi Jens,
This RFC DRAFT patch is on top of your "[PATCH v2] Support for write stream IDs"
I throw it out early to get comments if it's the way to go.
Quote LWN(http://lwn.net/Articles/638722):
"There would be clear value in a closer association between stream IDs
and specific buffered-write operations. Getting there would require storing
the stream ID with each dirtied page, though; that, in turn, almost certainly
implies shoehorning the stream ID into the associated page structure.
That would not be an easy task; it is not surprising that it is not a part of
this patch set. Should the lack of per-buffered-write stream IDs prove to be
a serious constraint in the future, somebody will certainly be motivated to
try to find a place to store another eight bits in struct page."
This draft patch stores stream_id in buffer head instead of page.
---
fs/buffer.c | 4 ++--
fs/ext4/page-io.c | 2 +-
fs/mpage.c | 5 ++++-
include/linux/buffer_head.h | 1 +
mm/filemap.c | 17 +++++++++++++++++
5 files changed, 25 insertions(+), 4 deletions(-)
diff --git a/fs/buffer.c b/fs/buffer.c
index 5191523..274fcc5 100644
--- a/fs/buffer.c
+++ b/fs/buffer.c
@@ -1774,7 +1774,7 @@ static int __block_write_full_page(struct inode *inode, struct page *page,
do {
struct buffer_head *next = bh->b_this_page;
if (buffer_async_write(bh)) {
- _submit_bh(write_op, bh, streamid_to_flags(inode_streamid(inode)));
+ _submit_bh(write_op, bh, streamid_to_flags(bh->b_streamid));
nr_underway++;
}
bh = next;
@@ -1828,7 +1828,7 @@ recover:
struct buffer_head *next = bh->b_this_page;
if (buffer_async_write(bh)) {
clear_buffer_dirty(bh);
- _submit_bh(write_op, bh, streamid_to_flags(inode_streamid(inode)));
+ _submit_bh(write_op, bh, streamid_to_flags(bh->b_streamid));
nr_underway++;
}
bh = next;
diff --git a/fs/ext4/page-io.c b/fs/ext4/page-io.c
index 980c5a9..c912129 100644
--- a/fs/ext4/page-io.c
+++ b/fs/ext4/page-io.c
@@ -406,7 +406,7 @@ submit_and_retry:
ret = io_submit_init_bio(io, bh);
if (ret)
return ret;
- bio_set_streamid(io->io_bio, inode_streamid(inode));
+ bio_set_streamid(io->io_bio, bh->b_streamid);
}
ret = bio_add_page(io->io_bio, page, bh->b_size, bh_offset(bh));
if (ret != bh->b_size)
diff --git a/fs/mpage.c b/fs/mpage.c
index fba13f4..1c5ae1c 100644
--- a/fs/mpage.c
+++ b/fs/mpage.c
@@ -481,12 +481,15 @@ static int __mpage_writepage(struct page *page, struct writeback_control *wbc,
int length;
struct buffer_head map_bh;
loff_t i_size = i_size_read(inode);
+ int streamid = 0;
int ret = 0;
if (page_has_buffers(page)) {
struct buffer_head *head = page_buffers(page);
struct buffer_head *bh = head;
+ streamid = bh->b_streamid;
+
/* If they're all mapped and dirty, do it */
page_block = 0;
do {
@@ -605,7 +608,7 @@ alloc_new:
bio_get_nr_vecs(bdev), GFP_NOFS|__GFP_HIGH);
if (bio == NULL)
goto confused;
- bio_set_streamid(bio, inode_streamid(inode));
+ bio_set_streamid(bio, streamid);
}
/*
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h
index 73b4522..5dbb460 100644
--- a/include/linux/buffer_head.h
+++ b/include/linux/buffer_head.h
@@ -75,6 +75,7 @@ struct buffer_head {
struct address_space *b_assoc_map; /* mapping this buffer is
associated with */
atomic_t b_count; /* users using this buffer_head */
+ unsigned int b_streamid;
};
/*
diff --git a/mm/filemap.c b/mm/filemap.c
index 6bf5e42..3a31b95 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -2419,6 +2419,21 @@ struct page *grab_cache_page_write_begin(struct address_space *mapping,
}
EXPORT_SYMBOL(grab_cache_page_write_begin);
+static void buffer_head_set_streamid(struct page *page, struct file *file)
+{
+ struct buffer_head *bh, *head;
+
+ if (!page_has_buffers(page))
+ return;
+
+ head = page_buffers(page);
+ bh = head;
+ do {
+ bh->b_streamid = file->f_streamid;
+ bh = bh->b_this_page;
+ } while (bh != head);
+}
+
ssize_t generic_perform_write(struct file *file,
struct iov_iter *i, loff_t pos)
{
@@ -2466,6 +2481,8 @@ again:
if (unlikely(status < 0))
break;
+ buffer_head_set_streamid(page, file);
+
if (mapping_writably_mapped(mapping))
flush_dcache_page(page);
--
1.9.1
next reply other threads:[~2015-04-21 17:10 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-21 17:09 Ming Lin [this message]
2015-04-21 17:12 ` Jens Axboe
2015-04-21 18:34 ` Ming Lin
2015-04-21 19:05 ` Jens Axboe
2015-04-22 13:57 ` Jan Kara
2015-04-22 15:56 ` Jens Axboe
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=1429636187-30236-1-git-send-email-ming.l@samsung.com \
--to=ming.l@samsung.com \
--cc=axboe@fb.com \
--cc=changho.c@ssi.samsung.com \
--cc=david@fromorbit.com \
--cc=kwan.huen@ssi.samsung.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/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
all inboxes | Powered by JetHome®