Re: [PATCH] Add the infrastructure for supporting an infinite number of CPUs

2011-06-06 Thread Attilio Rao
2011/6/4 Fabian Keil : > 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 rem

Re: [PATCH] Add the infrastructure for supporting an infinite number of CPUs

2011-06-04 Thread Fabian Keil
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 us

Re: [PATCH] Add the infrastructure for supporting an infinite number of CPUs

2011-06-02 Thread Attilio Rao
2011/6/2 Ivan Voras : > On 02/06/2011 14:23, Ivan Voras wrote: >> >> 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

Re: [PATCH] Add the infrastructure for supporting an infinite number of CPUs

2011-06-02 Thread Ivan Voras
On 02/06/2011 14:23, Ivan Voras wrote: 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 the

Re: [PATCH] Add the infrastructure for supporting an infinite number of CPUs

2011-06-02 Thread Ivan Voras
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_

Re: [PATCH] Add the infrastructure for supporting an infinite number of CPUs

2011-06-01 Thread Jack Vogel
Awesome, glad to see this happening :) Jack On Wed, Jun 1, 2011 at 11:21 AM, 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 unsi

[PATCH] Add the infrastructure for supporting an infinite number of CPUs

2011-06-01 Thread Attilio Rao
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 characte