Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-04-18 | vm/vm.h not needed anymore | Michael Shalayeff | |
2000-04-18 | typo | Michael Shalayeff | |
2000-04-18 | split dc driver into bus dependent and bus independent (pci) parts | Jason Wright | |
(cardbus to come later). | |||
2000-04-18 | audio type 2 is called harmony and could come w/ 2 fax/modem/voice channels, ↵ | Michael Shalayeff | |
or isdn | |||
2000-04-18 | split fxp into bus independent and dependent (pci) parts (cardbus to come) | Jason Wright | |
2000-04-18 | If the user does a huge I/O split the genio logging into smaller chunks | Artur Grabowski | |
to avoid allocating a huge buffer which could lead to kmem starvation. | |||
2000-04-18 | Double usage of random() in the pseudo device to avoid setting | Hugh Graham | |
every 32nd bit to zero in the output. Checked by mickey. | |||
2000-04-18 | Set MII parameters for the other 3Com CardBus cards, not just 'C' revision. | Aaron Campbell | |
2000-04-18 | Stats for bridge output too. | Angelos D. Keromytis | |
2000-04-18 | Sanity check on dequeued mbufs, also keep track of correct interface | Angelos D. Keromytis | |
for statistics purposes. | |||
2000-04-18 | cd detach | Constantine Sapuntzakis | |
2000-04-18 | Add a few newlines for readability. | Angelos D. Keromytis | |
2000-04-18 | sd and scsibus detach | Constantine Sapuntzakis | |
cdlock/cdunlock now through disk_lock/disk_unlock | |||
2000-04-18 | copyright | Jason Wright | |
2000-04-18 | remove #ifdef {free,net}bsd stuff | Jason Wright | |
remove most of the statics | |||
2000-04-17 | fix version for some endianess-challenged compaqs; via linux | Michael Shalayeff | |
2000-04-17 | revisit in6_ifattach(). (1) make it more persistent about initializaing an | Jun-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-17 | Whoops, missed a few. | Aaron Campbell | |
2000-04-17 | Move some misplaced periods outside of the parentheses. | Aaron Campbell | |
2000-04-16 | Remove atapiscsi* at umass?; csapuntz@ | Aaron Campbell | |
2000-04-16 | sync | Theo de Raadt | |
2000-04-16 | rename an RCC product | Theo de Raadt | |
2000-04-16 | permit compiling kernel without pccom or com | Theo de Raadt | |
2000-04-16 | jakob, please be more careful | Theo de Raadt | |
2000-04-16 | sync | Theo de Raadt | |
2000-04-15 | Fix sys_sync to actually sync all file systems. | Constantine Sapuntzakis | |
2000-04-15 | pcidevs.h | Theo de Raadt | |
2000-04-15 | more gear | Theo de Raadt | |
2000-04-15 | add urio(4) | Jakob Schlyter | |
2000-04-15 | urio(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-15 | comment out USB ethernet adapters (orphaned otherwise) | Jakob Schlyter | |
2000-04-15 | fix TAILQ_REPLACE, add TAILQ_FOREACH_REVERSE; alaric@exoinc.com | Theo de Raadt | |
2000-04-14 | Sync with NetBSD. | Aaron Campbell | |
2000-04-14 | fix compilation with -DAUDIO_DEBUG; vonminde@cs.colorado.edu | Todd C. Miller | |
2000-04-14 | Move the PCIBIOS options line next to the CardBus bus support stuff, and add a | Aaron Campbell | |
note saying it may need to be uncommented for things to work. | |||
2000-04-14 | this should fix the alpha; closes PR kernel/1189 | Michael Shalayeff | |
2000-04-14 | not EXPORT | Jason Wright | |
2000-04-14 | sync | Theo de Raadt | |
2000-04-14 | bluesteel networks products | Theo de Raadt | |
2000-04-14 | sync | Theo de Raadt | |
2000-04-14 | indent | Theo de Raadt | |
2000-04-14 | make "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-14 | for layer 3 protocols that does not support path MTU discovery | Jun-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-14 | Some documentation for future generations of maintainers | Constantine Sapuntzakis | |
2000-04-14 | This fixes EISA bus_space API. The bus dma tag was never initialized!!! | Steve Murphree | |
2000-04-13 | Add support for Adaptec 2930U2 controller. | Steve Murphree | |
2000-04-13 | remove bit definitions and associated macros for hifn_command.flags since it | Jason Wright | |
doesn't exist anymore. | |||
2000-04-13 | - let hifn_process() compute the mask bits for the command descriptors | Jason 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-13 | remove unnecessary variable | Jason Wright | |
2000-04-13 | - complete rewrite of hifn_write_command() to avoid copies by removing the | Jason Wright | |
hifn_build_command() middle layer for building the command descriptor - remove an unnecessary assignment in hifn_process() |