On Wed, Feb 1, 2012 at 10:09 AM, David Miller <da...@davemloft.net> wrote: > > Personally I've avoided C bitfields like the plague in any code I've > written.
I do agree with that. The kernel largely tries to avoid bitfields, usually because we have some really strict rules about different bitfields, but also because initialization of bitfields tends to result in gcc generating an incredible mess of the code (while "explicit bits" allows us to just set all the fields in one go, and know what the result is). So core kernel data structures tend to be things like "unsigned long", together with our various bitop functions that have explicit atomicity (or non-atomicity) guarantees on a bit-per-bit basis. Sometimes bitfields are really convenient, though, and allow for much more natural syntax. I'm not surprised this issue came up in a filesystem, for example. Linus