Re: if (a & X || b & ~Y) in dasd.c

From: Carsten Otte (COTTE@de.ibm.com)
Date: Fri Nov 09 2001 - 05:29:54 EST


Hi Pete, Hi Kevin,

it's just like Kevin explained, the singe &/|/~ are bit operations
while &&/|| are logical operations. The bit operations are handled
before the logical ones (am I correct?)- so compiler-wise this should
be fine.
Sure, one should use some paranthesises to make things clearer,
but why are you examining such ancient code? 2.2.14. seems a little
bit historical for me. The current dasd device driver is much more
readable and better designed (is redesigned in the 2.4 series).

mit freundlichem Gruß / with kind regards
Carsten Otte

IBM Deutschland Entwicklung GmbH
Linux for 390/zSeries Development - Device Driver Team
Phone: +49/07031/16-4076
IBM internal phone: *120-4076

--
We are Linux.
Resistance indicates that you're missing the point!

Kevin <kevin@pheared.net> on 11/08/2001 10:10:51 PM

Please respond to Kevin <kevin@pheared.net>

To: Pete Zaitcev <zaitcev@redhat.com> cc: Carsten Otte/Germany/IBM@IBMDE, <linux-kernel@vger.kernel.org>, BOEBLINGEN LINUX390/Germany/IBM@IBMDE Subject: Re: if (a & X || b & ~Y) in dasd.c

On Thu, 8 Nov 2001, Pete Zaitcev wrote:

[zaitce] Date: Thu, 8 Nov 2001 15:57:49 -0500 [zaitce] From: Pete Zaitcev <zaitcev@redhat.com> [zaitce] To: Cotte@de.ibm.com [zaitce] Cc: linux-kernel@vger.kernel.org, Linux390@de.ibm.com [zaitce] Subject: if (a & X || b & ~Y) in dasd.c [zaitce] [zaitce] Carsten and others: [zaitce] [zaitce] this code in 2.2.14 looks suspicious to me: [zaitce] [zaitce] ./drivers/s390/block/dasd.c: [zaitce] /* first of all lets try to find out the appropriate era_action */ [zaitce] if (stat->flag & DEVSTAT_FLAG_SENSE_AVAIL || [zaitce] stat->dstat & ~(DEV_STAT_CHN_END | DEV_STAT_DEV_END)) { [zaitce] /* anything abnormal ? */ [zaitce] if (device->discipline->examine_error == NULL || [zaitce] stat->flag & DEVSTAT_HALT_FUNCTION) { [zaitce] era = dasd_era_fatal; [zaitce] } else { [zaitce] era = device->discipline->examine_error (cqr, stat); [zaitce] } [zaitce] DASD_DRIVER_DEBUG_EVENT (1, dasd_int_handler," era_code %d", [zaitce] era); [zaitce] } [zaitce] [zaitce] Are you sure any parenthesises are not needed here?

I'm not going to pretend to know what the code is accomplishing, but as a matter of C, those &'s aren't the same as &&'s and will get executed as the || is tested. So the first one will get &'ded and if false then the second will and if neither return true then we move on.

Or, perhaps I'm being an idiot and misunderstanding the question and the code. In that case, I'll pretend I didn't say anything. :)

-[ kevin@pheared.net devel.pheared.net ]- -[ Rather be forgotten, than remembered for giving in. ]- -[ ZZ = g ^ (xb * xa) mod p g = h^{(p-1)/q} mod p ]-

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



This archive was generated by hypermail 2b29 : Thu Nov 15 2001 - 21:00:21 EST