From: Akinobu Mita Noticed by Rune Torgersen. Fix generic_fls64(). tcp_cubic is using fls64(). Signed-off-by: Akinobu Mita Signed-off-by: Andrew Morton --- include/linux/bitops.h | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/bitops.h~fix-generic_fls64 include/linux/bitops.h --- 25/include/linux/bitops.h~fix-generic_fls64 Thu Feb 2 17:37:54 2006 +++ 25-akpm/include/linux/bitops.h Thu Feb 2 17:37:54 2006 @@ -81,7 +81,7 @@ static inline int generic_fls64(__u64 x) { __u32 h = x >> 32; if (h) - return fls(x) + 32; + return fls(h) + 32; return fls(x); } _