MFC r200129 to stable/8:

Remove trailing ";" in UMA_HASH_INSERT and UMA_HASH_REMOVE macros.
This commit is contained in:
Antoine Brodin 2010-01-07 19:37:21 +00:00
parent aecc4e1724
commit f12d6d2a3f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/stable/8/; revision=201754

View File

@ -144,10 +144,10 @@
#define UMA_HASH_INSERT(h, s, mem) \
SLIST_INSERT_HEAD(&(h)->uh_slab_hash[UMA_HASH((h), \
(mem))], (s), us_hlink);
(mem))], (s), us_hlink)
#define UMA_HASH_REMOVE(h, s, mem) \
SLIST_REMOVE(&(h)->uh_slab_hash[UMA_HASH((h), \
(mem))], (s), uma_slab, us_hlink);
(mem))], (s), uma_slab, us_hlink)
/* Hash table for freed address -> slab translation */