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:	Fri, 1 Mar 2013 10:31:56 +0900
From:	Simon Horman <horms@...ge.net.au>
To:	Zhang Yanfei <zhangyanfei@...fujitsu.com>
Cc:	Andrew Morton <akpm@...ux-foundation.org>,
	"Eric W. Biederman" <ebiederm@...ssion.com>,
	"kexec@...ts.infradead.org" <kexec@...ts.infradead.org>,
	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v3 1/2] kexec: fix wrong types of some local variables

On Tue, Feb 26, 2013 at 01:15:16PM +0800, Zhang Yanfei wrote:
> The types of the following local variables:
>   - ubytes/mbytes in kimage_load_crash_segment()/kimage_load_normal_segment()
>   - r in vmcoreinfo_append_str()
> are wrong, so fix them.
> 
> Cc: "Eric W. Biederman" <ebiederm@...ssion.com>
> Cc: Andrew Morton <akpm@...ux-foundation.org>
> Cc: Simon Horman <horms@...ge.net.au>
> Signed-off-by: Zhang Yanfei <zhangyanfei@...fujitsu.com>

No complaints here.

Reviewed-by: Simon Horman <horms@...ge.net.au>

> ---
>  kernel/kexec.c |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/kernel/kexec.c b/kernel/kexec.c
> index 2436ffc..3cbfcc7 100644
> --- a/kernel/kexec.c
> +++ b/kernel/kexec.c
> @@ -789,7 +789,7 @@ static int kimage_load_normal_segment(struct kimage *image,
>  					 struct kexec_segment *segment)
>  {
>  	unsigned long maddr;
> -	unsigned long ubytes, mbytes;
> +	size_t ubytes, mbytes;
>  	int result;
>  	unsigned char __user *buf;
>  
> @@ -853,7 +853,7 @@ static int kimage_load_crash_segment(struct kimage *image,
>  	 * We do things a page at a time for the sake of kmap.
>  	 */
>  	unsigned long maddr;
> -	unsigned long ubytes, mbytes;
> +	size_t ubytes, mbytes;
>  	int result;
>  	unsigned char __user *buf;
>  
> @@ -1455,7 +1455,7 @@ void vmcoreinfo_append_str(const char *fmt, ...)
>  {
>  	va_list args;
>  	char buf[0x50];
> -	int r;
> +	size_t r;
>  
>  	va_start(args, fmt);
>  	r = vsnprintf(buf, sizeof(buf), fmt, args);
> -- 
> 1.7.1
> 
--
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