public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Vivek Goyal <vgoyal@redhat.com>
To: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Cc: Paul Menage <menage@google.com>,
	lizf@cn.fujitsu.com, axboe@kernel.dk,
	linux-kernel@vger.kernel.org, wanlong.gao@gmail.com
Subject: Re: [PATCH v5] blk-cgroup:be able to remove the record of unplugged device
Date: Wed, 27 Jul 2011 10:11:42 -0400	[thread overview]
Message-ID: <20110727141142.GA17743@redhat.com> (raw)
In-Reply-To: <1311725508-4419-1-git-send-email-gaowanlong@cn.fujitsu.com>

On Wed, Jul 27, 2011 at 08:11:48AM +0800, Wanlong Gao wrote:
> The bug is we're not able to remove the device from blkio cgroup's
> per-device control files if it gets unplugged.
> 
> To reproduce the bug:
> 
>   # mount -t cgroup -o blkio xxx /cgroup
>   # cd /cgroup
>   # echo "8:0 1000" > blkio.throttle.read_bps_device
>   # unplug the device
>   # cat blkio.throttle.read_bps_device
>   8:0	1000
>   # echo "8:0 0" > blkio.throttle.read_bps_device
>   -bash: echo: write error: No such device
> 
> After patching, the device removal will succeed.
> 
> Thanks for the comments of Paul, Zefan, and Vivek.
> 
> Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>

Thanks. This looks good to me.

Acked-by: Vivek Goyal <vgoyal@redhat.com>

Vivek

> ---
>  block/blk-cgroup.c |   37 ++++++++++++++++---------------------
>  1 files changed, 16 insertions(+), 21 deletions(-)
> 
> diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c
> index bcaf16e..b596e54 100644
> --- a/block/blk-cgroup.c
> +++ b/block/blk-cgroup.c
> @@ -785,10 +785,10 @@ static int blkio_policy_parse_and_set(char *buf,
>  {
>  	char *s[4], *p, *major_s = NULL, *minor_s = NULL;
>  	int ret;
> -	unsigned long major, minor, temp;
> +	unsigned long major, minor;
>  	int i = 0;
>  	dev_t dev;
> -	u64 bps, iops;
> +	u64 temp;
>  
>  	memset(s, 0, sizeof(s));
>  
> @@ -826,20 +826,23 @@ static int blkio_policy_parse_and_set(char *buf,
>  
>  	dev = MKDEV(major, minor);
>  
> -	ret = blkio_check_dev_num(dev);
> +	ret = strict_strtoull(s[1], 10, &temp);
>  	if (ret)
> -		return ret;
> +		return -EINVAL;
>  
> -	newpn->dev = dev;
> +	/* For rule removal, do not check for device presence. */
> +	if (temp) {
> +		ret = blkio_check_dev_num(dev);
> +		if (ret)
> +			return ret;
> +	}
>  
> -	if (s[1] == NULL)
> -		return -EINVAL;
> +	newpn->dev = dev;
>  
>  	switch (plid) {
>  	case BLKIO_POLICY_PROP:
> -		ret = strict_strtoul(s[1], 10, &temp);
> -		if (ret || (temp < BLKIO_WEIGHT_MIN && temp > 0) ||
> -			temp > BLKIO_WEIGHT_MAX)
> +		if ((temp < BLKIO_WEIGHT_MIN && temp > 0) ||
> +		     temp > BLKIO_WEIGHT_MAX)
>  			return -EINVAL;
>  
>  		newpn->plid = plid;
> @@ -850,26 +853,18 @@ static int blkio_policy_parse_and_set(char *buf,
>  		switch(fileid) {
>  		case BLKIO_THROTL_read_bps_device:
>  		case BLKIO_THROTL_write_bps_device:
> -			ret = strict_strtoull(s[1], 10, &bps);
> -			if (ret)
> -				return -EINVAL;
> -
>  			newpn->plid = plid;
>  			newpn->fileid = fileid;
> -			newpn->val.bps = bps;
> +			newpn->val.bps = temp;
>  			break;
>  		case BLKIO_THROTL_read_iops_device:
>  		case BLKIO_THROTL_write_iops_device:
> -			ret = strict_strtoull(s[1], 10, &iops);
> -			if (ret)
> -				return -EINVAL;
> -
> -			if (iops > THROTL_IOPS_MAX)
> +			if (temp > THROTL_IOPS_MAX)
>  				return -EINVAL;
>  
>  			newpn->plid = plid;
>  			newpn->fileid = fileid;
> -			newpn->val.iops = (unsigned int)iops;
> +			newpn->val.iops = (unsigned int)temp;
>  			break;
>  		}
>  		break;
> -- 
> 1.7.6

  reply	other threads:[~2011-07-27 14:12 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-25  6:03 [PATCH] cgroup:be able to remove the record of unplugged device Wanlong Gao
2011-07-25 20:45 ` Paul Menage
2011-07-26  0:37 ` [PATCH v2] " Wanlong Gao
2011-07-26  1:29   ` Paul Menage
2011-07-26  1:56 ` [PATCH v3] blk-cgroup:be " Wanlong Gao
2011-07-26  2:23   ` Li Zefan
2011-07-26  3:00     ` [PATCH v4] " Wanlong Gao
2011-07-26 14:44   ` [PATCH v3] " Vivek Goyal
2011-07-26 14:59     ` Wanlong Gao
2011-07-26 17:17     ` Paul Menage
2011-07-26 17:41       ` Vivek Goyal
2011-07-26 18:40         ` Paul Menage
2011-07-26 19:24           ` Vivek Goyal
2011-07-27  0:11             ` [PATCH v5] " Wanlong Gao
2011-07-27 14:11               ` Vivek Goyal [this message]
2011-08-17 12:57                 ` Wanlong Gao
2011-08-17 14:18                   ` 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=20110727141142.GA17743@redhat.com \
    --to=vgoyal@redhat.com \
    --cc=axboe@kernel.dk \
    --cc=gaowanlong@cn.fujitsu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lizf@cn.fujitsu.com \
    --cc=menage@google.com \
    --cc=wanlong.gao@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