aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_sysctl.c
Commit message (Expand)AuthorAgeFilesLines
...
* Make dynamic sysctl entries start at 0x100, not decimal 100 - there arePeter Pentchev2001-07-251-3/+7
* Style(9): function names on a separate line, max line length 80 chars.Peter Pentchev2001-07-251-4/+8
* int -> size_t fixMatt Jacob2001-06-221-2/+2
* With this commit, I hereby pronounce gensetdefs past its use-by date.Peter Wemm2001-06-131-22/+5
* When tring to find out if this is a request for a write inDima Dorfman2001-06-031-2/+2
* Add convenience function kernel_sysctlbyname() for kernel consumers,Jonathan Lemon2001-05-191-1/+24
* Make the SYSCTL_OUT handlers sysctl_old_user() and sysctl_old_kernel()Thomas Moestl2001-03-081-4/+10
* Mechanical change to use <sys/queue.h> macro API instead ofPoul-Henning Kamp2001-02-041-1/+1
* Remove unused variable 'int n;'Peter Wemm2001-01-291-1/+0
* Never reuse AUTO_OID values.Kirk McKusick2001-01-241-7/+5
* - For dynamic sysctl's added at runtime, don't assume that the name passedJohn Baldwin2001-01-051-2/+2
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-081-2/+1
* Fix some style nits.Peter Wemm2000-07-281-10/+13
* These patches implement dynamic sysctls. It's possible now to addAndrzej Bialecki2000-07-151-0/+252
* Previous commit changing SYSCTL_HANDLER_ARGS violated KNF.Poul-Henning Kamp2000-07-041-11/+11
* Style police catches up with rev 1.26 of src/sys/sys/sysctl.h:Poul-Henning Kamp2000-07-031-11/+11
* Back out the previous change to the queue(3) interface.Jake Burkholder2000-05-261-1/+1
* Change the way that the queue(3) structures are declared; don't assume thatJake Burkholder2000-05-231-1/+1
* Remove unneeded <sys/buf.h> includes.Poul-Henning Kamp2000-04-181-1/+0
* Remove unused 3rd argument from vsunlock() which abused B_WRITE.Poul-Henning Kamp2000-03-131-2/+2
* Separate some common sysctl code into sysctl_find_oid() and callingBrian Feldman1999-12-011-68/+65
* Change useracc() and kernacc() to use VM_PROT_{READ|WRITE|EXECUTE} for thePoul-Henning Kamp1999-10-301-2/+2
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
* Minor tweaks to make sure (new) prerequisites for <sys/buf.h> (mostlyPeter Wemm1999-06-271-3/+3
* This Implements the mumbled about "Jail" feature.Poul-Henning Kamp1999-04-281-2/+3
* Suser() simplification:Poul-Henning Kamp1999-04-271-2/+2
* Purging lint from the Bruce filter.Poul-Henning Kamp1999-03-301-12/+10
* Fix some nasty hangs if garbage were passed.Poul-Henning Kamp1999-03-231-4/+6
* * Change sysctl from using linker_set to construct its tree using SLISTs.Doug Rabson1999-02-161-174/+157
* Back out last change to sysctl.Poul-Henning Kamp1999-01-101-47/+2
* Add kernel support for sysctl descriptions. The NO_SYSCTL_DESCRIPTIONS optionDag-Erling Smørgrav1999-01-101-3/+48
* Fix some 64bit truncation problems which crept into SYSCTL_LONG() with theDoug Rabson1998-12-271-34/+4
* Add a generic flag, CTLFLAG_SECURE, which can be used to mark a sysctlDon Lewis1998-12-131-2/+3
* Examine all occurrences of sprintf(), strcat(), and str[n]cpy()Archie Cobbs1998-12-041-2/+2
* *gulp*. Jordan specifically OK'ed this..Peter Wemm1998-10-161-1/+3
* Ignore the statically configured vfs type numbers and assign vfsBruce Evans1998-09-051-2/+10
* Fixed bogotification of pseudocode for syscall args by rev.1.53 ofBruce Evans1998-09-051-2/+2
* Change various syscalls to use size_t arguments instead of u_int.Doug Rabson1998-08-241-13/+73
* Make COMPAT_43 and COMPAT_SUNOS new-style options.Eivind Eklund1997-12-161-1/+3
* Move the "retval" (3rd) parameter from all syscall functions and putPoul-Henning Kamp1997-11-061-4/+4
* Last major round (Unless Bruce thinks of somthing :-) of malloc changes.Poul-Henning Kamp1997-10-121-2/+2
* Distribute and statizice a lot of the malloc M_* types.Poul-Henning Kamp1997-10-111-1/+3
* Include <sys/buf.h> instead of <sys/vnode.h>. kern_sysctl.c noBruce Evans1997-04-091-2/+2
* Back out part 1 of the MCFH that changed $Id$ to $FreeBSD$. We are notPeter Wemm1997-02-221-1/+1
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
* Fixed garbage being returned for constant int values, e.g., forBruce Evans1996-12-151-2/+2
* Fixed bogus casts (const on the wrong `*' in `**') in a qsort-comparisionBruce Evans1996-09-031-4/+5
* Don't depend in the kernel on the gcc feature of doing arithmetic onBruce Evans1996-08-311-5/+6
* Implemented 'kern_sysctl', which differs from 'userland_sysctl' in thatNate Williams1996-06-101-5/+63
* If handler function returns EAGAIN, restart operation.Poul-Henning Kamp1996-06-061-3/+7