aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_cpuset.c
Commit message (Expand)AuthorAgeFilesLines
* Add more fine-grained kernel options for NUMA support.John Baldwin2016-04-091-5/+11
* Un-static cpuset_which() - it's useful in other contexts, such as someAdrian Chadd2015-06-261-1/+1
* Allow sizeof(cpuset_t) to be queried in capability mode.Jonathan Anderson2015-05-141-1/+1
* Reject attempts to read the cpuset mask of a negative domain ID.John Baldwin2015-01-081-1/+1
* Create a cpuset mask for each NUMA domain that is available in theJohn Baldwin2015-01-081-1/+21
* Fix multiple incorrect SYSCTL arguments in the kernel:Hans Petter Selasky2014-10-211-1/+1
* Modify cpuset_setithread() to take a CPU ID as an integer, not a char.Adrian Chadd2014-09-161-1/+1
* Fix error handling in cpuset_setithread() introduced in r267716.Alexander V. Chernikov2014-09-131-6/+17
* Permit changing cpu mask for cpu set 1 in presence of driversAlexander V. Chernikov2014-06-221-1/+88
* Several improvements to rmlock(9). Many of these are based on patchesJohn Baldwin2013-06-251-10/+19
* - Add a BIT_FFS() macro and use it to replace cpusetffs_obj()Jeff Roberson2013-06-131-20/+0
* Do not compare the existing mask of a cpuset with a new mask when changingJohn Baldwin2013-06-061-8/+11
* Post r222812 KTR_CPUMASK started being initialized only as a tunableAttilio Rao2012-08-301-7/+7
* Add a missing curly bracketKevin Lo2011-12-051-0/+1
* In order to maximize the re-usability of kernel code in user space thisKip Macy2011-09-161-5/+5
* Fix KTR_CPUMASK in order to accept a string representing a cpuset_t.Attilio Rao2011-05-311-0/+38
* Revert a change that crept in during MFC.Attilio Rao2011-05-311-36/+0
* MFCAttilio Rao2011-05-311-0/+36
|\
* | Revert a patch that unvolountary sneaked in while I was MFCing.Attilio Rao2011-05-231-36/+0
* | MFCAttilio Rao2011-05-231-0/+36
|\|
| * Merge r221912 from largeSMP project branch:Attilio Rao2011-05-221-1/+1
* | Make cpusetobj_strprint() prepare the string in order to print theAttilio Rao2011-05-221-2/+2
* | Fix a longstanding bug where only the first part of the cpumask wasAttilio Rao2011-05-141-1/+1
* | Simplify the code here.Attilio Rao2011-05-141-4/+0
* | Commit the support for removing cpumask_t and replacing it directly withAttilio Rao2011-05-051-3/+45
|/
* When constructing a new cpuset, apply the parent cpuset's mask to the newJohn Baldwin2011-03-081-4/+4
* Use integer for size of cpuset, as it won't be bigger than INT_MAX,David Xu2010-11-011-0/+4
* - Revert r214409.David Xu2010-10-271-4/+0
* If input parameter cpusetsize is zero, give userland size of cpuset maskDavid Xu2010-10-271-0/+4
* Use function tdfind() to find a thread.David Xu2010-10-251-11/+2
* Another nit that both I and ispell missed.John Baldwin2009-10-261-1/+1
* Fix some spelling nits.John Baldwin2009-10-261-5/+5
* Remove unnecessary/redundant includes.Jamie Gritton2009-06-231-1/+0
* Add hierarchical jails. A jail may further virtualize its environmentJamie Gritton2009-05-271-38/+14
* Prevent a superuser inside a jail from modifying the dedicatedBjoern A. Zeeb2009-04-281-0/+9
* Correct a comment: the function name given had never existed in anyBjoern A. Zeeb2009-04-221-1/+2
* MFp4:Bjoern A. Zeeb2008-11-291-4/+111
* Add a `show cpusets' DDB command to print numbered root andBjoern A. Zeeb2008-07-071-0/+33
* Move cpuset_refroot and cpuset_refbase functions up, grouping theBjoern A. Zeeb2008-07-071-32/+32
* Add a new priv 'PRIV_SCHED_CPUSET' to check if manipulating cpusets isBjoern A. Zeeb2008-06-291-1/+1
* Take into account possible overflow when multiplying. The casuality isKonstantin Belousov2008-05-261-2/+2
* - Add the interrupt vector number to intr_event_create so MI code canJeff Roberson2008-04-111-0/+16
* - Add a Nokia copyright to cpuset to reflect their generousJeff Roberson2008-04-041-0/+3
* - Consistently return EDEADLK when presented with a new set that isJeff Roberson2008-03-301-20/+27
* Fixed type of the fourth argument of cpuset_{get,set}affinity(2) to be size_t.Ruslan Ermilov2008-03-251-11/+10
* - Relax requirements for p_numthreads, p_threads, p_swtick, and p_nice fromJeff Roberson2008-03-191-10/+2
* - Add a missing unlock to cpuset_setaffinity(CPU_LEVEL_CPUSET, CPU_WHICH_PID)Jeff Roberson2008-03-061-0/+1
* - Don't overwrite the recently allocated 'nset' in cpuset_setthread() byJeff Roberson2008-03-051-1/+1
* - Verify that when a user supplies a mask that is bigger than the kernelJeff Roberson2008-03-051-26/+78
* Add cpuset, an api for thread to cpu binding and cpu resource groupingJeff Roberson2008-03-021-0/+907