lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Thu, 14 Jul 2011 03:32:15 +0530
From:	"Koul, Vinod" <vinod.koul@...el.com>
To:	H Hartley Sweeten <hartleys@...ionengravers.com>
Cc:	Linux Kernel <linux-kernel@...r.kernel.org>,
	dan.j.williams@...el.com
Subject: Re: [PATCH] dma: mv_xor: use resource_size()

On Mon, 2011-06-06 at 13:49 -0700, H Hartley Sweeten wrote:
> Signed-off-by: H Hartley Sweeten <hsweeten@...ionengravers.com>
> Cc: Dan Williams <dan.j.williams@...el.com> (supporter:ASYNCHRONOUS TRAN...)
> Cc: Vinod Koul <vinod.koul@...el.com> (supporter:DMA GENERIC OFFLO...)
> 
> ---
> 
> diff --git a/drivers/dma/mv_xor.c b/drivers/dma/mv_xor.c
> index 954e334..9a353c2 100644
> --- a/drivers/dma/mv_xor.c
> +++ b/drivers/dma/mv_xor.c
> @@ -1305,7 +1305,7 @@ static int mv_xor_shared_probe(struct platform_device *pdev)
>  		return -ENODEV;
>  
>  	msp->xor_base = devm_ioremap(&pdev->dev, res->start,
> -				     res->end - res->start + 1);
> +				     resource_size(res));
>  	if (!msp->xor_base)
>  		return -EBUSY;
>  
> @@ -1314,7 +1314,7 @@ static int mv_xor_shared_probe(struct platform_device *pdev)
>  		return -ENODEV;
>  
>  	msp->xor_high_base = devm_ioremap(&pdev->dev, res->start,
> -					  res->end - res->start + 1);
> +					  resource_size(res));
>  	if (!msp->xor_high_base)
>  		return -EBUSY;
>  
Applied thanks

-- 
~Vinod

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ