Linux Container Development
 help / color / mirror / Atom feed
  • [parent not found: <1241553525-28095-2-git-send-email-vgoyal@redhat.com>]
  • [parent not found: <4A014619.1040000@cn.fujitsu.com>]
  • [parent not found: <1241553525-28095-19-git-send-email-vgoyal@redhat.com>]
  • [parent not found: <1241553525-28095-6-git-send-email-vgoyal@redhat.com>]
  • [parent not found: <1241553525-28095-18-git-send-email-vgoyal@redhat.com>]
  • [parent not found: <4A03FF3C.4020506@cn.fujitsu.com>]
  • [parent not found: <1241553525-28095-8-git-send-email-vgoyal@redhat.com>]
  • [parent not found: <1241553525-28095-9-git-send-email-vgoyal@redhat.com>]
  • [parent not found: <4A0A29B5.7030109@cn.fujitsu.com>]
  • [parent not found: <1241553525-28095-5-git-send-email-vgoyal@redhat.com>]
  • * IO scheduler based IO Controller V2
    @ 2009-05-05 19:58 Vivek Goyal
      0 siblings, 0 replies; 133+ messages in thread
    From: Vivek Goyal @ 2009-05-05 19:58 UTC (permalink / raw)
      To: nauman-hpIqsD4AKlfQT0dZR+AlfA, dpshah-hpIqsD4AKlfQT0dZR+AlfA,
    	lizf-BthXqXjhjHXQFUHtdCDX3A, mikew-hpIqsD4AKlfQT0dZR+AlfA,
    	fchecconi-Re5JQEeQqe8AvxtiuMwx3w,
    	paolo.valente-rcYM44yAMweonA0d6jMUrA,
    	jens.axboe-QHcLZuEGTsvQT0dZR+AlfA, ryov-jCdQPDEk3idL9jVzuh4AOg,
    	fer
      Cc: akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b
    
    
    Hi All,
    
    Here is the V2 of the IO controller patches generated on top of 2.6.30-rc4.
    First version of the patches was posted here.
    
    http://lkml.org/lkml/2009/3/11/486
    
    This patchset is still work in progress but I want to keep on getting the
    snapshot of my tree out at regular intervals to get the feedback hence V2.
    
    Before I go into details of what are the major changes from V1, wanted
    to highlight other IO controller proposals on lkml.
    
    Other active IO controller proposals
    ------------------------------------
    Currently primarily two other IO controller proposals are out there.
    
    dm-ioband
    ---------
    This patch set is from Ryo Tsuruta from valinux. It is a proportional bandwidth controller implemented as a dm driver.
    
    http://people.valinux.co.jp/~ryov/dm-ioband/
    
    The biggest issue (apart from others), with a 2nd level IO controller is that
    buffering of BIOs takes place in a single queue and dispatch of this BIOs
    to unerlying IO scheduler is in FIFO manner. That means whenever the buffering
    takes place, it breaks the notion of different class and priority of CFQ.
    
    That means RT requests might be stuck behind some write requests or some read
    requests might be stuck behind somet write requests for long time etc. To
    demonstrate the single FIFO dispatch issues, I had run some basic tests and
    posted the results in following mail thread.
    
    http://lkml.org/lkml/2009/4/13/2
    
    These are hard to solve issues and one will end up maintaining the separate
    queues for separate classes and priority as CFQ does to fully resolve it.
    But that will make 2nd level implementation complex at the same time if
    somebody is trying to use IO controller on a single disk or on a hardware RAID
    using cfq as scheduler, it will be two layers of queueing maintating separate
    queues per priorty level. One at dm-driver level and other at CFQ which again
    does not make lot of sense.
    
    On the other hand, if a user is running noop at the device level, at higher
    level we will be maintaining multiple cfq like queues, which also does not
    make sense as underlying IO scheduler never wanted that.
    
    Hence, IMHO, I think that controlling bio at second level probably is not a
    very good idea. We should instead do it at IO scheduler level where we already
    maintain all the needed queues. Just that make the scheduling hierarhical and
    group aware so isolate IO of one group from other.
    
    IO-throttling
    -------------
    This patch set is from Andrea Righi provides max bandwidth controller. That
    means, it does not gurantee the minimum bandwidth. It provides the maximum
    bandwidth limits and throttles the application if it crosses its bandwidth.
    
    So its not apple vs apple comparison. This patch set and dm-ioband provide
    proportional bandwidth control where a cgroup can use much more bandwidth
    if there are not other users and resource control comes into the picture
    only if there is contention.
    
    It seems that there are both the kind of users there. One set of people needing
    proportional BW control and other people needing max bandwidth control.
    
    Now the question is, where max bandwidth control should be implemented? At
    higher layers or at IO scheduler level? Should proportional bw control and
    max bw control be implemented separately at different layer or these should
    be implemented at one place?
    
    IMHO, if we are doing proportional bw control at IO scheduler layer, it should
    be possible to extend it to do max bw control also here without lot of effort.
    Then it probably does not make too much of sense to do two types of control
    at two different layers. Doing it at one place should lead to lesser code
    and reduced complexity.
    
    Secondly, io-throttling solution also buffers writes at higher layer.
    Which again will lead to issue of losing the notion of priority of writes.
    
    Hence, personally I think that users will need both proportional bw as well
    as max bw control and we probably should implement these at a single place
    instead of splitting it. Once elevator based io controller patchset matures,
    it can be enhanced to do max bw control also.
    
    Having said that, one issue with doing upper limit control at elevator/IO
    scheduler level is that it does not have the view of higher level logical
    devices. So if there is a software RAID with two disks, then one can not do
    max bw control on logical device, instead it shall have to be on leaf node
    where io scheduler is attached.
    
    Now back to the desciption of this patchset and changes from V1.
    
    - Rebased patches to 2.6.30-rc4.
    
    - Last time Andrew mentioned that async writes are big issue for us hence,
      introduced the control for async writes also.
    
    - Implemented per group request descriptor support. This was needed to
      make sure one group doing lot of IO does not starve other group of request
      descriptors and other group does not get fair share. This is a basic patch
      right now which probably will require more changes after some discussion.
    
    - Exported the disk time used and number of sectors dispatched by a cgroup
      through cgroup interface. This should help us in seeing how much disk
      time each group got and whether it is fair or not.
    
    - Implemented group refcounting support. Lack of this was causing some
      cgroup related issues. There are still some races left out which needs
      to be fixed. 
    
    - For IO tracking/async write tracking, started making use of patches of
      blkio-cgroup from ryo Tsuruta posted here.
    
      http://lkml.org/lkml/2009/4/28/235
    
      Currently people seem to be liking the idea of separate subsystem for
      tracking writes and then rest of the users can use that info instead of
      everybody implementing their own. That's a different thing that how many
      users are out there which will end up in kernel is not clear.
    
      So instead of carrying own versin of bio-cgroup patches, and overloading
      io controller cgroup subsystem, I am making use of blkio-cgroup patches.
      One shall have to mount io controller and blkio subsystem together on the
      same hiearchy for the time being. Later we can take care of the case where
      blkio is mounted on a different hierarchy.
    
    - Replaced group priorities with group weights.
    
    Testing
    =======
    
    Again, I have been able to do only very basic testing of reads and writes.
    Did not want to hold the patches back because of testing. Providing support
    for async writes took much more time than expected and still work is left
    in that area. Will continue to do more testing.
    
    Test1 (Fairness for synchronous reads)
    ======================================
    - Two dd in two cgroups with cgrop weights 1000 and 500. Ran two "dd" in those
      cgroups (With CFQ scheduler and /sys/block/<device>/queue/fairness = 1)
    
    dd if=/mnt/$BLOCKDEV/zerofile1 of=/dev/null &
    dd if=/mnt/$BLOCKDEV/zerofile2 of=/dev/null &
    
    234179072 bytes (234 MB) copied, 4.13954 s, 56.6 MB/s
    234179072 bytes (234 MB) copied, 5.2127 s, 44.9 MB/s
    
    group1 time=3108 group1 sectors=460968
    group2 time=1405 group2 sectors=264944
    
    This patchset tries to provide fairness in terms of disk time received. group1
    got almost double of group2 disk time (At the time of first dd finish). These
    time and sectors statistics can be read using io.disk_time and io.disk_sector
    files in cgroup. More about it in documentation file.
    
    Test2 (Fairness for async writes)
    =================================
    Fairness for async writes is tricy and biggest reason is that async writes
    are cached in higher layers (page cahe) and are dispatched to lower layers
    not necessarily in proportional manner. For example, consider two dd threads
    reading /dev/zero as input file and doing writes of huge files. Very soon
    we will cross vm_dirty_ratio and dd thread will be forced to write out some
    pages to disk before more pages can be dirtied. But not necessarily dirty
    pages of same thread are picked. It can very well pick the inode of lesser
    priority dd thread and do some writeout. So effectively higher weight dd is
    doing writeouts of lower weight dd pages and we don't see service differentation
    
    IOW, the core problem with async write fairness is that higher weight thread
    does not throw enought IO traffic at IO controller to keep the queue
    continuously backlogged. This are many .2 to .8 second intervals where higher
    weight queue is empty and in that duration lower weight queue get lots of job
    done giving the impression that there was no service differentiation.
    
    In summary, from IO controller point of view async writes support is there. Now
    we need to do some more work in higher layers to make sure higher weight process
    is not blocked behind IO of some lower weight process. This is a TODO item.
    
    So to test async writes I generated lots of write traffic in two cgroups (50
    fio threads) and watched the disk time statistics in respective cgroups at
    the interval of 2 seconds. Thanks to ryo tsuruta for the test case.
    
    *****************************************************************
    sync
    echo 3 > /proc/sys/vm/drop_caches
    
    fio_args="--size=64m --rw=write --numjobs=50 --group_reporting"
    
    echo $$ > /cgroup/bfqio/test1/tasks
    fio $fio_args --name=test1 --directory=/mnt/sdd1/fio/ --output=/mnt/sdd1/fio/test1.log &
    
    echo $$ > /cgroup/bfqio/test2/tasks
    fio $fio_args --name=test2 --directory=/mnt/sdd2/fio/ --output=/mnt/sdd2/fio/test2.log &
    *********************************************************************** 
    
    And watched the disk time and sector statistics for the both the cgroups
    every 2 seconds using a script. How is snippet from output.
    
    test1 statistics: time=9848   sectors=643152
    test2 statistics: time=5224   sectors=258600
    
    test1 statistics: time=11736   sectors=785792
    test2 statistics: time=6509   sectors=333160
    
    test1 statistics: time=13607   sectors=943968
    test2 statistics: time=7443   sectors=394352
    
    test1 statistics: time=15662   sectors=1089496
    test2 statistics: time=8568   sectors=451152
    
    So disk time consumed by group1 is almost double of group2.  
    
    Your feedback and comments are welcome.
    
    Thanks
    Vivek
    
    ^ permalink raw reply	[flat|nested] 133+ messages in thread

    end of thread, other threads:[~2009-06-11  1:22 UTC | newest]
    
    Thread overview: 133+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <1241553525-28095-1-git-send-email-vgoyal@redhat.com>
         [not found] ` <1241553525-28095-1-git-send-email-vgoyal-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-05 19:58   ` [PATCH 01/18] io-controller: Documentation Vivek Goyal
    2009-05-05 19:58   ` [PATCH 02/18] io-controller: Common flat fair queuing code in elevaotor layer Vivek Goyal
         [not found]     ` <1241553525-28095-3-git-send-email-vgoyal-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-22  6:43       ` Gui Jianfeng
         [not found]     ` <4A164978.1020604@cn.fujitsu.com>
         [not found]       ` <4A164978.1020604-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-22 12:32         ` Vivek Goyal
         [not found]       ` <20090522123231.GA14972@redhat.com>
         [not found]         ` <20090522123231.GA14972-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-23 20:04           ` Jens Axboe
    2009-05-05 19:58   ` [PATCH 03/18] io-controller: Charge for time slice based on average disk rate Vivek Goyal
    2009-05-05 19:58   ` [PATCH 04/18] io-controller: Modify cfq to make use of flat elevator fair queuing Vivek Goyal
    2009-05-05 19:58   ` [PATCH 05/18] io-controller: Common hierarchical fair queuing code in elevaotor layer Vivek Goyal
    2009-05-05 19:58   ` [PATCH 06/18] io-controller: cfq changes to use " Vivek Goyal
    2009-05-05 19:58   ` [PATCH 07/18] io-controller: Export disk time used and nr sectors dipatched through cgroups Vivek Goyal
    2009-05-05 19:58   ` [PATCH 08/18] io-controller: idle for sometime on sync queue before expiring it Vivek Goyal
    2009-05-05 19:58   ` [PATCH 09/18] io-controller: Separate out queue and data Vivek Goyal
    2009-05-05 19:58   ` [PATCH 10/18] io-conroller: Prepare elevator layer for single queue schedulers Vivek Goyal
    2009-05-05 19:58   ` [PATCH 11/18] io-controller: noop changes for hierarchical fair queuing Vivek Goyal
    2009-05-05 19:58   ` [PATCH 12/18] io-controller: deadline " Vivek Goyal
    2009-05-05 19:58   ` [PATCH 13/18] io-controller: anticipatory " Vivek Goyal
    2009-05-05 19:58   ` [PATCH 14/18] blkio_cgroup patches from Ryo to track async bios Vivek Goyal
    2009-05-05 19:58   ` [PATCH 15/18] io-controller: map async requests to appropriate cgroup Vivek Goyal
    2009-05-05 19:58   ` [PATCH 16/18] io-controller: Per cgroup request descriptor support Vivek Goyal
    2009-05-05 19:58   ` [PATCH 17/18] io-controller: IO group refcounting support Vivek Goyal
    2009-05-05 19:58   ` [PATCH 18/18] io-controller: Debug hierarchical IO scheduling Vivek Goyal
    2009-05-05 20:24   ` IO scheduler based IO Controller V2 Andrew Morton
         [not found]     ` <20090505132441.1705bfad.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
    2009-05-05 22:20       ` Peter Zijlstra
    2009-05-06  2:33       ` Vivek Goyal
    2009-05-06  3:41       ` Balbir Singh
         [not found]     ` <1241562049.11059.921.camel@twins>
    2009-05-06  3:42       ` Balbir Singh
         [not found]       ` <20090506034254.GD4416@balbir.in.ibm.com>
         [not found]         ` <20090506034254.GD4416-SINUvgVNF2CyUtPGxGje5AC/G2K4zDHf@public.gmane.org>
    2009-05-06 10:20           ` Fabio Checconi
    2009-05-06 18:47           ` Divyesh Shah
    2009-05-06 20:42           ` Andrea Righi
         [not found]     ` <20090506034118.GC4416@balbir.in.ibm.com>
         [not found]       ` <20090506034118.GC4416-SINUvgVNF2CyUtPGxGje5AC/G2K4zDHf@public.gmane.org>
    2009-05-06 13:28         ` Vivek Goyal
         [not found]     ` <20090506102030.GB20544@gandalf.sssup.it>
         [not found]       ` <20090506102030.GB20544-f9ZlEuEWxVeACYmtYXMKmw@public.gmane.org>
    2009-05-06 17:10         ` Balbir Singh
         [not found]     ` <20090506023332.GA1212@redhat.com>
         [not found]       ` <20090506023332.GA1212-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-06 17:59         ` Nauman Rafique
    2009-05-06 20:07         ` Andrea Righi
    2009-05-06 20:32         ` Vivek Goyal
    2009-05-07  0:18         ` Ryo Tsuruta
         [not found]       ` <20090506200751.GA4282@linux>
    2009-05-06 21:21         ` Vivek Goyal
         [not found]         ` <20090506212121.GI8180@redhat.com>
         [not found]           ` <20090506212121.GI8180-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-06 22:02             ` Andrea Righi
    2009-05-06 22:17               ` Vivek Goyal
         [not found]       ` <20090506203228.GH8180@redhat.com>
         [not found]         ` <20090506203228.GH8180-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-06 21:34           ` Andrea Righi
         [not found]         ` <20090506213453.GC4282@linux>
    2009-05-06 21:52           ` Vivek Goyal
         [not found]             ` <20090506215235.GJ8180-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-06 22:35               ` Andrea Righi
    2009-05-07  9:04               ` Andrea Righi
         [not found]             ` <20090506223512.GE4282@linux>
    2009-05-07  1:48               ` Ryo Tsuruta
         [not found]             ` <20090507090450.GA4613@linux>
    2009-05-07 12:22               ` Andrea Righi
    2009-05-07 14:11               ` Vivek Goyal
         [not found]               ` <20090507141126.GA9463@redhat.com>
         [not found]                 ` <20090507141126.GA9463-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-07 14:45                   ` Vivek Goyal
         [not found]                     ` <20090507144501.GB9463-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-07 15:36                       ` Vivek Goyal
         [not found]                         ` <20090507153642.GC9463-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-07 15:42                           ` Vivek Goyal
    2009-05-07 22:19                           ` Andrea Righi
         [not found]                         ` <20090507221900.GA29774@linux>
    2009-05-08 18:09                           ` Vivek Goyal
         [not found]                           ` <20090508180951.GG7293@redhat.com>
         [not found]                             ` <20090508180951.GG7293-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-08 20:05                               ` Andrea Righi
         [not found]                             ` <20090508200458.GA3708@linux>
    2009-05-08 21:56                               ` Vivek Goyal
         [not found]                                 ` <20090508215618.GJ7293-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-09  9:22                                   ` Peter Zijlstra
    2009-05-14 10:31                                   ` Andrea Righi
    2009-05-14 16:43                                   ` Dhaval Giani
    2009-05-07 22:40                       ` Andrea Righi
         [not found]       ` <20090507.091858.226775723.ryov@valinux.co.jp>
         [not found]         ` <20090507.091858.226775723.ryov-jCdQPDEk3idL9jVzuh4AOg@public.gmane.org>
    2009-05-07  1:25           ` Vivek Goyal
         [not found]             ` <20090507012559.GC4187-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-11 11:23               ` Ryo Tsuruta
         [not found]             ` <20090511.202309.112614168.ryov@valinux.co.jp>
         [not found]               ` <20090511.202309.112614168.ryov-jCdQPDEk3idL9jVzuh4AOg@public.gmane.org>
    2009-05-11 12:49                 ` Vivek Goyal
    2009-05-08 14:24           ` Rik van Riel
         [not found]         ` <4A0440B2.7040300@redhat.com>
         [not found]           ` <4A0440B2.7040300-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-11 10:11             ` Ryo Tsuruta
    2009-05-06  8:11   ` Gui Jianfeng
    2009-05-08  9:45   ` [PATCH] io-controller: Add io group reference handling for request Gui Jianfeng
    2009-05-13  2:00   ` [PATCH] IO Controller: Add per-device weight and ioprio_class handling Gui Jianfeng
         [not found] ` <1241553525-28095-2-git-send-email-vgoyal@redhat.com>
         [not found]   ` <1241553525-28095-2-git-send-email-vgoyal-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-06  3:16     ` [PATCH 01/18] io-controller: Documentation Gui Jianfeng
         [not found]   ` <4A0100F4.4040400@cn.fujitsu.com>
         [not found]     ` <4A0100F4.4040400-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-06 13:31       ` Vivek Goyal
         [not found] ` <4A014619.1040000@cn.fujitsu.com>
         [not found]   ` <4A014619.1040000-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-06 16:10     ` IO scheduler based IO Controller V2 Vivek Goyal
         [not found]       ` <20090506161012.GC8180-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-07  5:36         ` Li Zefan
    2009-05-07  5:47         ` Gui Jianfeng
         [not found]       ` <4A027348.6000808@cn.fujitsu.com>
         [not found]         ` <4A027348.6000808-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-08 13:37           ` Vivek Goyal
         [not found]             ` <20090508133740.GD7293-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-11  2:59               ` Gui Jianfeng
         [not found] ` <1241553525-28095-19-git-send-email-vgoyal@redhat.com>
         [not found]   ` <1241553525-28095-19-git-send-email-vgoyal-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-06 21:40     ` [PATCH 18/18] io-controller: Debug hierarchical IO scheduling IKEDA, Munehiro
         [not found]   ` <4A0203DB.1090809@ds.jp.nec.com>
         [not found]     ` <4A0203DB.1090809-MDRzhb/z0dd8UrSeD/g0lQ@public.gmane.org>
    2009-05-06 21:58       ` Vivek Goyal
         [not found]         ` <20090506215833.GK8180-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-06 22:19           ` IKEDA, Munehiro
         [not found]             ` <4A020CD5.2000308-MDRzhb/z0dd8UrSeD/g0lQ@public.gmane.org>
    2009-05-06 22:24               ` Vivek Goyal
         [not found]                 ` <20090506222458.GM8180-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-06 23:01                   ` IKEDA, Munehiro
         [not found] ` <1241553525-28095-6-git-send-email-vgoyal@redhat.com>
         [not found]   ` <1241553525-28095-6-git-send-email-vgoyal-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-07  7:42     ` [PATCH 05/18] io-controller: Common hierarchical fair queuing code in elevaotor layer Gui Jianfeng
    2009-05-08 21:09     ` Andrea Righi
         [not found]   ` <4A0290ED.7080506@cn.fujitsu.com>
         [not found]     ` <4A0290ED.7080506-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-07  8:05       ` Li Zefan
    2009-05-08 12:45       ` Vivek Goyal
         [not found]   ` <20090508210936.GA5763@linux>
    2009-05-08 21:17     ` Vivek Goyal
         [not found] ` <1241553525-28095-18-git-send-email-vgoyal@redhat.com>
         [not found]   ` <1241553525-28095-18-git-send-email-vgoyal-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-08  2:59     ` [PATCH 17/18] io-controller: IO group refcounting support Gui Jianfeng
         [not found]       ` <4A03A013.9000405-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-08 12:44         ` Vivek Goyal
         [not found] ` <4A03FF3C.4020506@cn.fujitsu.com>
         [not found]   ` <4A03FF3C.4020506-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-08 13:57     ` [PATCH] io-controller: Add io group reference handling for request Vivek Goyal
         [not found]       ` <20090508135724.GE7293-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-08 17:41         ` Nauman Rafique
         [not found]       ` <e98e18940905081041r386e52a5q5a2b1f13f1e8c634@mail.gmail.com>
         [not found]         ` <e98e18940905081041r386e52a5q5a2b1f13f1e8c634-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
    2009-05-08 18:56           ` Vivek Goyal
    2009-05-11  1:33           ` Gui Jianfeng
         [not found]         ` <20090508185644.GH7293@redhat.com>
         [not found]           ` <20090508185644.GH7293-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-08 19:06             ` Nauman Rafique
         [not found]         ` <4A078051.5060702@cn.fujitsu.com>
         [not found]           ` <4A078051.5060702-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-11 15:41             ` Vivek Goyal
         [not found]           ` <20090511154127.GD6036@redhat.com>
         [not found]             ` <20090511154127.GD6036-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-15  5:15               ` Gui Jianfeng
         [not found]                 ` <4A0CFA6C.3080609-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-15  7:48                   ` Andrea Righi
         [not found]                 ` <20090515074839.GA3340@linux>
    2009-05-15  8:16                   ` Gui Jianfeng
    2009-05-15 14:06                   ` Vivek Goyal
         [not found]                   ` <4A0D24E6.6010807@cn.fujitsu.com>
         [not found]                     ` <4A0D24E6.6010807-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-15 14:09                       ` Vivek Goyal
         [not found]                   ` <20090515140643.GB19350@redhat.com>
         [not found]                     ` <20090515140643.GB19350-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-17 10:26                       ` Andrea Righi
         [not found]                     ` <20090517102604.GA4255@linux>
    2009-05-18 14:01                       ` Vivek Goyal
         [not found]                         ` <20090518140114.GB27080-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-18 14:39                           ` Andrea Righi
    2009-05-19 12:18                           ` Ryo Tsuruta
         [not found]                         ` <20090518143921.GE3113@linux>
    2009-05-26 11:34                           ` Ryo Tsuruta
         [not found]                           ` <20090526.203424.39179999.ryov@valinux.co.jp>
         [not found]                             ` <20090526.203424.39179999.ryov-jCdQPDEk3idL9jVzuh4AOg@public.gmane.org>
    2009-05-27  6:56                               ` Ryo Tsuruta
         [not found]                             ` <20090527.155631.226800550.ryov@valinux.co.jp>
         [not found]                               ` <20090527081749.GA7237@linux>
    2009-05-27 11:53                                 ` Ryo Tsuruta
         [not found]                               ` <20090527.155631.226800550.ryov-jCdQPDEk3idL9jVzuh4AOg@public.gmane.org>
    2009-05-27  8:17                                 ` Andrea Righi
    2009-05-27 17:32                                 ` Vivek Goyal
    2009-05-15  7:40               ` Gui Jianfeng
         [not found]                 ` <4A0D1C55.9040700-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-15 14:01                   ` Vivek Goyal
         [not found] ` <1241553525-28095-8-git-send-email-vgoyal@redhat.com>
         [not found]   ` <1241553525-28095-8-git-send-email-vgoyal-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-13  2:39     ` [PATCH 07/18] io-controller: Export disk time used and nr sectors dipatched through cgroups Gui Jianfeng
         [not found]   ` <4A0A32CB.4020609@cn.fujitsu.com>
         [not found]     ` <4A0A32CB.4020609-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-13 14:51       ` Vivek Goyal
         [not found]     ` <20090513145127.GB7696@redhat.com>
         [not found]       ` <20090513145127.GB7696-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-14  7:53         ` Gui Jianfeng
         [not found] ` <1241553525-28095-9-git-send-email-vgoyal@redhat.com>
         [not found]   ` <1241553525-28095-9-git-send-email-vgoyal-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-13 15:00     ` [PATCH 08/18] io-controller: idle for sometime on sync queue before expiring it Vivek Goyal
    2009-06-09  7:56     ` Gui Jianfeng
         [not found]   ` <4A2E15B6.8030001@cn.fujitsu.com>
         [not found]     ` <4A2E15B6.8030001-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-06-09 17:51       ` Vivek Goyal
         [not found]     ` <20090609175131.GB13476@redhat.com>
         [not found]       ` <20090609175131.GB13476-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-06-10  1:30         ` Gui Jianfeng
         [not found]       ` <4A2F0CBE.8030208@cn.fujitsu.com>
         [not found]         ` <4A2F0CBE.8030208-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-06-10 13:26           ` Vivek Goyal
         [not found]         ` <20090610132638.GB19680@redhat.com>
         [not found]           ` <20090610132638.GB19680-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-06-11  1:22             ` Gui Jianfeng
         [not found] ` <4A0A29B5.7030109@cn.fujitsu.com>
         [not found]   ` <4A0A29B5.7030109-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-13 14:44     ` [PATCH] IO Controller: Add per-device weight and ioprio_class handling Vivek Goyal
    2009-05-13 15:29     ` Vivek Goyal
    2009-05-13 15:59     ` Vivek Goyal
    2009-05-13 17:17     ` Vivek Goyal
    2009-05-13 19:09     ` Vivek Goyal
         [not found]   ` <20090513144432.GA7696@redhat.com>
         [not found]     ` <20090513144432.GA7696-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-14  0:59       ` Gui Jianfeng
         [not found]   ` <20090513152909.GD7696@redhat.com>
         [not found]     ` <20090513152909.GD7696-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-14  1:02       ` Gui Jianfeng
         [not found]   ` <20090513171734.GA18371@redhat.com>
         [not found]     ` <20090513171734.GA18371-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-14  1:24       ` Gui Jianfeng
         [not found]   ` <20090513190929.GB18371@redhat.com>
         [not found]     ` <20090513190929.GB18371-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-14  1:35       ` Gui Jianfeng
    2009-05-14  7:26       ` Gui Jianfeng
         [not found]     ` <4A0BC7AB.8030703@cn.fujitsu.com>
         [not found]       ` <4A0BC7AB.8030703-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-14 15:15         ` Vivek Goyal
    2009-05-18 22:33         ` IKEDA, Munehiro
         [not found]       ` <4A11E244.2000305@ds.jp.nec.com>
         [not found]         ` <4A11E244.2000305-MDRzhb/z0dd8UrSeD/g0lQ@public.gmane.org>
    2009-05-20  1:44           ` Gui Jianfeng
         [not found]         ` <4A136090.5090705@cn.fujitsu.com>
         [not found]           ` <4A136090.5090705-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-20 15:41             ` IKEDA, Munehiro
         [not found]   ` <20090513155900.GA15623@redhat.com>
         [not found]     ` <20090513155900.GA15623-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-14  1:51       ` Gui Jianfeng
    2009-05-14  2:25       ` Gui Jianfeng
         [not found] ` <1241553525-28095-5-git-send-email-vgoyal@redhat.com>
         [not found]   ` <1241553525-28095-5-git-send-email-vgoyal-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
    2009-05-22  8:54     ` [PATCH 04/18] io-controller: Modify cfq to make use of flat elevator fair queuing Gui Jianfeng
         [not found]   ` <4A166829.6070608@cn.fujitsu.com>
         [not found]     ` <4A166829.6070608-BthXqXjhjHXQFUHtdCDX3A@public.gmane.org>
    2009-05-22 12:33       ` Vivek Goyal
    2009-05-05 19:58 IO scheduler based IO Controller V2 Vivek Goyal
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox