aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
* Grrrr. Fix a really lame bug that I tripped over while testing my miibusBill Paul1999-08-141-2/+2
* oops: Add missing include.Poul-Henning Kamp1999-08-131-1/+2
* Move the special-casing of stat(2)->st_blksize for device filesPoul-Henning Kamp1999-08-131-2/+15
* Register our dev_t with make_devPoul-Henning Kamp1999-08-131-13/+2
* The bdevsw() and cdevsw() are now identical, so kill the former.Poul-Henning Kamp1999-08-134-18/+14
* s/v_specinfo/v_rdev/Poul-Henning Kamp1999-08-133-10/+10
* Replace a redundant vfs_object_create() call (already done in vn_open)Alfred Perlstein1999-08-122-6/+8
* Make subr_bus.c actually compile with -DBUS_DEBUGPeter Wemm1999-08-111-6/+6
* Add CPT_NOA, LIBCOMPAT, NODEF, NOARGS, NOPROTO, and NOIMPL to the commentedNik Clayton1999-08-111-2/+3
* Zap some stray references to DRIVER_TYPE_foo in the BUS_DEBUG case, asPeter Wemm1999-08-111-12/+3
* Stop profiling on exec.Warner Losh1999-08-111-1/+4
* When doing a dump, if ENODEV is returned explain what happened to the user,Alfred Perlstein1999-08-111-3/+13
* make alpha compile again.Poul-Henning Kamp1999-08-091-2/+2
* Merge the cons.c and cons.h to the best of my ability. alpha may orPoul-Henning Kamp1999-08-094-18/+11
* Enable ttymalloc().Poul-Henning Kamp1999-08-081-9/+6
* Add new sysctl "kern.ttys" which return all the struct tty's which havePoul-Henning Kamp1999-08-082-2/+35
* Make the pty driver as close to a cloning device as we can get for now,Poul-Henning Kamp1999-08-081-99/+62
* Decommision miscfs/specfs/specdev.h. Most of it goes into <sys/conf.h>,Poul-Henning Kamp1999-08-086-17/+31
* cdevsw_remove: place correct value in bmaj2cmaj. This had causedGreg Lehey1999-08-081-2/+2
* Make long longs ("%ll" format) work.Brian Feldman1999-08-071-2/+6
* Re-commit these files after updating syscalls.master (in the proper orderJordan K. Hubbard1999-08-052-2/+2
* Move syscall 180 back to where it was before and fix theJordan K. Hubbard1999-08-051-3/+3
* Reserve a syscall for the arla folks. I'm assuming that since syscalls.cJordan K. Hubbard1999-08-043-2/+5
* Fix fd race conditions (during shared fd table usage.) Badfileops isBrian Feldman1999-08-047-33/+92
* o Typo in prior version kept it from compiling (blush).Warner Losh1999-08-042-12/+18
* brucify:Warner Losh1999-08-032-12/+12
* Only allow root to set file flags on devices.Warner Losh1999-08-022-2/+16
* lutimes() bug: FOLLOW should be NOFOLLOW for this one.Brian Feldman1999-07-292-4/+4
* Removed references to a nonexistent variable. This fixes building kernelsBruce Evans1999-07-291-4/+1
* Fix a typo.Matthew N. Dodd1999-07-291-2/+2
* Alter the behavior of sys/kern/subr_bus.c:device_print_child()Matthew N. Dodd1999-07-292-14/+43
* Add sysctl and support code to allow directories to be VMIO'd. The defaultAlan Cox1999-07-267-16/+19
* On FPU exceptions, pass a useful error code (one of the FPE_...Martin Cracauer1999-07-251-4/+4
* Oops, the previous commit only worked in the one case it was tested for.Bruce Evans1999-07-242-4/+6
* - Correctly initialize cn_dev_t and cn_udev_t.Kazutaka YOKOTA1999-07-241-4/+7
* This makes the in kernel printf routines conform to the documentedDoug Rabson1999-07-242-19/+32
* Fix the following problem:Alan Cox1999-07-211-1/+3
* Fix a REALLY embarrassing mistake. Don't look; I warned you.Brian Feldman1999-07-201-2/+2
* Make a dev2budev() function, and use it. This refixes pstat (working, broken,Brian Feldman1999-07-202-6/+12
* dev2udev() returns a CDEV udev_t, but we use block io in savecore. SavecoreBrian Feldman1999-07-201-2/+5
* Now a dev_t is a pointer to struct specinfo which is shared by all specdevPoul-Henning Kamp1999-07-203-127/+127
* add debug.sizeof.specinfoPoul-Henning Kamp1999-07-201-1/+5
* Implement an all-CPU shootdown-style rendezvous facility. This allowsMike Smith1999-07-201-1/+85
* [click] Now all dev_t's in the kernel have their char device major.Poul-Henning Kamp1999-07-193-22/+14
* Add sysctl tree debug.sizeof to tell us how big things are. First twoPoul-Henning Kamp1999-07-191-1/+10
* Added a sysctl "kern.timecounter.hardware" for selecting the hardwareBruce Evans1999-07-182-12/+82
* Introduce the vn_todev(struct vnode*) function, which returns the dev_tPoul-Henning Kamp1999-07-182-2/+26
* Reset SA_NOCLDWAIT on exec().Peter Wemm1999-07-181-1/+5
* Remove four no-op casts.John Polstra1999-07-182-10/+10
* Centralize dumpdev handling.Poul-Henning Kamp1999-07-171-4/+57