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 PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Thu, 17 Jul 2014 08:36:47 -0400 From: Tejun Heo <tj@...nel.org> To: Andrey Utkin <andrey.krieger.utkin@...il.com> Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org, dcb314@...mail.com Subject: Re: [PATCH 1/3] drivers/ata/pata_ep93xx.c: use signed int type for result of platform_get_irq() On Thu, Jul 17, 2014 at 03:13:23PM +0300, Andrey Utkin wrote: > [linux-3.16-rc5/drivers/ata/pata_ep93xx.c:929]: (style) Checking if unsigned > variable 'irq' is less than zero. > > Source code is > > irq = platform_get_irq(pdev, 0); > if (irq < 0) { > > but > > unsigned int irq; > > $ fgrep platform_get_irq `find . -name \*.h -print` > ./include/linux/platform_device.h:extern int platform_get_irq(struct > platform_device *, unsigned int); > > Now using "int" type instead of "unsigned int" for "irq" variable. > > Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=80401 > Reported-by: David Binderman <dcb314@...mail.com> > Signed-off-by: Andrey Utkin <andrey.krieger.utkin@...il.com> Applied to libata/for-3.16-fixes. Thanks. -- tejun -- 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