Commit 72c0824a authored by Peng Tao's avatar Peng Tao Committed by Greg Kroah-Hartman

staging/lustre/libcfs: remove cfs_hash_long

Cc: Andreas Dilger <andreas.dilger@intel.com>
Cc: Oleg Drokin <oleg.drokin@intel.com>
Signed-off-by: default avatarPeng Tao <bergwolf@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2228c539
...@@ -65,8 +65,6 @@ ...@@ -65,8 +65,6 @@
#include <linux/hash.h> #include <linux/hash.h>
#define cfs_hash_long(val, bits) hash_long(val, bits)
/** disable debug */ /** disable debug */
#define CFS_HASH_DEBUG_NONE 0 #define CFS_HASH_DEBUG_NONE 0
/** record hash depth and output to console when it's too deep, /** record hash depth and output to console when it's too deep,
......
...@@ -628,7 +628,7 @@ void lnet_ni_free(lnet_ni_t *ni); ...@@ -628,7 +628,7 @@ void lnet_ni_free(lnet_ni_t *ni);
static inline int static inline int
lnet_nid2peerhash(lnet_nid_t nid) lnet_nid2peerhash(lnet_nid_t nid)
{ {
return cfs_hash_long(nid, LNET_PEER_HASH_BITS); return hash_long(nid, LNET_PEER_HASH_BITS);
} }
static inline struct list_head * static inline struct list_head *
......
...@@ -770,7 +770,7 @@ lnet_nid_cpt_hash(lnet_nid_t nid, unsigned int number) ...@@ -770,7 +770,7 @@ lnet_nid_cpt_hash(lnet_nid_t nid, unsigned int number)
if (number == 1) if (number == 1)
return 0; return 0;
val = cfs_hash_long(key, LNET_CPT_BITS); val = hash_long(key, LNET_CPT_BITS);
/* NB: LNET_CP_NUMBER doesn't have to be PO2 */ /* NB: LNET_CP_NUMBER doesn't have to be PO2 */
if (val < number) if (val < number)
return val; return val;
......
...@@ -366,7 +366,7 @@ lnet_mt_match_head(struct lnet_match_table *mtable, ...@@ -366,7 +366,7 @@ lnet_mt_match_head(struct lnet_match_table *mtable,
unsigned long hash = mbits + id.nid + id.pid; unsigned long hash = mbits + id.nid + id.pid;
LASSERT(lnet_ptl_is_unique(ptl)); LASSERT(lnet_ptl_is_unique(ptl));
hash = cfs_hash_long(hash, LNET_MT_HASH_BITS); hash = hash_long(hash, LNET_MT_HASH_BITS);
return &mtable->mt_mhash[hash]; return &mtable->mt_mhash[hash];
} }
} }
......
...@@ -685,7 +685,7 @@ static inline __u32 fid_hash(const struct lu_fid *f, int bits) ...@@ -685,7 +685,7 @@ static inline __u32 fid_hash(const struct lu_fid *f, int bits)
{ {
/* all objects with same id and different versions will belong to same /* all objects with same id and different versions will belong to same
* collisions list. */ * collisions list. */
return cfs_hash_long(fid_flatten(f), bits); return hash_long(fid_flatten(f), bits);
} }
/** /**
......
...@@ -421,9 +421,9 @@ static unsigned ldlm_res_hop_fid_hash(struct cfs_hash *hs, ...@@ -421,9 +421,9 @@ static unsigned ldlm_res_hop_fid_hash(struct cfs_hash *hs,
} else { } else {
val = fid_oid(&fid); val = fid_oid(&fid);
} }
hash = cfs_hash_long(hash, hs->hs_bkt_bits); hash = hash_long(hash, hs->hs_bkt_bits);
/* give me another random factor */ /* give me another random factor */
hash -= cfs_hash_long((unsigned long)hs, val % 11 + 3); hash -= hash_long((unsigned long)hs, val % 11 + 3);
hash <<= hs->hs_cur_bits - hs->hs_bkt_bits; hash <<= hs->hs_cur_bits - hs->hs_bkt_bits;
hash |= ldlm_res_hop_hash(hs, key, CFS_HASH_NBKT(hs) - 1); hash |= ldlm_res_hop_hash(hs, key, CFS_HASH_NBKT(hs) - 1);
......
...@@ -890,10 +890,10 @@ static unsigned lu_obj_hop_hash(struct cfs_hash *hs, ...@@ -890,10 +890,10 @@ static unsigned lu_obj_hop_hash(struct cfs_hash *hs,
hash = fid_flatten32(fid); hash = fid_flatten32(fid);
hash += (hash >> 4) + (hash << 12); /* mixing oid and seq */ hash += (hash >> 4) + (hash << 12); /* mixing oid and seq */
hash = cfs_hash_long(hash, hs->hs_bkt_bits); hash = hash_long(hash, hs->hs_bkt_bits);
/* give me another random factor */ /* give me another random factor */
hash -= cfs_hash_long((unsigned long)hs, fid_oid(fid) % 11 + 3); hash -= hash_long((unsigned long)hs, fid_oid(fid) % 11 + 3);
hash <<= hs->hs_cur_bits - hs->hs_bkt_bits; hash <<= hs->hs_cur_bits - hs->hs_bkt_bits;
hash |= (fid_seq(fid) + fid_oid(fid)) & (CFS_HASH_NBKT(hs) - 1); hash |= (fid_seq(fid) + fid_oid(fid)) & (CFS_HASH_NBKT(hs) - 1);
......
...@@ -102,7 +102,7 @@ static inline unsigned long hash_mem(char *buf, int length, int bits) ...@@ -102,7 +102,7 @@ static inline unsigned long hash_mem(char *buf, int length, int bits)
len++; len++;
if ((len & (BITS_PER_LONG/8-1)) == 0) if ((len & (BITS_PER_LONG/8-1)) == 0)
hash = cfs_hash_long(hash^l, BITS_PER_LONG); hash = hash_long(hash^l, BITS_PER_LONG);
} while (len); } while (len);
return hash >> (BITS_PER_LONG - bits); return hash >> (BITS_PER_LONG - bits);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment