Re: CVS commit: src/sys

2012-06-03 Thread David Laight
On Sun, Jun 03, 2012 at 10:10:40AM +0900, Izumi Tsutsui wrote: dsl@ wrote: ... } Log Message: } Remove the code that tries to load the ffs kernel module during boot. } This is in line with the core decision than even modular kernels should } contain the ffs code. } I've left in

Re: CVS commit: src/tools/compat

2012-06-03 Thread Alan Barrett
On Sun, 03 Jun 2012, Joerg Sonnenberger wrote: Log Message: Add __predict_true / __predict_false definitions. +#undef __predict_false +#define __predict_false(x) x +#undef __predict_true +#define __predict_true(x) x Please parenthesise the definitions. I don't know whether it's worth