On 01/06/2011 20:21, Attilio Rao wrote:
Current maximum number of CPUs supported by the FreeBSD kernel is 32.
That number cames from indirectly by the fact that we have a cpumask_t
type, representing a mask of CPUs, which is an unsigned int right now.
I then made a patch that removes the cpumask_t type and uses cpuset_t
type for characterizing a generic mask of CPUs:
http://www.freebsd.org/~attilio/largeSMP/largeSMP-patchset-beta-0.diff
Hi,
I'm just wandering: what is the expected overhead of this, compared to
using a simple atomic integer (32-bit on i386, 64-bit on amd64)? I
assume that this will introduce more work, like locking, in
performance-critical code like the scheduler, etc.?
_______________________________________________
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"