summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2000-04-18vm/vm.h not needed anymoreMichael Shalayeff
2000-04-18typoMichael Shalayeff
2000-04-18split dc driver into bus dependent and bus independent (pci) partsJason Wright
(cardbus to come later).
2000-04-18audio type 2 is called harmony and could come w/ 2 fax/modem/voice channels, ↵Michael Shalayeff
or isdn
2000-04-18split fxp into bus independent and dependent (pci) parts (cardbus to come)Jason Wright
2000-04-18If the user does a huge I/O split the genio logging into smaller chunksArtur Grabowski
to avoid allocating a huge buffer which could lead to kmem starvation.
2000-04-18Double usage of random() in the pseudo device to avoid settingHugh Graham
every 32nd bit to zero in the output. Checked by mickey.
2000-04-18Set MII parameters for the other 3Com CardBus cards, not just 'C' revision.Aaron Campbell
2000-04-18Stats for bridge output too.Angelos D. Keromytis
2000-04-18Sanity check on dequeued mbufs, also keep track of correct interfaceAngelos D. Keromytis
for statistics purposes.
2000-04-18cd detachConstantine Sapuntzakis
2000-04-18Add a few newlines for readability.Angelos D. Keromytis
2000-04-18sd and scsibus detachConstantine Sapuntzakis
cdlock/cdunlock now through disk_lock/disk_unlock
2000-04-18copyrightJason Wright
2000-04-18remove #ifdef {free,net}bsd stuffJason Wright
remove most of the statics
2000-04-17fix version for some endianess-challenged compaqs; via linuxMichael Shalayeff
2000-04-17revisit in6_ifattach(). (1) make it more persistent about initializaing anJun-ichiro itojun Hagino
interface (2) cleanup interface id selection. run NUD on p2p interface (required by spec for bidir p2p interface). add "ndp -i interface" (can tweak per-interface ND flag). (sync with more recent kame)
2000-04-17Whoops, missed a few.Aaron Campbell
2000-04-17Move some misplaced periods outside of the parentheses.Aaron Campbell
2000-04-16Remove atapiscsi* at umass?; csapuntz@Aaron Campbell
2000-04-16syncTheo de Raadt
2000-04-16rename an RCC productTheo de Raadt
2000-04-16permit compiling kernel without pccom or comTheo de Raadt
2000-04-16jakob, please be more carefulTheo de Raadt
2000-04-16syncTheo de Raadt
2000-04-15Fix sys_sync to actually sync all file systems.Constantine Sapuntzakis
2000-04-15pcidevs.hTheo de Raadt
2000-04-15more gearTheo de Raadt
2000-04-15add urio(4)Jakob Schlyter
2000-04-15urio(4) - Diamond Multimedia RIO 500 (from NetBSD)Jakob Schlyter
This driver will eventually go away as it really should be implemented using ugen(4) instead.
2000-04-15comment out USB ethernet adapters (orphaned otherwise)Jakob Schlyter
2000-04-15fix TAILQ_REPLACE, add TAILQ_FOREACH_REVERSE; alaric@exoinc.comTheo de Raadt
2000-04-14Sync with NetBSD.Aaron Campbell
2000-04-14fix compilation with -DAUDIO_DEBUG; vonminde@cs.colorado.eduTodd C. Miller
2000-04-14Move the PCIBIOS options line next to the CardBus bus support stuff, and add aAaron Campbell
note saying it may need to be uncommented for things to work.
2000-04-14this should fix the alpha; closes PR kernel/1189Michael Shalayeff
2000-04-14not EXPORTJason Wright
2000-04-14syncTheo de Raadt
2000-04-14bluesteel networks productsTheo de Raadt
2000-04-14syncTheo de Raadt
2000-04-14indentTheo de Raadt
2000-04-14make "option TCPDEBUG" kernel compile.Jun-ichiro itojun Hagino
PR1186 from "Robert Mooney" <rjmooney@atl.mediaone.net>. (printf format change is not bringed in - i'm unsure about it)
2000-04-14for layer 3 protocols that does not support path MTU discoveryJun-ichiro itojun Hagino
(I mean, IPv4) do not try to use rmx_mtu on routing table. this symptom was introduced by rmx_mtu initialization (necessary for IPv6 path MTU discovery) in net/route.c. now prior behavior is recovered. From: Hugh Graham <hugh@openbsd.org> there are several question about mssdflt semantics, though: Question 1: with the current code, mssdflt does not override rmx_mtu value (mssdflt overrides interface mtu only). should we override rmx_mtu by mssdflt as well? Question 2: with the current code, mssdflt overrides mss computed from if mtu, only when the destination is IPv4 non-local. is it safe enough? we may want to use mssdflt, whenever we are uncertain. mss = if mtu - hdrsiz; if (IPv4 non-local destination) mss = min(mss, mssdflt);
2000-04-14Some documentation for future generations of maintainersConstantine Sapuntzakis
2000-04-14This fixes EISA bus_space API. The bus dma tag was never initialized!!!Steve Murphree
2000-04-13Add support for Adaptec 2930U2 controller.Steve Murphree
2000-04-13remove bit definitions and associated macros for hifn_command.flags since itJason Wright
doesn't exist anymore.
2000-04-13- let hifn_process() compute the mask bits for the command descriptorsJason Wright
(falls under the category of compute it once and use it). - just copy the computed masks in hifn_write_command() - remove the now unnecessary flags field from hifn_command
2000-04-13remove unnecessary variableJason Wright
2000-04-13- complete rewrite of hifn_write_command() to avoid copies by removing theJason Wright
hifn_build_command() middle layer for building the command descriptor - remove an unnecessary assignment in hifn_process()