svn commit: r201755 - stable/7/sys/vm
Antoine Brodin
antoine at FreeBSD.org
Thu Jan 7 19:40:12 UTC 2010
Author: antoine
Date: Thu Jan 7 19:40:11 2010
New Revision: 201755
URL: http://svn.freebsd.org/changeset/base/201755
Log:
MFC r200129 to stable/7:
Remove trailing ";" in UMA_HASH_INSERT and UMA_HASH_REMOVE macros.
Modified:
stable/7/sys/vm/uma_int.h
Directory Properties:
stable/7/sys/ (props changed)
stable/7/sys/cddl/contrib/opensolaris/ (props changed)
stable/7/sys/contrib/dev/acpica/ (props changed)
stable/7/sys/contrib/pf/ (props changed)
Modified: stable/7/sys/vm/uma_int.h
==============================================================================
--- stable/7/sys/vm/uma_int.h Thu Jan 7 19:37:21 2010 (r201754)
+++ stable/7/sys/vm/uma_int.h Thu Jan 7 19:40:11 2010 (r201755)
@@ -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 */
More information about the svn-src-all
mailing list