projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8d24c0b
)
rhashtable: Use rht_obj() instead of manual offset calculation
author
Thomas Graf
<tgraf@suug.ch>
Fri, 2 Jan 2015 22:00:15 +0000
(23:00 +0100)
committer
David S. Miller
<davem@davemloft.net>
Sat, 3 Jan 2015 19:32:56 +0000
(14:32 -0500)
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
lib/rhashtable.c
patch
|
blob
|
blame
|
history
diff --git
a/lib/rhashtable.c
b/lib/rhashtable.c
index 1ee0eb636ca3afaded30b86fd43cb61bdf35490a..b658245826a134f018a46a84ea40fdf87491f2d0 100644
(file)
--- a/
lib/rhashtable.c
+++ b/
lib/rhashtable.c
@@
-427,7
+427,7
@@
void *rhashtable_lookup(const struct rhashtable *ht, const void *key)
if (memcmp(rht_obj(ht, he) + ht->p.key_offset, key,
ht->p.key_len))
continue;
- return
(void *) he - ht->p.head_offset
;
+ return
rht_obj(ht, he)
;
}
return NULL;
@@
-460,7
+460,7
@@
void *rhashtable_lookup_compare(const struct rhashtable *ht, const void *key,
rht_for_each_rcu(he, tbl->buckets[hash], ht) {
if (!compare(rht_obj(ht, he), arg))
continue;
- return
(void *) he - ht->p.head_offset
;
+ return
rht_obj(ht, he)
;
}
return NULL;