login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2010
»
July
»
27
Re: [RFC][PATCH 00/11] blkiocg async support
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: KAMEZAWA Hiroyuki
Subject:
Re: [RFC][PATCH 00/11] blkiocg async support
Date: Monday, July 26, 2010 - 11:39 pm
On Mon, 26 Jul 2010 23:40:07 -0700 Greg Thelen <gthelen@google.com> wrote:
quoted text
> On Sun, Jul 25, 2010 at 11:41 PM, Balbir Singh > <balbir@linux.vnet.ibm.com> wrote: > > * Munihiro Ikeda <m-ikeda@ds.jp.nec.com> [2010-07-08 22:57:13]: > > > >> These RFC patches are trial to add async (cached) write support on blkio > >> controller. > >> > >> Only test which has been done is to compile, boot, and that write bandwidth > >> seems prioritized when pages which were dirtied by two different processes in > >> different cgroups are written back to a device simultaneously. I know this > >> is the minimum (or less) test but I posted this as RFC because I would like > >> to hear your opinions about the design direction in the early stage. > >> > >> Patches are for 2.6.35-rc4. > >> > >> This patch series consists of two chunks. > >> > >> (1) iotrack (patch 01/11 -- 06/11) > >> > >> This is a functionality to track who dirtied a page, in exact which cgroup a > >> process which dirtied a page belongs to. Blkio controller will read the info > >> later and prioritize when the page is actually written to a block device. > >> This work is originated from Ryo Tsuruta and Hirokazu Takahashi and includes > >> Andrea Righi's idea. It was posted as a part of dm-ioband which was one of > >> proposals for IO controller. > >> > > > > Does this reuse the memcg infrastructure, if so could you please add a > > summary of the changes here. > > > >> > >> (2) blkio controller modification (07/11 -- 11/11) > >> > >> The main part of blkio controller async write support. > >> Currently async queues are device-wide and async write IOs are always treated > >> as root group. > >> These patches make async queues per a cfq_group per a device to control them. > >> Async write is handled by flush kernel thread. Because queue pointers are > >> stored in cfq_io_context, io_context of the thread has to have multiple > >> cfq_io_contexts per a device. So these patches make cfq_io_context per an > >> io_context per a cfq_group, which means per an io_context per a cgroup per a > >> device. > >> > >> > >> This might be a piece of puzzle for complete async write support of blkio > >> controller. One of other pieces in my head is page dirtying ratio control. > >> I believe Andrea Righi was working on it...how about the situation? > >> > > > > Greg posted the last set of patches, we are yet to see another > > iteration. > > I am waiting to post the next iteration of memcg dirty limits and ratios until > Kame-san posts light-weight lockless update_stat(). I can post the dirty ratio > patches before the lockless updates are available, but I imagine there will be > a significant merge. So I prefer to wait, assuming that thee changes will be > coming in the near future. >
will post RFC version today. But maybe needs some sort-out..I'll CC you. Thanks, -Kame --
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
[RFC][PATCH 00/11] blkiocg async support
, Munehiro Ikeda
, (Thu Jul 8, 7:57 pm)
[RFC][PATCH 01/11] blkiocg async: Make page_cgroup indepen ...
, Munehiro Ikeda
, (Thu Jul 8, 8:14 pm)
[RFC][PATCH 02/11] blkiocg async: The main part of iotrack
, Munehiro Ikeda
, (Thu Jul 8, 8:15 pm)
[RFC][PATCH 03/11] blkiocg async: Hooks for iotrack
, Munehiro Ikeda
, (Thu Jul 8, 8:16 pm)
[RFC][PATCH 04/11] blkiocg async: block_commit_write not t ...
, Munehiro Ikeda
, (Thu Jul 8, 8:16 pm)
[RFC][PATCH 05/11] blkiocg async: __set_page_dirty_nobuffe ...
, Munehiro Ikeda
, (Thu Jul 8, 8:17 pm)
[RFC][PATCH 06/11] blkiocg async: ext4_writepage not to ov ...
, Munehiro Ikeda
, (Thu Jul 8, 8:17 pm)
[RFC][PATCH 07/11] blkiocg async: Pass bio to elevator_ops ...
, Munehiro Ikeda
, (Thu Jul 8, 8:18 pm)
[RFC][PATCH 08/11] blkiocg async: Function to search blkcg ...
, Munehiro Ikeda
, (Thu Jul 8, 8:19 pm)
[RFC][PATCH 09/11] blkiocg async: Functions to get cfqg fr ...
, Munehiro Ikeda
, (Thu Jul 8, 8:20 pm)
[RFC][PATCH 10/11] blkiocg async: Async queue per cfq_group
, Munehiro Ikeda
, (Thu Jul 8, 8:22 pm)
[RFC][PATCH 11/11] blkiocg async: Workload timeslice adjus ...
, Munehiro Ikeda
, (Thu Jul 8, 8:23 pm)
Re: [RFC][PATCH 02/11] blkiocg async: The main part of iotrack
, KAMEZAWA Hiroyuki
, (Fri Jul 9, 12:35 am)
Re: [RFC][PATCH 02/11] blkiocg async: The main part of iotrack
, KAMEZAWA Hiroyuki
, (Fri Jul 9, 12:38 am)
Re: [RFC][PATCH 03/11] blkiocg async: Hooks for iotrack
, Andrea Righi
, (Fri Jul 9, 2:24 am)
Re: [RFC][PATCH 00/11] blkiocg async support
, Andrea Righi
, (Fri Jul 9, 3:04 am)
Re: [RFC][PATCH 00/11] blkiocg async support
, Vivek Goyal
, (Fri Jul 9, 6:45 am)
Re: [RFC][PATCH 02/11] blkiocg async: The main part of iotrack
, Munehiro Ikeda
, (Fri Jul 9, 4:06 pm)
Re: [RFC][PATCH 02/11] blkiocg async: The main part of iotrack
, Munehiro Ikeda
, (Fri Jul 9, 4:09 pm)
Re: [RFC][PATCH 03/11] blkiocg async: Hooks for iotrack
, Munehiro Ikeda
, (Fri Jul 9, 4:43 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, Munehiro Ikeda
, (Fri Jul 9, 5:17 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, Nauman Rafique
, (Fri Jul 9, 5:55 pm)
Re: [RFC][PATCH 02/11] blkiocg async: The main part of iotrack
, Andrea Righi
, (Sat Jul 10, 3:06 am)
Re: [RFC][PATCH 00/11] blkiocg async support
, Vivek Goyal
, (Sat Jul 10, 6:24 am)
Re: [RFC][PATCH 02/11] blkiocg async: The main part of iotrack
, KAMEZAWA Hiroyuki
, (Sun Jul 11, 5:11 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, KAMEZAWA Hiroyuki
, (Sun Jul 11, 5:20 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, Vivek Goyal
, (Mon Jul 12, 6:18 am)
Re: [RFC][PATCH 00/11] blkiocg async support
, KAMEZAWA Hiroyuki
, (Mon Jul 12, 9:36 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, Vivek Goyal
, (Wed Jul 14, 7:29 am)
Re: [RFC][PATCH 02/11] blkiocg async: The main part of iotrack
, Munehiro IKEDA
, (Wed Jul 14, 7:46 am)
Re: [RFC][PATCH 00/11] blkiocg async support
, KAMEZAWA Hiroyuki
, (Wed Jul 14, 5:00 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, Vivek Goyal
, (Fri Jul 16, 6:43 am)
Re: [RFC][PATCH 00/11] blkiocg async support
, Daniel P. Berrange
, (Fri Jul 16, 7:15 am)
Re: [RFC][PATCH 00/11] blkiocg async support
, Vivek Goyal
, (Fri Jul 16, 7:35 am)
Re: [RFC][PATCH 00/11] blkiocg async support
, Daniel P. Berrange
, (Fri Jul 16, 7:53 am)
Re: [RFC][PATCH 00/11] blkiocg async support
, Vivek Goyal
, (Fri Jul 16, 8:12 am)
Re: [RFC][PATCH 00/11] blkiocg async support
, Greg Thelen
, (Thu Jul 22, 12:28 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, KAMEZAWA Hiroyuki
, (Thu Jul 22, 4:59 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, Balbir Singh
, (Sun Jul 25, 11:41 pm)
Re: [RFC][PATCH 01/11] blkiocg async: Make page_cgroup ind ...
, Balbir Singh
, (Sun Jul 25, 11:49 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, KAMEZAWA Hiroyuki
, (Mon Jul 26, 11:39 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, Greg Thelen
, (Mon Jul 26, 11:40 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, Daniel P. Berrange
, (Tue Jul 27, 3:40 am)
Re: [RFC][PATCH 00/11] blkiocg async support
, Vivek Goyal
, (Tue Jul 27, 7:03 am)
Re: [RFC][PATCH 00/11] blkiocg async support
, Vivek Goyal
, (Mon Aug 2, 1:58 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, Munehiro Ikeda
, (Tue Aug 3, 7:31 am)
Re: [RFC][PATCH 00/11] blkiocg async support
, Nauman Rafique
, (Tue Aug 3, 12:24 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, Vivek Goyal
, (Tue Aug 3, 1:15 pm)
Re: [RFC][PATCH 00/11] blkiocg async support
, Munehiro Ikeda
, (Wed Aug 4, 7:32 am)
Re: [RFC][PATCH 10/11] blkiocg async: Async queue per cfq_ ...
, Nauman Rafique
, (Thu Aug 12, 6:24 pm)
Re: [RFC][PATCH 10/11] blkiocg async: Async queue per cfq_ ...
, Munehiro Ikeda
, (Fri Aug 13, 2:00 pm)
Re: [RFC][PATCH 10/11] blkiocg async: Async queue per cfq_ ...
, Nauman Rafique
, (Fri Aug 13, 4:01 pm)
Re: [RFC][PATCH 10/11] blkiocg async: Async queue per cfq_ ...
, Munehiro Ikeda
, (Fri Aug 13, 5:49 pm)
Navigation
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
monstr
[PATCH 46/56] microblaze_v2: headers files entry.h current.h mman.h registers.h se...
Jan Engelhardt
Re: Linux Security *Module* Framework (Was: LSM conversion to static interface)
Dave Jones
Re: Why do so many machines need "noapic"?
Michael Moore
Re: underage models, pre teen models, lolita porn, young preteens, little lolitas
Lars-Peter Clausen
[PATCH v4] MMC: Add JZ4740 mmc driver
git
:
Andy Parkins
git-fetch fails with error code 128
Eli Zaretskii
Re: Switching from CVS to GIT
Jan Harkes
Re: git-svn and huge data and modifying the git-svn-HEAD branch directly
Dan Chokola
Re: how do you "force a pull"?
Johan Herland
Re: Comment on weak refs
git-commits-head
:
Linux Kernel Mailing List
No need to do lock_super() for exclusion in generic_shutdown_super()
Linux Kernel Mailing List
x86, msr: Export the register-setting MSR functions via /dev/*/msr
Linux Kernel Mailing List
MIPS: SMTC: Fix lockup in smtc_distribute_timer
Linux Kernel Mailing List
Input: gpio-keys - add support for disabling gpios through sysfs
Linux Kernel Mailing List
sh-sci: update receive error handling for muxed irqs
linux-netdev
:
Patrick McHardy
Re: no reassembly for outgoing packets on RAW socket
Ilpo Järvinen
net-next/unix: BUG: using smp_processor_id() in preemptible
Herbert Xu
Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock().
Evgeniy Polyakov
Re: virt-manager broken by bind(0) in net-next.
Eric Dumazet
Re: [PATCH] conntrack: use SLAB_DESTROY_BY_RCU for nf_conn structs
openbsd-misc
:
elitdostlar
Seks partneri arayan bayanlar bu adreste - 8878xs706x6438
Marcus Andree
Re: This is what Linus Torvalds calls openBSD crowd
Lars D. Noodén
Re: sshd.config and AllowUsers
Henning Brauer
Re: Sun Blade 1000?
Laurens Vets
Re: OT: opinions on IDS / IPS solutions
Colocation donated by:
Syndicate