aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
* o Commit two of two, introducing __cap_{get,set}_{fd,file} syscalls toRobert Watson2000-07-132-2/+10
* o Introduce syscall prototypes, stubs for __cap_{get,set}_{fd,file},Robert Watson2000-07-132-0/+36
* For infinite timeouts, set both the tv_sec and tv_usec fields to zero inJohn Baldwin2000-07-131-2/+6
* Fix a very obscure bug in select() and poll() where the timeout wouldJohn Baldwin2000-07-121-2/+2
* remove m_pulldown statistics, which is highly experimental and does notJun-ichiro itojun Hagino2000-07-121-87/+0
* Add snapshots to the fast filesystem. Most of the changes supportKirk McKusick2000-07-1112-204/+725
* Correct SYSINIT execution order in the case when KLD contains moreBoris Popov2000-07-091-2/+2
* Remove two micro-pessimizations I made. Bruce is teaching me well :)Brian Feldman2000-07-071-2/+2
* Change that &@!$# UIO_READ to be UIO_WRITE. I tested the ktrace stuff,Brian Feldman2000-07-071-1/+1
* Fix support for more than 256 simultaneous mounts. Theoretical limitBoris Popov2000-07-072-4/+8
* Support for unsigned integer and long sysctl variables. Update theJohn Baldwin2000-07-053-15/+14
* End two weeks of on and off debugging. Fix the crash on the NthWarner Losh2000-07-051-24/+27
* sync with kame tree as of july00. tons of bug fixes/improvements.Jun-ichiro itojun Hagino2000-07-042-0/+428
* Previous commit changing SYSCTL_HANDLER_ARGS violated KNF.Poul-Henning Kamp2000-07-0420-37/+37
* Simplify and rationalise the management of the vnode free listKirk McKusick2000-07-042-148/+60
* Move the truncation code out of vn_open and into the open system callKirk McKusick2000-07-0410-64/+80
* If a buffer flush fails when trying to reclaim a vnode, it is tooKirk McKusick2000-07-042-8/+20
* Update tags directive to reflect the new location of soft updatesKirk McKusick2000-07-041-3/+1
* Make the two calls from kern/* into softupdates #ifdef SOFTUPDATES,Poul-Henning Kamp2000-07-034-0/+12
* Add device_set_softc() which does the obvious.Poul-Henning Kamp2000-07-031-7/+21
* Style police catches up with rev 1.26 of src/sys/sys/sysctl.h:Poul-Henning Kamp2000-07-0320-39/+39
* Instead of just blindly setting -rw-rw-rw-:Chris Costello2000-07-021-2/+11
* Report -rw-rw-rw file access modes in soo_stat.Chris Costello2000-07-021-1/+2
* Modify ktrace's general I/O tracing, ktrgenio(), to use a struct uio *Brian Feldman2000-07-023-56/+79
* Fix my own style bugs (use of spaces instead of tabs for indentation).Brian S. Dean2000-07-011-18/+18
* Move the securelevel check before loading KLD's into linker_load_file(),Archie Cobbs2000-06-293-12/+10
* Move #ifdef to the right place.Boris Popov2000-06-291-1/+1
* If kernel compiled with INVARIANTS:Boris Popov2000-06-291-0/+24
* Report a file type (S_IFIFO) in kqueue_stat().Chris Costello2000-06-281-0/+1
* don't panic the system when fpathconv is called on an unsupported filetype.Alfred Perlstein2000-06-271-1/+1
* remove crufty exec stuff, perl is in the base systemAlfred Perlstein2000-06-271-27/+39
* Move prtactive to vfs from ufs. It is used all over the place.Poul-Henning Kamp2000-06-272-0/+2
* Add sysctl descriptions to a few sysctls. Simply "documentation".Neil Blakey-Milner2000-06-262-4/+5
* Some changes and fixes from Bruce:Peter Wemm2000-06-261-9/+9
* Fix stupid braino in last commit, initialize `vp' before we test vp->v_tag.Jonathan Lemon2000-06-251-2/+2
* Remove no-longer-relevant comment.Mark Murray2000-06-251-1/+0
* Forgot this earlier; delete the old /dev/random driver, bring in theMark Murray2000-06-251-393/+0
* Fix typo (inT -> int)Dima Ruban2000-06-231-1/+1
* fix races in the uidinfo subsystem, several problems existed:Alfred Perlstein2000-06-229-78/+116
* Add a hack to fail registration of kq events on a non-ufs filesystem, asJonathan Lemon2000-06-221-0/+8
* Add code so that the udata field is preserved across a TRACK event.Jonathan Lemon2000-06-221-9/+18
* Add 'kern.disks', a sysctl which returns the list of disks fromNeil Blakey-Milner2000-06-221-0/+29
* return of the accept filter part IIAlfred Perlstein2000-06-205-0/+389
* backout accept optimizations.Alfred Perlstein2000-06-183-294/+0
* Revert part of my bioops change which implemented panic(8).Poul-Henning Kamp2000-06-162-0/+6
* Virtualizes & untangles the bioops operations vector.Poul-Henning Kamp2000-06-166-29/+19
* Second of two commits adding capability manipulation syscalls forRobert Watson2000-06-152-2/+6
* Introduce syscalls for process capability manipulation. Currently backsRobert Watson2000-06-151-0/+2
* Add disk_enumerate() for finding names of disks. Vinum and libh willPoul-Henning Kamp2000-06-151-1/+15
* add socketoptions DELAYACCEPT and HTTPACCEPT which will not allow an accept()Alfred Perlstein2000-06-153-4/+298