summaryrefslogtreecommitdiffstats
path: root/sys
Commit message (Collapse)AuthorAgeFilesLines
* Added pcaselect call.sos1994-09-291-2/+4
|
* Changed header sligthly.sos1994-09-293-6/+9
|
* Changed header slightly.sos1994-09-297-62/+109
|
* Updated pcaudio.c to latest from 1.1.5.1sos1994-09-296-352/+290
| | | | | | Enabled timer reprogramming in clock.c (this could use more work). Obtained from: FreeBSD-1.1.5.1
* Fixed bug in hardclock() that caused adjtime() to fail when givenwollman1994-09-293-27/+12
| | | | | a negative offset. This would be seen in xntpd as a rash of ``Previous time adjustment didn't complete'' messages on startup.
* GENERIC*: remove commented-out options; the user should have to dowollman1994-09-285-12/+8
| | | | | | /some/ research to figure out how to turn them on. LINT: better description of TCP_COMPAT_42: ``emulate 4.2BSD TCP bugs''.
* LKMs are no longer options, so remove the `options LKM' from LINT.wollman1994-09-283-6/+3
|
* Now that LKM is standard, PROCFS isn't needed in the GENERIC kernelsdg1994-09-282-4/+2
| | | | either.
* The FDESC filesystem is definately not needed in the GENERIC kernels.dg1994-09-282-4/+2
|
* LKM support is no longer optional.wollman1994-09-286-74/+3
|
* Disable MFS as loadable until someone figures out how to make it work.wollman1994-09-281-2/+6
|
* Reviewed by: Julian Elischer / Jordan K. Hubbardse1994-09-285-16/+361
| | | | | | | | | | | | Changes are only effective, if NEW_SCSICONF is defined: 1) Added u_int16 quirks to struct scsi_link for device quirks. 2) Added void *devmodes to struct scsi_link for tape density modes. 3) Modified selectdev() to return first full match (with wildcard). With this patch all device dependent configuration is done in one place (scsiconf.c), while there were some specifications in st.c and some hardware dependent drivers (ie. ncr.c) before.
* A potential panic, found by adding declarations.phk1994-09-281-2/+2
|
* Added a %p to printf & friends, same thing as 0x%08x but more with thephk1994-09-281-1/+8
| | | | potiential to make a warning from gcc more useful.
* #include ddb.h not db_output.hphk1994-09-281-2/+2
|
* Get rid of parentheses in version stuff. Use 2.0.0-Development instead.sef1994-09-281-3/+3
|
* Added entries for PCI and NCR device drivers.se1994-09-283-3/+21
|
* Make NFS ask the filesystems for directory cookies instead of making themdfr1994-09-2810-184/+313
| | | | itself.
* Submitted by: Wolfgang Stanglmeier <wolf@dentaro.GUN.de>se1994-09-2813-74/+339
| | | | | | New version with improved support for WIDE SCSI using the NCR 53c825. Test for buggy secondary cache implementations. PCI Int to IRQ mapping now specified per slot.
* Make bt_timeout() match proper calling conventions - thank you -W!jkh1994-09-281-5/+5
|
* Re-port over all of Atsushi Murai's 32bit support and various and sundryjkh1994-09-281-51/+217
| | | | | | | | | | improvements from 1.1.5.1. I tried to compile a kernel without BOUNCE_BUFFERS with the previous version for my Bt946c and it puked and died. Bringing these enhancements back in allows the faster controllers to DTRT while still not messing up the older ISA/broken VLB controllers, since bounce-buffering is still the default. In theory, anyway. Bt445S and Bt545S folks should start testing this ASAP! (actually, Bt445C and Bt545C folks even more so!).
* Ensure normal selection and alignment of the text and data sections beforebde1994-09-283-6/+48
| | | | | | including files. vector.s sometimes left the data section misaligned (depending on the configuration) so all the time-critical globals in icu.s were sometimes misaligned.
* A minor slip, ktrnamei() is void, not int.phk1994-09-271-2/+2
|
* Previous commit should have read ...in vm_page_alloc_contig().dg1994-09-271-2/+3
| | | | | | | | ...(this commit): moved initialization of 'start' to make it more clear that it is initialized properly (also in vm_page_alloc_contig). Reviewed by: Submitted by: Obtained from:
* Fixed another bug, and cleaned up the code.dg1994-09-271-6/+6
|
* Added declarations, fixed bugs due to missing decls. At least one of themphk1994-09-2716-222/+336
| | | | could panic a system. (I know, it paniced mine!).
* ktrace.c: added decl of ktrnameiphk1994-09-275-9/+16
| | | | | | lkm.h: added decl of lkmdispatch mount.h: added decl of vfs_busy,vfs_unbusy syscall: The "created from" changed.
* Addedphk1994-09-273-3/+9
| | | | | options DIAGNOSTIC options MSDOSFS_DEBUG
* Added include of <machine/cons.h> so that cngetc() gets declared.phk1994-09-271-1/+2
|
* Moved the "relookup" routine into vfs_lookup.c from ufs/ufs/ufs_vnops.c.phk1994-09-273-161/+164
| | | | Several FS's use this, so it doesn't belong in ufs. (unionfs, msdosfs and ufs)
* Fixed multiple bugs in previous version of vm_page_alloc_contig.dg1994-09-271-14/+15
|
* 1) New "vm_page_alloc_contig" routine by me.dg1994-09-273-5/+83
| | | | | 2) Created a new vm_page flag "PG_FREE" to help track free pages. 3) Use PG_FREE flag to detect inconsistencies in a few places.
* First round of changes to get the sound code working in 2.0.dg1994-09-2711-24/+22
|
* Woops, wrong solution to the problem. Backed out previous fix to ddb.h, anddg1994-09-272-3/+3
| | | | | | | nuked the db_printf() declaration from db_output.h. Reviewed by: Submitted by: Obtained from:
* Nuked db_printf() prototype; it now clashes with the one in db_output.h.dg1994-09-271-2/+1
|
* Bug fixed: cursor shaping in mode swithching produce wrong results forache1994-09-273-6/+15
| | | | non-fat cursors, cursor_start goes beyond font size.
* Makes gcc silent in sys/ddb.phk1994-09-277-32/+30
|
* Refuse text mode switching when proper font not loadedache1994-09-273-6/+60
|
* Lots of kernel code requires vnodE_if.h, so provide code to generate itwollman1994-09-261-3/+1
| | | | | | | | | | if requested. LKMs which need it should use: SRCS+= vnode_if.h CLEANFILES+= vnode_if.h vnode_if.c These rules were already present for VFS LKMs; now they are enabled all the time. (VFS LKMs do not need the fragment above; it is still done for them.)
* Process accounting implementation by Chris Demetriou, with minor localdg1994-09-262-37/+217
| | | | | | changes. Obtained from: NetBSD
* Make Cyrix CPU flush internal cache any time it goes into hold state.pst1994-09-263-6/+6
| | | | (Meant to commit this a long time ago... oh well).
* Jim Babb's port of the AIC6360 driver.jkh1994-09-261-0/+2659
| | | | | Submitted by: babb Obtained from: NetBSD
* Jim Babb's port of the AIC6360 code.jkh1994-09-266-6/+15
| | | | | Submitted by: babb Obtained from: NetBSD
* init_sysent.c was missing the final newline.phk1994-09-263-5/+5
|
* Alterations to silence gcc -Wall. Some unused variables deleted.gpalmer1994-09-2610-116/+98
| | | | Reviewed by: davidg
* An ifdef almost hit where it was supposed to go. Joerg owes me a goodphk1994-09-253-18/+18
| | | | German beer I think...
* Removed unimplemented subr_rmap.c and unused references to it.dg1994-09-254-58/+3
|
* Inlined ins/outs functions.dg1994-09-255-263/+162
| | | | Obtained from: NetBSD
* Undo last change: the ins/outs functions DO NOT return a pointer!dg1994-09-252-14/+14
|
* While in the real world, I had a bad case of being swapped out for a lot ofphk1994-09-2532-227/+239
| | | | | | | | cycles. While waiting there I added a lot of the extra ()'s I have, (I have never used LISP to any extent). So I compiled the kernel with -Wall and shut up a lot of "suggest you add ()'s", removed a bunch of unused var's and added a couple of declarations here and there. Having a lap-top is highly recommended. My kernel still runs, yell at me if you kernel breaks.
OpenPOWER on IntegriCloud