Re: md:Add the judgement about the size of suspend_lo and suspend_hi.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, 28 Mar 2012 19:49:38 +0800 "majianpeng" <majianpeng@xxxxxxxxx> wrote:

> >From 7b8db5f9559feef49859056407a7cee656bcfc45 Mon Sep 17 00:00:00 2001
> From: majianpeng <majianpeng@xxxxxxxxx>
> Date: Wed, 28 Mar 2012 19:43:58 +0800
> Subject: [PATCH] md:Add the judgement about the size of suspend_lo and
>  suspend_hi.
> 
> 


you patches could use a little more text explaining them too.

In this case I think it is wrong.  There is no reason at all why lo should
always be less than or equal to hi.  Imposing that is an unnecessary burden.

Not applied.

Thanks,
NeilBrown

> Signed-off-by: majianpeng <majianpeng@xxxxxxxxx>
> ---
>  drivers/md/md.c |    4 ++++
>  1 files changed, 4 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/md/md.c b/drivers/md/md.c
> index b572e1e..7180ac3 100644
> --- a/drivers/md/md.c
> +++ b/drivers/md/md.c
> @@ -4364,6 +4364,8 @@ suspend_lo_store(struct mddev *mddev, const char *buf, size_t len)
>  		return -EINVAL;
>  	if (buf == e || (*e && *e != '\n'))
>  		return -EINVAL;
> +	if (new > mddev->suspend_hi)
> +		return -EINVAL;
>  
>  	mddev->suspend_lo = new;
>  	if (new >= old)
> @@ -4398,6 +4400,8 @@ suspend_hi_store(struct mddev *mddev, const char *buf, size_t len)
>  		return -EINVAL;
>  	if (buf == e || (*e && *e != '\n'))
>  		return -EINVAL;
> +	if (new < mddev->suspend_lo)
> +		return -EINVAL;
>  
>  	mddev->suspend_hi = new;
>  	if (new <= old)

Attachment: signature.asc
Description: PGP signature


[Index of Archives]     [Linux RAID Wiki]     [ATA RAID]     [Linux SCSI Target Infrastructure]     [Linux Block]     [Linux IDE]     [Linux SCSI]     [Linux Hams]     [Device Mapper]     [Device Mapper Cryptographics]     [Kernel]     [Linux Admin]     [Linux Net]     [GFS]     [RPM]     [git]     [Yosemite Forum]


  Powered by Linux