| Commit message (Expand) | Author | Age | Files | Lines |
* | - Merge changes to the base system to support OFED. These include | Jeff Roberson | 2011-03-21 | 1 | -4/+26 |
* | Based on discussions on the svn-src mailing list, rework r218195: | Matthew D Fleming | 2011-02-08 | 1 | -1/+1 |
* | Explicitly wire the user buffer rather than doing it implicitly in | Matthew D Fleming | 2011-01-27 | 1 | -4/+2 |
* | Remove the CTLFLAG_NOLOCK as it seems to be both unused and | Matthew D Fleming | 2011-01-26 | 1 | -5/+3 |
* | Introduce signed and unsigned version of CTLTYPE_QUAD, renaming | Matthew D Fleming | 2011-01-19 | 1 | -3/+6 |
* | Specify a CTLTYPE_FOO so that a future sysctl(8) change does not need | Matthew D Fleming | 2011-01-18 | 1 | -1/+2 |
* | Fix uninitialized variable warning that shows on Tinderbox but not my | Matthew D Fleming | 2010-11-29 | 1 | -1/+1 |
* | Do not hold the sysctl lock across a call to the handler. This fixes a | Matthew D Fleming | 2010-11-29 | 1 | -27/+67 |
* | Slightly modify the logic in sysctl_find_oid to reduce the indentation. | Matthew D Fleming | 2010-11-29 | 1 | -19/+22 |
* | Use the SYSCTL_CHILDREN macro in kern_sysctl.c to help de-obfuscate the | Matthew D Fleming | 2010-11-29 | 1 | -7/+6 |
* | Re-add r212370 now that the LOR in powerpc64 has been resolved: | Matthew D Fleming | 2010-09-16 | 1 | -0/+28 |
* | Revert r212370, as it causes a LOR on powerpc. powerpc does a few | Matthew D Fleming | 2010-09-13 | 1 | -28/+0 |
* | Add a drain function for struct sysctl_req, and use it for a variety of | Matthew D Fleming | 2010-09-09 | 1 | -0/+28 |
* | Make it possible to change the vnet sysctl variables on jails | Bjoern A. Zeeb | 2009-08-13 | 1 | -2/+10 |
* | Merge the remainder of kern_vimage.c and vimage.h into vnet.c and | Robert Watson | 2009-08-01 | 1 | -1/+0 |
* | sysctl_msec_to_ticks is used with both virtualized and | Bjoern A. Zeeb | 2009-07-21 | 1 | -5/+0 |
* | Build on Jeff Roberson's linker-set based dynamic per-CPU allocator | Robert Watson | 2009-07-14 | 1 | -97/+8 |
* | Add explicit includes for jail.h to the files that need them and | Bjoern A. Zeeb | 2009-06-17 | 1 | -0/+1 |
* | Get vnets from creds instead of threads where they're available, and from | Jamie Gritton | 2009-06-15 | 1 | -1/+1 |
* | Move "options MAC" from opt_mac.h to opt_global.h, as it's now in GENERIC | Robert Watson | 2009-06-05 | 1 | -1/+0 |
* | Remove do-nothing code that was required to dirty the old buffer on Alpha. | Dag-Erling Smørgrav | 2009-05-15 | 1 | -12/+1 |
* | Revert r192094. The revision caused problems for sysctl(3) consumers | Konstantin Belousov | 2009-05-15 | 1 | -5/+3 |
* | - Use a separate sx lock to try to limit the number of concurrent userland | John Baldwin | 2009-05-14 | 1 | -7/+16 |
* | Do not advance req->oldidx when sysctl_old_user returning an | Konstantin Belousov | 2009-05-14 | 1 | -3/+5 |
* | Permit buiding kernels with options VIMAGE, restricted to only a single | Marko Zec | 2009-04-30 | 1 | -2/+98 |
* | Add a new type of KTRACE record for sysctl(3) invocations. It uses the | John Baldwin | 2009-03-11 | 1 | -1/+10 |
* | - Remove a recently added comment from kernel_sysctlbyname() that isn't | John Baldwin | 2009-03-10 | 1 | -9/+1 |
* | Expand the scope of the sysctllock sx lock to protect the sysctl tree itself. | John Baldwin | 2009-02-06 | 1 | -21/+103 |
* | Mark most often used sysctl's as MPSAFE. | Ed Schouten | 2009-01-28 | 1 | -3/+4 |
* | Add a flag to tag individual sysctl leaf nodes as MPSAFE and thus not | John Baldwin | 2009-01-23 | 1 | -4/+4 |
* | Don't clobber sysctl_root()'s error number. | Ed Schouten | 2009-01-01 | 1 | -2/+5 |
* | Fix compilation. Also move ogetkerninfo() to kern_xxx.c. | Ed Schouten | 2008-12-29 | 1 | -211/+0 |
* | Push down Giant inside sysctl. Also add some more assertions to the code. | Ed Schouten | 2008-12-29 | 1 | -19/+23 |
* | Uio_yield() already does DROP_GIANT/PICKUP_GIANT, no need to repeat this | Konstantin Belousov | 2008-12-12 | 1 | -2/+0 |
* | The userland_sysctl() function retries sysctl_root() until returned | Konstantin Belousov | 2008-12-12 | 1 | -2/+8 |
* | Merge more of currently non-functional (i.e. resolving to | Marko Zec | 2008-11-26 | 1 | -0/+3 |
* | Add sysctl_rename_oid() to support device_set_unit() usage. Otherwise, | Peter Wemm | 2007-11-30 | 1 | -0/+19 |
* | Merge first in a series of TrustedBSD MAC Framework KPI changes | Robert Watson | 2007-10-24 | 1 | -1/+1 |
* | In userland_sysctl(), call useracc() with the actual newlen value to be | Robert Watson | 2007-09-02 | 1 | -1/+1 |
* | Eliminate now-unused SUSER_ALLOWJAIL arguments to priv_check_cred(); in | Robert Watson | 2007-06-12 | 1 | -2/+1 |
* | Add a function for exporting 64 bit types. | David Malone | 2007-06-04 | 1 | -0/+25 |
* | Further system call comment cleanup: | Robert Watson | 2007-03-05 | 1 | -2/+1 |
* | Remove 'MPSAFE' annotations from the comments above most system calls: all | Robert Watson | 2007-03-04 | 1 | -6/+0 |
* | Sweep kernel replacing suser(9) calls with priv(9) calls, assigning | Robert Watson | 2006-11-06 | 1 | -6/+5 |
* | Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.h | Robert Watson | 2006-10-22 | 1 | -1/+3 |
* | Kill an XXX remark that has been untrue since rev. 1.150 of this file. | Yaroslav Tykhiy | 2006-06-16 | 1 | -4/+0 |
* | Make sysctl_msec_to_ticks(SYSCTL_HANDLER_ARGS) generally available instead | Andre Oppermann | 2006-02-16 | 1 | -0/+26 |
* | Touch all the pages wired by sysctl_wire_old_buffer() to avoid PTE | Don Lewis | 2006-01-25 | 1 | -1/+12 |
* | Drop in a WITNESS_WARN into SYSCTL_IN to make sure that we are | Christian S.J. Peron | 2005-08-08 | 1 | -0/+2 |
* | Check to see if we wired the user-supplied buffers in SYSCTL_OUT, if | Christian S.J. Peron | 2005-08-08 | 1 | -1/+6 |