True. Minor correction:
- b2 = (~b0 == 0 ? b0 : b1);
- ofs = (~b0 == 0 ? 0 : 64);
+ b2 = (~b0 ? b0 : b1);
+ ofs = (~b0 ? 0 : 64);
Note that comment for this function is a bit confusing:
* ... It's the fastest
* way of searching a 168-bit bitmap where the first 128 bits are
* unlikely to be set.
s/set/cleared/
> While we're on the subject of sched_find_first_zero_bit, I'd
> like to complain about Ingo's choice of header file. Why in
> the world did you choose mmu_context.h? Invent a new asm/sched.h
> if you must, but please don't choose headers at random.
Agreed. Apparently asm/bitops.h?
Ivan.
-
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/