The patch titled s390: broken null test in claw driver has been added to the -mm tree. Its filename is s390-broken-null-test-in-claw-driver.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: s390: broken null test in claw driver From: Dave Jones <davej@xxxxxxxxxx> Whoops, better hope this never gets passed a null dev in its current state. Signed-off-by: Dave Jones <davej@xxxxxxxxxx> Cc: Martin Schwidefsky <schwidefsky@xxxxxxxxxx> Cc: Heiko Carstens <heiko.carstens@xxxxxxxxxx> Cc: Michael Holzheu <holzheu@xxxxxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/s390/net/claw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/s390/net/claw.c~s390-broken-null-test-in-claw-driver drivers/s390/net/claw.c --- a/drivers/s390/net/claw.c~s390-broken-null-test-in-claw-driver +++ a/drivers/s390/net/claw.c @@ -529,7 +529,7 @@ claw_open(struct net_device *dev) printk(KERN_INFO "%s:%s Enter \n",dev->name,__FUNCTION__); #endif CLAW_DBF_TEXT(4,trace,"open"); - if (!dev | (dev->name[0] == 0x00)) { + if (!dev || (dev->name[0] == 0x00)) { CLAW_DBF_TEXT(2,trace,"BadDev"); printk(KERN_WARNING "claw: Bad device at open failing \n"); return -ENODEV; _ Patches currently in -mm which might be from davej@xxxxxxxxxx are origin.patch git-acpi.patch git-agpgart.patch git-block.patch git-cpufreq.patch fix-up-funky-logic-in-dvb.patch stv680-boolean-logic-bug.patch remove-silly-messages-from-input-layer.patch fix-oddball-boolean-logic-in-s390-netiucv.patch s390-broken-null-test-in-claw-driver.patch fix-ide-locking-error.patch post-halloween-doc.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html