summaryrefslogtreecommitdiff
path: root/sys/kern
AgeCommit message (Collapse)Author
1999-01-11comment typoNiklas Hallqvist
1999-01-11just check rforkflags if ISRFORKNiklas Hallqvist
1999-01-11sigh memset is not available everywhere, I should know betterNiklas Hallqvist
1999-01-11panic prints a newline for you, don't do it in the panic stringTodd C. Miller
1999-01-11kthread abstraction from NetBSD, implemented with our rforkNiklas Hallqvist
1999-01-11Sanity panics into DIAGNOSTICNiklas Hallqvist
1999-01-11Adhere better to DIAGNOSTIC and DDB optionsNiklas Hallqvist
1999-01-10remove unnecessary declaration of dounmountArtur Grabowski
1999-01-10Generalize cpu_set_kpc to take any kind of arg; mostly from NetBSDNiklas Hallqvist
1999-01-10Make RFNOWAIT work in rfork(2)Niklas Hallqvist
1999-01-10NUL terminate the buffer in vsprintfNiklas Hallqvist
1999-01-07ready for INET6 and KEYTheo de Raadt
1999-01-07new APIs: m_pullup2, m_copym2, m_zero, MCL_ALIGN; NRL/cmetzTheo de Raadt
1999-01-021999Theo de Raadt
1998-12-28remove old leftovers from lite2 upgradeArtur Grabowski
1998-12-28simple_lock fixesArtur Grabowski
1998-12-28simple debugging for simple locksArtur Grabowski
1998-12-23Opps. the flag that says that we are sleeping is MNT_MWAIT, not MNT_WAITArtur Grabowski
1998-12-22deconfuse vprint, print holdcount, not refcount when we are talking about ↵Artur Grabowski
holdcnt
1998-12-21return EOPNOTSUPP when there is no support for this filesystem in the kernel.Artur Grabowski
This is what most mount_* expect.
1998-12-10Several fixes to dounmount.Artur Grabowski
- Check for MNT_UNMOUNT before doing the actual unmount. It shouldn't matter for normal unmounts that go through sys_unmount, because they won't be able to do a lookup on the mountpoint when it's being unmounted, but mfs calls dounmount directly (and there was still a race). - clear the MNT_UNMOUNT flag after reenabling the lock (almost impossible race). - clear the MNT_MWAIT flag after doing a wakeup on the mountpoint.
1998-12-10vfs_unmountall: retry to unmount all remaining filesystems when one unmount ↵Artur Grabowski
failed
1998-12-05Reinstate supposed dead codeConstantine Sapuntzakis
1998-12-05Updated vnode_if specificiationConstantine Sapuntzakis
1998-12-05Framework for generating automatic test code for locking disciplineConstantine Sapuntzakis
in DIAGNOSTIC mode. Added documentation to vfs_subr.c on locking needs of a couple calls. Improvements to the vinvalbuf patch. We need to start over after we let our pants down.
1998-12-05Dead code eliminationConstantine Sapuntzakis
1998-12-04consider limits, in fdavail(); michaels@inet.noTheo de Raadt
1998-12-04VFS-Lite2 requires stricter locking around vnode buffer queues. vinvalbufConstantine Sapuntzakis
had insufficient protection
1998-11-29indentArtur Grabowski
1998-11-20vn_lock already unlocks the simple lock. don't do that againArtur Grabowski
1998-11-18regenArtur Grabowski
1998-11-18syscalls behind #ifdef should have an #elseArtur Grabowski
1998-11-15GC unnecessary declarationArtur Grabowski
1998-11-12More soft updates fixes from Kirk McKusick.Constantine Sapuntzakis
1998-11-12Integrate latest soft updates patches for McKusick.Constantine Sapuntzakis
Integrate cleaner ffs mount code from FreeBSD. Most notably, this mount code prevents you from mounting an unclean file system read-write.
1998-11-10put text after endif into commentsArtur Grabowski
1998-10-13In vrele, vget, reinstate to following orderConstantine Sapuntzakis
- VNODE gets placed on free list - VOP_INACTIVE is called This was the original order. It was changed in an earlier patch due to a race condition in non-locking FSes (like NFS) between getnewvnode and inactive. However, the modified order had its own race conditions, so it turned out not to be a good choice.
1998-10-13More fixes for huge (>2GB) files.Constantine Sapuntzakis
1998-10-11Fix from Kirk McKusick to make sure that clustering works correctly acrossConstantine Sapuntzakis
the 2GB file boundary.
1998-10-01Fix a serious bug in extent_alloc_subregion where the subregion startFederico G. Schwindt
was ignored. This fix some problems in the pcmcia framework.
1998-09-27Only update vfs_refcount when the mount succeeds and MNT_UPDATE not set.Todd C. Miller
1998-09-24pretty up previous fixArtur Grabowski
1998-09-23use the same flags for f_flag as there were used for vn_open, otherwise ↵Artur Grabowski
vn_close will not decrease v_writecount for the vnode causing panics
1998-09-18Sync with previous commit of syscall.master that did not make it into the ↵Artur Grabowski
changelogs. (enable xfspioctl even when XFS is not defined)
1998-09-17always use xfspioctlArtur Grabowski
1998-09-16add openbsd copyright; if you have not talked to me about this already, do ↵Theo de Raadt
so now
1998-09-14allow the recvfrom (fd, NULL, 0, MSG_PEEK, ...) again, pr 584.Niels Provos
1998-08-30Cleanup.Constantine Sapuntzakis
Error diagnostics in vputonfreelist to catch violations of assumptions.
1998-08-30syncTheo de Raadt
1998-08-30cleanTheo de Raadt