]> err.no Git - linux-2.6/blobdiff - arch/x86/lib/bitstr_64.c
x86: printk kernel version in WARN_ON and other dump_stack users
[linux-2.6] / arch / x86 / lib / bitstr_64.c
index 24676609a6acbcf12ac2c29a3949b6f21abe199c..7445caf1b5ded2f12f8bd4ae01ed7d51917627d6 100644 (file)
@@ -14,7 +14,7 @@ find_next_zero_string(unsigned long *bitmap, long start, long nbits, int len)
        
        /* could test bitsliced, but it's hardly worth it */
        end = n+len;
-       if (end >= nbits) 
+       if (end > nbits)
                return -1; 
        for (i = n+1; i < end; i++) { 
                if (test_bit(i, bitmap)) {