From: Guangliang Zhao <gzhao@suse.com>
To: linux-kernel@vger.kernel.org, dm-devel@redhat.com
Cc: lucienchao@gmail.com
Subject: [PATCH 2/3 v3] dm raid1: add interface to set resync speed
Date: Mon, 7 Jan 2013 18:02:12 +0800 [thread overview]
Message-ID: <1357552933-26126-3-git-send-email-gzhao@suse.com> (raw)
In-Reply-To: <1357552933-26126-1-git-send-email-gzhao@suse.com>
Add ioctl to control resync speed, userspace tool
is dmsetup message, message format is:
dmsetup message $device 0 "set-max-resync-speed $speed"
e.g.
dmsetup message /dev/dm-2 0 "set-max-resync-speed 12345"
Signed-off-by: Guangliang Zhao <gzhao@suse.com>
---
drivers/md/dm-raid1.c | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/drivers/md/dm-raid1.c b/drivers/md/dm-raid1.c
index 43e428a..3cdad37 100644
--- a/drivers/md/dm-raid1.c
+++ b/drivers/md/dm-raid1.c
@@ -1361,6 +1361,49 @@ static void mirror_resume(struct dm_target *ti)
}
/*
+ * convert speed into members of ratelimit_state
+ */
+static void speed_to_rlimit(struct mirror_set *ms, struct ratelimit_state *rl,
+ unsigned int speed)
+{
+ sector_t region_size = dm_rh_get_region_size(ms->rh);
+
+ rl->interval = RESYNC_JIFFIES;
+ rl->burst = (speed * (RESYNC_JIFFIES / HZ)) << 1;
+ rl->burst = DIV_ROUND_UP(rl->burst, region_size);
+}
+
+/*
+ * Message interface
+ * set-max-resync-speed $speed(KB/s)
+ */
+static int mirror_message(struct dm_target *ti, unsigned argc, char **argv)
+{
+ struct mirror_set *ms = ti->private;
+ unsigned int speed;
+ int ret = 0;
+
+ if (!strcasecmp(argv[0], "set-max-resync-speed")) {
+ if (sscanf(argv[1], "%u", &speed) != 1) {
+ DMWARN("invalid speed parameter %s", argv[1]);
+ ret = -EINVAL;
+ goto error;
+ }
+
+ speed_to_rlimit(ms, &ms->ms_rlimit, speed);
+ goto out;
+ } else {
+ ret = -EINVAL;
+ goto error;
+ }
+
+error:
+ DMWARN("unrecognised message received.");
+out:
+ return ret;
+}
+
+/*
* device_status_char
* @m: mirror device/leg we want the status of
*
@@ -1450,6 +1493,7 @@ static struct target_type mirror_target = {
.presuspend = mirror_presuspend,
.postsuspend = mirror_postsuspend,
.resume = mirror_resume,
+ .message = mirror_message,
.status = mirror_status,
.iterate_devices = mirror_iterate_devices,
};
--
1.7.10.4
next prev parent reply other threads:[~2013-01-07 10:03 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-07 10:02 [PATCH 0/3 v3] add resync speed control for dm-raid1 Guangliang Zhao
2013-01-07 10:02 ` [PATCH 1/3 v3] dm raid1: " Guangliang Zhao
2013-01-07 10:02 ` Guangliang Zhao [this message]
2013-01-07 10:02 ` [PATCH 3/3 v3] dm raid1: add interface to get resync speed Guangliang Zhao
2013-01-09 5:43 ` [dm-devel] [PATCH 0/3 v3] add resync speed control for dm-raid1 Mikulas Patocka
2013-01-16 8:21 ` Guangliang Zhao
2013-01-23 1:44 ` Mikulas Patocka
2013-01-23 4:20 ` NeilBrown
2013-02-06 0:24 ` Mikulas Patocka
2013-01-09 5:44 ` [PATCH 1/2] mirror throttling Mikulas Patocka
2013-01-09 5:44 ` [PATCH 2/2] " Mikulas Patocka
2013-02-15 0:53 ` Alasdair G Kergon
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=1357552933-26126-3-git-send-email-gzhao@suse.com \
--to=gzhao@suse.com \
--cc=dm-devel@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lucienchao@gmail.com \
/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®