diff options
author | Sage Weil <sage@newdream.net> | 2009-11-19 01:50:55 +0100 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2009-11-20 23:24:26 +0100 |
commit | cfea1cf42b614583c02727d5bffd5a2384e92bda (patch) | |
tree | 74b65b8a1c507c5751150553a28def40cd51b09b /fs/ceph | |
parent | ceph: move mempool creation to ceph_create_client (diff) | |
download | linux-cfea1cf42b614583c02727d5bffd5a2384e92bda.tar.xz linux-cfea1cf42b614583c02727d5bffd5a2384e92bda.zip |
ceph: small cleanup in hash function
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/ceph_hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/ceph_hash.c b/fs/ceph/ceph_hash.c index ac8be54631fe..1c44e43fe89e 100644 --- a/fs/ceph/ceph_hash.c +++ b/fs/ceph/ceph_hash.c @@ -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; } |