Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Jun 2006 01:16:36 GMT
From:      "Christian S.J. Peron" <csjp@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 99958 for review
Message-ID:  <200606250116.k5P1GaHt050575@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=99958

Change 99958 by csjp@csjp_rnd01 on 2006/06/25 01:15:54

	I am reasonly sure that reads of the system page size variable
	do not need to be protected as this is constant.

Affected files ...

.. //depot/projects/kmacy_sun4v/src/sys/kern/kern_mib.c#3 edit

Differences ...

==== //depot/projects/kmacy_sun4v/src/sys/kern/kern_mib.c#3 (text+ko) ====

@@ -146,7 +146,7 @@
 SYSCTL_INT(_hw, HW_BYTEORDER, byteorder, CTLFLAG_RD,
     0, BYTE_ORDER, "System byte order");
 
-SYSCTL_INT(_hw, HW_PAGESIZE, pagesize, CTLFLAG_RD,
+SYSCTL_INT(_hw, HW_PAGESIZE, pagesize, CTLFLAG_RD | CTLFLAG_MPSAFE,
     0, PAGE_SIZE, "System memory page size");
 
 static int



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200606250116.k5P1GaHt050575>