Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 60258
Collapse All | Expand All

(-)linux-2.6.7/include/linux/bitops.h (-1 / +1 lines)
Lines 74-80 Link Here
74
extern __inline__ int get_bitmask_order(unsigned int count)
74
extern __inline__ int get_bitmask_order(unsigned int count)
75
{
75
{
76
	int order;
76
	int order;
77
	
77
        int fls(count);	
78
	order = fls(count);
78
	order = fls(count);
79
	return order;	/* We could be slightly more clever with -1 here... */
79
	return order;	/* We could be slightly more clever with -1 here... */
80
}
80
}

Return to bug 60258