aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_param.c
Commit message (Expand)AuthorAgeFilesLines
* Also make kern.maxfilesperproc a boot time tunable.Adrian Chadd2015-09-101-1/+2
* Make kstack_pages a tunable on arm, x86, and powepc. On i386, theKonstantin Belousov2015-08-101-0/+3
* - Make 'struct buf *buf' private to vfs_bio.c. Having a global variableJeff Roberson2015-07-291-7/+0
* Remove support for Xen PV domU kernels. Support for HVM domU kernelsJohn Baldwin2015-04-301-4/+0
* Use SYSCTL_OUT_STR() to return strings.Ian Lepore2015-03-141-2/+1
* Rework virtual machine hypervisor detection.John Baldwin2014-10-281-59/+8
* Follow up to r225617. In order to maximize the re-usability of kernel codeDavide Italiano2014-10-161-2/+2
* Pull in r267961 and r267973 again. Fix for issues reported will follow.Hans Petter Selasky2014-06-281-13/+13
* Revert r267961, r267973:Glen Barber2014-06-271-13/+13
* Extend the meaning of the CTLFLAG_TUN flag to automatically check ifHans Petter Selasky2014-06-271-13/+13
* Add VM_LAST, a special last element in enum VM_GUEST and use it in CTASSERTSergey Kandaurov2013-11-121-0/+1
* Set description string for VM_GUEST_HV (HyperV guest).Sergey Kandaurov2013-11-111-0/+1
* Fix typo.Konstantin Belousov2013-10-271-1/+1
* Implement the concept of the unmapped VMIO buffers, i.e. buffers whichKonstantin Belousov2013-03-191-0/+7
* Move the auto-sizing of the callout array from init_param2() toAndre Oppermann2013-03-081-12/+0
* - Make callout(9) tickless, relying on eventtimers(4) as backend forDavide Italiano2013-03-041-2/+6
* Move the mbuf memory limit calculations from init_param2() toAndre Oppermann2013-01-171-14/+0
* Do not autotune ncallout to be greater than 18508.Alfred Perlstein2013-01-151-1/+4
* - Detect when we are in KVM.Andrey Zonov2013-01-151-0/+2
* Teach the kernel to recognize that it is executing inside a bhyve virtualNeel Natu2013-01-051-0/+1
* Prevent long type overflow of realmem calculation on ILP32 by forcingAndre Oppermann2012-12-101-2/+2
* Using a long is the wrong type to represent the realmem and maxmbufmemAndre Oppermann2012-11-291-4/+4
* Base the mbuf related limits on the available physical memory orAndre Oppermann2012-11-271-8/+31
* Allow maxusers to scale on machines with large address space.Alfred Perlstein2012-11-101-11/+11
* Allow autotune maxusers > 384 on 64 bit machinesAlfred Perlstein2012-10-251-2/+10
* - Mark some sysctls with CTLFLAG_TUN flag instead of CTLFLAG_RDTUN.Andrey Zonov2012-09-031-7/+7
* - Make kern.maxtsiz, kern.dfldsiz, kern.maxdsiz, kern.dflssiz, kern.maxssizAndrey Zonov2012-09-021-7/+7
* As a safety measure, disable lowering pid_max too much.Konstantin Belousov2012-08-161-0/+3
* Add a sysctl kern.pid_max, which limits the maximum pid the system isKonstantin Belousov2012-08-151-2/+11
* Modestly increase the maximum allowed size of the kmem map on i386.Alan Cox2011-03-231-11/+8
* Make MSGBUF_SIZE kernel option a loader tunable kern.msgbufsize.Sergey Kandaurov2011-01-211-0/+7
* Add Xen to the list of virtual vendors. In the non PV (HVM) case this fixesChristian S.J. Peron2010-08-061-0/+1
* Reverse the logic of the if statement that sets the default value ofNathan Whitehorn2010-06-241-3/+3
* Move default HZ from 100 to 1000 on powerpc.Nathan Whitehorn2010-06-231-1/+1
* Document the VM detection type and sysctl a bit better.Ivan Voras2010-03-021-1/+1
* When running as a guest operating system, the FreeBSD kernel must assumeAlan Cox2010-02-271-4/+4
* Don't inforce an upper bound on kern.ngroups. The INT_MAX-1 limit wasBrooks Davis2010-02-241-2/+0
* Replace the static NGROUPS=NGROUPS_MAX+1=1024 with a dynamicBrooks Davis2010-01-121-0/+14
* Increase HZ_VM from 10 to 100. While 10 hz saves cpu timeMike Silbersack2009-07-081-1/+1
* Improve the description of a few sysctls.John Baldwin2009-03-231-10/+11
* Change the sysctls for maxbcache and maxswzone from int to long. I missedJohn Baldwin2009-03-121-2/+2
* Export the current values of nbuf, ncallout, and nswbuf via read-onlyJohn Baldwin2009-03-121-0/+6
* - Make maxpipekva a signed long rather than an unsigned long as overflowJohn Baldwin2009-03-101-2/+2
* Adjust some variables (mostly related to the buffer cache) that holdJohn Baldwin2009-03-091-6/+6
* Document the relationship between enum VM_GUEST and the vm_guest_sysctl_namesIvan Voras2008-12-301-1/+3
* Hide detect_virtual() along with the accompanying stringBjoern A. Zeeb2008-12-271-7/+9
* By popular request, stringify kern.vm_guest sysctl. Now it returns aIvan Voras2008-12-181-3/+27
* Introduce a sysctl kern.vm_guest that reflects what the kernel knows aboutIvan Voras2008-12-171-6/+15
* - Detect Bochs BIOS variants and use HZ_VM as well.Jung-uk Kim2008-12-081-12/+25
* vm_pnames should be "const char *const[]".Maxim Sobolev2008-10-271-1/+1