[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[dm-devel] [PATCH 8/8] bio-cgroup: Add a cgroup support to dm-ioband
- From: Ryo Tsuruta <ryov valinux co jp>
- To: linux-kernel vger kernel org, dm-devel redhat com, containers lists linux-foundation org, virtualization lists linux-foundation org, xen-devel lists xensource com
- Cc: fernando oss ntt co jp, balbir linux vnet ibm com, xemul openvz org, kamezawa hiroyu jp fujitsu com, agk sourceware org
- Subject: [dm-devel] [PATCH 8/8] bio-cgroup: Add a cgroup support to dm-ioband
- Date: Thu, 13 Nov 2008 12:15:38 +0900 (JST)
With this patch, dm-ioband can work with the bio cgroup.
Signed-off-by: Hirokazu Takahashi <taka valinux co jp>
diff -dupr linux-2.6.28-rc2.bc3/drivers/md/dm-ioband-type.c linux-2.6.28-rc2/drivers/md/dm-ioband-type.c
--- linux-2.6.28-rc2.bc3/drivers/md/dm-ioband-type.c 2008-11-12 11:22:19.000000000 +0900
+++ linux-2.6.28-rc2/drivers/md/dm-ioband-type.c 2008-11-12 11:23:18.000000000 +0900
@@ -6,6 +6,7 @@
* This file is released under the GPL.
*/
#include <linux/bio.h>
+#include <linux/biotrack.h>
#include "dm.h"
#include "dm-bio-list.h"
#include "dm-ioband.h"
@@ -53,13 +54,7 @@ static int ioband_node(struct bio *bio)
static int ioband_cgroup(struct bio *bio)
{
- /*
- * This function should return the ID of the cgroup which issued "bio".
- * The ID of the cgroup which the current process belongs to won't be
- * suitable ID for this purpose, since some BIOs will be handled by kernel
- * threads like aio or pdflush on behalf of the process requesting the BIOs.
- */
- return 0; /* not implemented yet */
+ return get_bio_cgroup_id(bio);
}
struct group_type dm_ioband_group_type[] = {
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]