Re: [PATCH] WARN_ONCE(): use bool for boolean flag

From: Daniel Walker
Date: Sun Sep 27 2009 - 10:03:53 EST


On Sun, 2009-09-27 at 10:53 -0300, Cesar Eduardo Barros wrote:
> #define
> WARN_ON_ONCE(condition) ({ \
> - static int __warned; \
> + static bool __warned; \
> int __ret_warn_once = !!(condition); \

Could __ret_warn_once be bool also ? It looks like just another
conditional variable..

Daniel

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