summaryrefslogtreecommitdiffstats
path: root/sys
Commit message (Collapse)AuthorAgeFilesLines
* Forgot to commit this change when making NFS loadable.wollman1994-09-231-3/+3
|
* Include <sys/kernel.h> not <kernel.h>dg1994-09-232-4/+4
|
* Fixed the problem where "make depend" was mandatory for building kernel.phk1994-09-233-6/+6
| | | | moved vnode_if.o up before ${OBJS} in the SYSTEM_OBJS list.
* Increased SHMMAXPGS from 512 to 1024 now that there is plenty of kerneldg1994-09-232-4/+4
| | | | virtual memory.
* Removed last vestige of MULTICAST option.dg1994-09-234-18/+5
|
* Add PPP. NB: this is VERY VERY VERY green code, added to make it easierwollman1994-09-231-0/+2
| | | | to test things out. It compiles, but I don't know if it works (yet).
* Make the kernel side of PPP compile.wollman1994-09-233-15/+31
|
* Initial revisionwollman1994-09-234-0/+2483
|
* Create NFS LKM.wollman1994-09-224-2/+35
|
* Make NFS loadable.wollman1994-09-227-8/+124
|
* make 8bit clean defaultsache1994-09-221-3/+3
|
* More loadable VFS changes:wollman1994-09-2241-152/+52
| | | | | | | | - Make a number of filesystems work again when they are statically compiled (blush) - FIFOs are no longer optional; ``options FIFO'' removed from distributed config files.
* From 1.1.5:dg1994-09-223-6/+6
| | | | | | >revision 1.8 >date: 1994/06/03 06:42:30; author: davidg; state: Exp; lines: +2 -2 >Patch from Bruce Evans: npxintr() needs to mask softclock().
* Call ffs ``ufs'' for the benefit of poor, confused user-land programs.wollman1994-09-221-2/+2
|
* mount.h: Declare getvfs* functions from libc.wollman1994-09-222-2/+11
| | | | vfs_init.c: Fix fs_sysctl() so that getvfs* functions actually work.
* Build LKMs for all ``easy'' filesystems. (lfs can be done, but it's morewollman1994-09-2115-2/+149
| | | | work; ditto NFS and it's even more work.)
* Fix a few niggling little bugs:wollman1994-09-218-14/+17
| | | | | | | - set args->lkm_offset correctly so that VFS modules can be unloaded - initialize _fs_vfsops.vfc_refcount correctly so that VFS modules can be unloaded - include kernel.h in a few placves to get the correct definition of DATA_SET
* Fix the consistent mistranslation of Linux's get_fs_word() andbde1994-09-212-17/+17
| | | | | | | | put_fs_word() to fuword() and suword(). Linux words are 16 bits but BSD words are 32-bits, at least on vax's. Writing a too-large word trashed the neighbouring short word. Bruce
* Fix compiler warnings.bde1994-09-211-2/+4
|
* #if 0'd evil dynamic fifo trigger level adjustment; it just bit me anddg1994-09-213-3/+9
| | | | a couple of other people again.
* From 1.1.5:dg1994-09-213-9/+9
| | | | | >date: 1994/05/27 01:09:16; author: ache; state: Exp; lines: +3 -3 >Russian keymap: Ctrl-Alt-Del with NumLock on fixed
* From 1.1.5:dg1994-09-211-4/+4
| | | | | >date: 1994/06/15 14:35:30; author: paul; state: Exp; lines: +3 -3 >CHanged MAXMEM to ISMAXMEM for safety
* Fixed up a couple of comments.dg1994-09-211-4/+4
|
* Make it easier to create filesystem LKMs by doing most of thewollman1994-09-211-1/+16
| | | | work in the Makefile. Just define VFS_LKM and you're off!
* Implemented loadable VFS modules, and made most existing filesystemswollman1994-09-2161-536/+385
| | | | loadable. (NFS is a notable exception.)
* Add entry for transputer (cdev 8).jkh1994-09-211-5/+20
| | | | | Reviewed by: jkh Submitted by: luigi
* Add entries for transputer driver.jkh1994-09-212-2/+4
| | | | | Reviewed by: jkh Submitted by: luigi
* Add the transputer driver from Christoph Niemann, Luigi Rizzo andjkh1994-09-212-0/+758
| | | | | | Lorenzo Vicisano Reviewed by: jkh Submitted by: luigi
* Don't provide bogus source operands in some asms. This probably shouldn'tbde1994-09-202-34/+58
| | | | | | | | | | | | | | | | matter, but similar bogusness in npx.c causes compiling without -O to fail. Use __volatile in all asms. Parenthesize macro args. Change the names of the macros to avoid namespace pollution. Remove unnecessary "#ifdef __i386__". Sort #defines. Add comments.
* Better documentation, 1ms calibration, default 5 seconds BOOTWAITadam1994-09-206-28/+58
| | | | | Reviewed by: adam Submitted by: rgrimes
* Parenthesize macro args.bde1994-09-201-12/+20
| | | | Comment #endif's.
* Don't supply the `usermode' arg to softclock(). The 2.0 softclock() doesn'tbde1994-09-204-21/+11
| | | | take an arg.
* Don't lose the RTC interrupt in resettodr().bde1994-09-205-10/+10
|
* Sorted.dg1994-09-201-23/+23
|
* Use `1' for a boolean value instead of something irrelevant (MNT_WAIT)bde1994-09-201-2/+2
| | | | that happens to be nonzero.
* Don't use SIG_DFL or SIG_IGN for case label expressions. ANSI requiresbde1994-09-201-3/+3
| | | | | such expressions to have integral type. "gcc -ansi -pedantic -W..." fails to diagnose this constraint error.
* Remove the alias splnone() for spl0(). It was used only once.bde1994-09-203-7/+5
|
* resettodr() now exists, enable itache1994-09-202-6/+2
|
* resettodr() implemented, inittodr() fixedache1994-09-207-358/+698
| | | | Submitted by: me & chris@gnome.co.uk
* Put back missing .text before swi_net. This could probably be made faster;wollman1994-09-191-1/+2
| | | | I invite Bruce to look at it.
* oget/sethostname: add missing argument to kern_sysctlache1994-09-191-3/+3
| | | | | | Reviewed by: Submitted by: Obtained from:
* sysctl incorrectly check name[2] instead of name[1]ache1994-09-191-2/+2
|
* Default wait approx 10 seconds for keypress during bootadam1994-09-192-6/+6
| | | | Added comment about multiplication factor
* Changed some NetBSD backwards compatibility code which was confusing mountd.dfr1994-09-192-12/+4
|
* Add vm/vm.h for complete sysctl type.ache1994-09-191-1/+1
| | | | | Remove wrong time declaration, already have correct in kernel.h (kern_ntptime not compiled without this changes)
* Reversed last revision which was a mistake.dfr1994-09-191-1/+0
|
* Added MSDOSFS option.dfr1994-09-193-3/+6
|
* Added msdosfs.dfr1994-09-1931-9/+12659
| | | | Obtained from: NetBSD
* The previous revision got the wrong log message (for clock.c). It shouldbde1994-09-182-4/+4
| | | | | | | | | have got the following: Back out the changes in the previous revision. Function-like macros were replaced by compound statements that work in less contexts. Unoformize idempotency #ifdef.
* Remove some unnecessary #includes.bde1994-09-187-106/+76
| | | | | | | | | | | | Restore the simple leap year calculation as a macro and document it so that it doesn't become complicated again. The simple version works for all leap years covered by 32-bit time_t's. The complicated version doesn't work for all leap years covered by 64-bit time_t's since among other reasons, the solar system is not stable for long enough. Fix declarations. Nuke spinwait().
OpenPOWER on IntegriCloud