summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2001-11-27match on buffalo and emtac wavelans; from netbsdMichael Shalayeff
2001-11-27add an emtac wavelanMichael Shalayeff
2001-11-27fix an error in sosend() that could make a transient error permant.Niels Provos
verified with both netbsd and freebsd. from netbsd: Tue Jun 8 02:39:57 1999 UTC by thorpej In sosend(), if so_error is set, clear it before returning the error to the process (i.e. pre-Reno behavior). The 4.4BSD behavior (introduced in Reno) caused transient errors to stick incorrectly. This is from PR #7640 (Havard Eidnes), cross-checked w/ FreeBSD, where Bill Fenner committed the same fix (as described in a comment in the Vat sources, by Van Jacobsen).
2001-11-27add a couple of buffalo wavelans, from netbsdMichael Shalayeff
2001-11-27do pf_route() before logging in case the logging created a bogus ruleMike Frantzen
(fixes a recent panic) OK dhartmei@ jasoni@ mpech@
2001-11-27change socket connection queues to use TAILQ_Niels Provos
from NetBSD: Wed Jan 7 23:47:08 1998 UTC by thorpej Make insertion and removal of sockets from the partial and incoming connections queues O(C) rather than O(N).
2001-11-27kill breadaArtur Grabowski
2001-11-27Use pools for pmap and pv_entry structures.Miod Vallat
2001-11-27Adapt to include files changes.Miod Vallat
2001-11-27A few cleanups to have less include files include each other.Miod Vallat
2001-11-27Use symbolic constants to identify ddb traps.Miod Vallat
Fix a comment as well.
2001-11-27Declare symbolic names for the various interrupts used by ddb.Miod Vallat
Make this file #include-able from locore.
2001-11-27regen for UBC changesArtur Grabowski
2001-11-27Merge in the unified buffer cache code as found in NetBSD 2001/03/10. TheArtur Grabowski
code is written mostly by Chuck Silvers <chuq@chuq.com>/<chs@netbsd.org>. Tested for the past few weeks by many developers, should be in a pretty stable state, but will require optimizations and additional cleanups.
2001-11-27Move the declaration of EH_DEBUG and ERRATA__XXX_USR to the kernelMiod Vallat
configuration files.
2001-11-27garbage collect sc_nticksJason Wright
2001-11-27remove sc_enaddr and just put the ethernet address into arpcom.ac_enaddr.Jason Wright
2001-11-26cache the last deallocated voice and reuse on the next open.Michael Shalayeff
this is to preserve the dac settings in between the openings, by the mp3 playing software, in particular. ho@ help and testing.
2001-11-26remove static on functions.Michael Shalayeff
from netbsd: Don't use a static variable in the power hook. It doesn't work with more than one device.
2001-11-26add fastroute options similar to what is found in ipfjasoni
ok dhartmei@, frantzen@
2001-11-26Trident 4DWAVE-DX/NX, SiS 7018, ALi M5451 Sound Driver; from SOMEYA ↵Michael Shalayeff
Yoshihiko and KUROSAWA Takahiro; tested by Matt Behrens <matt@zigg.com>
2001-11-26add sis 7018Michael Shalayeff
2001-11-26allow pasting chars w/ codes >127 w/ mouse; from Denis Afonin <dfa@solo.ee>Michael Shalayeff
2001-11-25Extend the magic formulae to choose option FPSP only if 68040 processorMiod Vallat
support needed.
2001-11-25Typos.Miod Vallat
2001-11-25Need <machine/cpu.h> to be sure to bring userret() prototype for all ports.Miod Vallat
2001-11-25Be cross-compilation friendly.Miod Vallat
2001-11-25regenMichael Shalayeff
2001-11-25nikon e880; from Dan Weeks <danimal@danimal.org>Michael Shalayeff
2001-11-25Remove comments which only apply to the HP MMU found on HP300 modelsMiod Vallat
318, 319, 320 and 350, which bear no sense in the mvme68k world.
2001-11-25Oops, commited this file from the wrong tree.Miod Vallat
2001-11-25Harmonize userret() prototypes across m68k arches.Miod Vallat
XXX The userret() code is not factorized out yet, as this will require XXX insane amiga cleaning work.
2001-11-24KNFTheo de Raadt
2001-11-24Harmonize boot() logic across arches:Miod Vallat
- ensure RB_DUMP | RB_HALT will cause a dump - or RB_HALT if (cold) While there, honor RB_TIMEBAD on sparc64.
2001-11-23regenJakob Schlyter
2001-11-23add 3Com Wireless LAN PC CardJakob Schlyter
2001-11-23new vscom puc devices; lists-openbsdtech@bsws.deTheo de Raadt
2001-11-23new vscom puc devicesTheo de Raadt
2001-11-23Remove splsched() declaration and related stuff.Miod Vallat
2001-11-23dev{cons,cninit.c} are mandatory.Miod Vallat
2001-11-23Typo in comment.Miod Vallat
2001-11-22Use pmap_kenter_pa in pmap_map..Artur Grabowski
Remove the (commented out) body of pmap_copy, it's very unlikely that it will be ever used, and right now it's just confusing.
2001-11-22more pmap_enter vs. pmap_kenter.Artur Grabowski
2001-11-22simplify the iommu page table mapping. use pmap_kenter.Artur Grabowski
2001-11-22Map the interrupt enable register with pmap_kenterArtur Grabowski
2001-11-22Use pmap_map to map the msg buffer.Artur Grabowski
2001-11-22Now that pmap_enter is allowed to fail in some cases, allowArtur Grabowski
pmap_enk* and pmap_enu* to fail and return failure to pmap_enter. pmap_enter will panic when PMAP_CANFAIL is not set, but the alternative is worse. Besides, it shouldn't happen.
2001-11-22Use pool to allocate pv list entries.Artur Grabowski
2001-11-22Don't check for PMAP_NC in pmap_zero_page.Artur Grabowski
Also make the code in there slightly more efficient.
2001-11-22Simplify pmap_is_* and pmap_clear_*.Artur Grabowski
This should also allow sun4/sun4c to work a bit better.