summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-04-05- Fix for an issue with excessive collisions in half duplex mode.Brad Smith
- Nail the short cable problem the exact way National says it should be. - Make sure to clear any pending interrupts when we stop the interface. - Do not tell the hardware to send when there were no packets enqueued. - Close a theoretical race: By the time the watchdog comes around the interface may have been stopped, so we should not restart it. From FreeBSD Tested by ho@ on a few Soekris boxes and martin@ on a 900
2005-04-05spacing found while digging for bugsTheo de Raadt
2005-04-05-iyBrad Smith
2005-04-05nuke a second driver for ISA Intel EtherExpress PRO/10 cards whichBrad Smith
came from NetBSD and has never actually been used.
2005-04-04Nuke pmap_bootstrap_alloc(), not used anymore.Miod Vallat
2005-04-04A bare bone man page.Hans-Joerg Hoexer
2005-04-04Add initial blink/unblink harness.Marco Peereboom
Fix INQUIRY namespace polution. Little clean up and new debug messages.
2005-04-04Add blink and unblink but tell userland it is responsible for actually doing itMarco Peereboom
because the ami firmware does not support it. In this case bioctl(8) will do it with SES passthrough commands.
2005-04-04add blink and unblink.Marco Peereboom
2005-04-04fix cvs id tagsHans-Joerg Hoexer
2005-04-04Fix interrupt sharing on bge, by checking the same way the linuxBob Beck
driver does. ok deraadt@, testing and ok krw@, markus@
2005-04-04Add ipsecctl utility, work in progressHans-Joerg Hoexer
ok deraadt
2005-04-04Add sysctl for dumping the SPDHans-Joerg Hoexer
ok deraadt, ok markus some time ago
2005-04-04syncTheo de Raadt
2005-04-04spacing; ok cloderTheo de Raadt
2005-04-04Document PT_[GS]ETXMMREGS.Mark Kettenis
ok jmc@
2005-04-04fix byteorder confusionHans-Joerg Hoexer
ok cloder ho
2005-04-04use .hMarco Peereboom
2005-04-04Add .h for some cleanupMarco Peereboom
2005-04-04remove noise statistics. this was generating tons of useless interrupts.Damien Bergamini
2005-04-04syncDamien Bergamini
2005-04-04fix ids. ok jsg@ deraadt@Damien Bergamini
2005-04-04new id for PRO/Wireless 2915ABG. fix desc for PRO/Wireless adapters.Damien Bergamini
2005-04-04shrinkTheo de Raadt
2005-04-04print lladdr instead of address; pointed out by a fewTheo de Raadt
2005-04-04add rssadapt(9) to SEE ALSO in ieee80211(9), and vice versa;Jason McIntyre
ok jsg@
2005-04-04apply some fixes originally mailed to jsg@;Jason McIntyre
2005-04-04tcpdump is section 8, not 1;Jason McIntyre
2005-04-04whitespace;Jason McIntyre
2005-04-04realpath is section 3, not 2;Jason McIntyre
2005-04-04+.Xr readlink 1 ,Jason McIntyre
2005-04-04On auth crypt verify not only the main key is allowed but all configured keys.Claudio Jeker
This makes changing keys a piece of cake -- if ospfd would support reloads. Found and patch from Jason Ackley.
2005-04-04convert to getopt(); ok millert@, otto@Robert Nagy
2005-04-04- Delete implicit * 4 operation in bus_space offset calculationKenji Aoyama
- Change assembler codes to C codes tested by myself, ok by miod@
2005-04-04Some documentation for the 802.11 stack written byJonathan Gray
Bruce M. Simpson and Darron Broad for FreeBSD, adapted to reflect the state of our stack. Help from and ok jmc@
2005-04-04Fix an uninitialized variable in pmap_enter(), affecting only unmanaged pages.Miod Vallat
2005-04-04Allow pmap_expand_kmap() to fail in low memory conditions.Miod Vallat
2005-04-04nlist.h not neededTheo de Raadt
2005-04-04nlist.h not neededTheo de Raadt
2005-04-04nlist.h not neededTheo de Raadt
2005-04-04unbreak; ok pval@Damien Miller
2005-04-04ugh. vax has no wscons either; pt out by deraadt@Michael Shalayeff
2005-04-03check powerhook_establish() result, and pass the correct softc to it.Uwe Stuehler
did not matter in this case because the softc's are aligned; ok dlg@
2005-04-03Implemente PT_[GS]ETXMMREGS ptrace(2) requests on i386.Mark Kettenis
ok deraadt@
2005-04-03if dhcp is used to get an address on any interface, ignore /etc/mygateTheo de Raadt
ok krw (this lets us do something rather cool with the zaurus in particular)
2005-04-03More shrinkage with a bit of code factoring.Kenneth R Westerback
2005-04-03Make the processing of patterns collected from files specified by -fJared Yanovich
delayed so options that affect pattern-building (such as -w) can be applied evenly to all such patterns. ok and help otto, ok millert
2005-04-03Test for egrep -w "foo|bar"Otto Moerbeek
2005-04-03Protect begin and end of word markers added to the pattern whenOtto Moerbeek
using the -w option with parentheses, to avoid operators in the expressions binding to the markers. Compare [[:<:]]foo|bar[[:>:]] and [[:<:]](foo|bar)[[:>:]]. Problem spotted by aaron@; ok millert@ aaron@ jaredy@
2005-04-03Report quotas > 10GB in a readable way. Diff based on PR 2836.Otto Moerbeek
ok deraadt@