All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vivek Goyal <vgoyal@redhat.com>
To: linux-kernel@vger.kernel.org, jaxboe@fusionio.com
Cc: dpshah@google.com, vgoyal@redhat.com
Subject: [PATCH 08/14] blk-throttle: Introduce a helper function to fill in device details
Date: Wed, 18 May 2011 15:13:20 -0400	[thread overview]
Message-ID: <1305746006-5837-9-git-send-email-vgoyal@redhat.com> (raw)
In-Reply-To: <1305746006-5837-1-git-send-email-vgoyal@redhat.com>

A helper function for the code which is used at 2-3 places. Makes reading
code little easier.

Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
---
 block/blk-throttle.c |   35 +++++++++++++++++++++++------------
 1 files changed, 23 insertions(+), 12 deletions(-)

diff --git a/block/blk-throttle.c b/block/blk-throttle.c
index 68f2ac3..c2c2888 100644
--- a/block/blk-throttle.c
+++ b/block/blk-throttle.c
@@ -188,16 +188,34 @@ throtl_add_group_to_td_list(struct throtl_data *td, struct throtl_grp *tg)
 	td->nr_undestroyed_grps++;
 }
 
+static void
+__throtl_tg_fill_dev_details(struct throtl_data *td, struct throtl_grp *tg)
+{
+ 	struct backing_dev_info *bdi = &td->queue->backing_dev_info;
+ 	unsigned int major, minor;
+
+	if (!tg || tg->blkg.dev)
+		return;
+
+	/*
+	 * Fill in device details for a group which might not have been
+	 * filled at group creation time as queue was being instantiated
+	 * and driver had not attached a device yet
+	 */
+	if (bdi->dev && dev_name(bdi->dev)) {
+		sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
+		tg->blkg.dev = MKDEV(major, minor);
+	}
+}
+
 static void throtl_init_add_tg_lists(struct throtl_data *td,
 			struct throtl_grp *tg, struct blkio_cgroup *blkcg)
 {
-	struct backing_dev_info *bdi = &td->queue->backing_dev_info;
-	unsigned int major, minor;
+	__throtl_tg_fill_dev_details(td, tg);
 
 	/* Add group onto cgroup list */
-	sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
 	blkiocg_add_blkio_group(blkcg, &tg->blkg, (void *)td,
-				MKDEV(major, minor), BLKIO_POLICY_THROTL);
+				tg->blkg.dev, BLKIO_POLICY_THROTL);
 
 	tg->bps[READ] = blkcg_get_read_bps(blkcg, tg->blkg.dev);
 	tg->bps[WRITE] = blkcg_get_write_bps(blkcg, tg->blkg.dev);
@@ -225,8 +243,6 @@ throtl_grp *throtl_find_tg(struct throtl_data *td, struct blkio_cgroup *blkcg)
 {
 	struct throtl_grp *tg = NULL;
 	void *key = td;
-	struct backing_dev_info *bdi = &td->queue->backing_dev_info;
-	unsigned int major, minor;
 
 	/*
 	 * This is the common case when there are no blkio cgroups.
@@ -237,12 +253,7 @@ throtl_grp *throtl_find_tg(struct throtl_data *td, struct blkio_cgroup *blkcg)
 	else
 		tg = tg_of_blkg(blkiocg_lookup_group(blkcg, key));
 
-	/* Fill in device details for root group */
-	if (tg && !tg->blkg.dev && bdi->dev && dev_name(bdi->dev)) {
-		sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
-		tg->blkg.dev = MKDEV(major, minor);
-	}
-
+	__throtl_tg_fill_dev_details(td, tg);
 	return tg;
 }
 
-- 
1.7.1


  parent reply	other threads:[~2011-05-18 19:15 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-18 19:13 [RFC PATCH 00/14] blk-throttle: lockless bio processing for no throttle rule group Vivek Goyal
2011-05-18 19:13 ` [PATCH 01/14] blk-throttle: Use task_subsys_state() to determine a task's blkio_cgroup Vivek Goyal
2011-05-18 19:13 ` [PATCH 02/14] blk-throttle: Do the new group initialization with the help of a function Vivek Goyal
2011-05-18 19:13 ` [PATCH 03/14] blk-cgroup: move some fields of unaccounted_time file under right config option Vivek Goyal
2011-05-18 19:13 ` [PATCH 04/14] cfq-iosched: Get rid of redundant function parameter "create" Vivek Goyal
2011-05-18 19:13 ` [PATCH 05/14] cfq-iosched: Fix a possible race with cfq cgroup removal code Vivek Goyal
2011-05-18 19:13 ` [PATCH 06/14] blk-cgroup: Allow sleeping while dynamically allocating a group Vivek Goyal
2011-05-18 19:13 ` [PATCH 07/14] blk-throttle: Dynamically allocate root group Vivek Goyal
2011-05-18 19:13 ` Vivek Goyal [this message]
2011-05-18 19:13 ` [PATCH 09/14] blk-throttle: Use helper function to add root throtl group to lists Vivek Goyal
2011-05-18 19:13 ` [PATCH 10/14] blk-throttle: Free up a group only after one rcu grace period Vivek Goyal
2011-05-18 19:13 ` [PATCH 11/14] blk-throttle: Make dispatch stats per cpu Vivek Goyal
2011-05-18 19:13 ` [PATCH 12/14] blk-cgroup: Make 64bit per cpu stats safe on 32bit arch Vivek Goyal
2011-05-18 19:13 ` [PATCH 13/14] blk-cgroup: Make cgroup stat reset path blkg->lock free for dispatch stats Vivek Goyal
2011-05-18 19:13 ` [PATCH 14/14] blk-throttle: Make no throttling rule group processing lockless Vivek Goyal
2011-05-19 18:33 ` [RFC PATCH 00/14] blk-throttle: lockless bio processing for no throttle rule group Jens Axboe
2011-05-19 18:44   ` Vivek Goyal

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=1305746006-5837-9-git-send-email-vgoyal@redhat.com \
    --to=vgoyal@redhat.com \
    --cc=dpshah@google.com \
    --cc=jaxboe@fusionio.com \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.