Hi, There was a lot of bogus stuff that include/asm-i386/bitops.h was doing, that was unnecessary and not required for the correctness of those APIs. All that superfluous stuff was also unnecessarily disallowing compiler optimization possibilities, and making gcc generate code that wasn't as beautiful as it could otherwise have been. Hence the following series of cleanups (some trivial, some surprising, in no particular order):
* Bogus extended asm constraints (such as specifying immediate-value constraint-modifiers to operands constrained to local registers) * Obsolete / inapplicable-to-x86 / incorrect comments * Marking "memory" as clobbered for no good reason * Volatile-casting of memory addresses (wholly unnecessary, makes gcc generate bad code) * Unwarranted use of __asm__ __volatile__ even when those semantics are not required * Unnecessarily harsh definitions of smp_mb__{before, after}_clear_bit() (again, this was like *asking* gcc to generate bad code) These patches fix no bugs, as there were none (or else we'd have known long before, obviously). This is just an attempt to clean up / bring down the bogosity level of that file by several microlenats :-) Almost all the above are also applicable to include/asm-x86_64/bitops.h so I will send a patch for that also, later. I have zero knowledge of other arch's so cannot audit them, sorry. My testbox boots/works fine with all these patches (uptime half an hour) and the compressed bzImage is smaller by about ~2 KB for my .config -- don't know about savings in modules. But considering these primitives get inlined from several places in the tree, I'd expect good savings for allyesconfig or allmodconfig kind of setups. We've also probably lost a few cycles from kernel codepaths that use these functions, but I haven't verified that experimentally. Satyam - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/