svn commit: r211264 - projects/ofed/head/sys/vm

Jeff Roberson jeff at FreeBSD.org
Fri Aug 13 03:14:09 UTC 2010


Author: jeff
Date: Fri Aug 13 03:14:08 2010
New Revision: 211264
URL: http://svn.freebsd.org/changeset/base/211264

Log:
   - expose uma_align_cache for use in the linux wrappers.
  
  Sponsored by:	Isilon Systems, iX Systems, and Panasas.

Modified:
  projects/ofed/head/sys/vm/uma_core.c

Modified: projects/ofed/head/sys/vm/uma_core.c
==============================================================================
--- projects/ofed/head/sys/vm/uma_core.c	Fri Aug 13 03:13:34 2010	(r211263)
+++ projects/ofed/head/sys/vm/uma_core.c	Fri Aug 13 03:14:08 2010	(r211264)
@@ -112,7 +112,7 @@ static uma_zone_t slabrefzone;	/* With r
 static uma_zone_t hashzone;
 
 /* The boot-time adjusted value for cache line alignment. */
-static int uma_align_cache = 64 - 1;
+int uma_align_cache = 64 - 1;
 
 static MALLOC_DEFINE(M_UMAHASH, "UMAHash", "UMA Hash Buckets");
 


More information about the svn-src-projects mailing list