extern __inline__ int get_bitmask_order(unsigned int count)
{
int order;
int fls(count);
order = fls(count);
return order; /* We could be slightly more clever with -1 here... */
}