ceph: small cleanup in hash function
authorSage Weil <sage@newdream.net>
Thu, 19 Nov 2009 00:50:55 +0000 (16:50 -0800)
committerSage Weil <sage@newdream.net>
Fri, 20 Nov 2009 22:24:26 +0000 (14:24 -0800)
Signed-off-by: Sage Weil <sage@newdream.net>
fs/ceph/ceph_hash.c

index ac8be54..1c44e43 100644 (file)
@@ -85,7 +85,7 @@ unsigned ceph_str_hash_linux(const char *str, unsigned length)
         unsigned long hash = 0;
        unsigned char c;
 
-        while (length-- > 0) {
+        while (length--) {
                c = *str++;
                hash = (hash + (c << 4) + (c >> 4)) * 11;
        }