summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-04-30- check for IFF_RUNNING being set before calling lge_init().Brad Smith
- call lge_setmulti() when enabling/disabling promisc mode or if the IFF_ALLMULTI flag is set.
2006-04-30rv not set. Sloppy but didn't matter.Marco Peereboom
pointed out by joris@
2006-04-30Bring the function list back into reality.Marco Peereboom
Several nits.
2006-04-30- Use SK_IS_GENESIS/SK_IS_YUKON where appropriateBrad Smith
- Remove SK_YUKON_FAMILY
2006-04-30- Interrupt handler now checks shared interrupt source and protectsBrad Smith
the interrupt handler from NULL pointer dereference which was caused by odd status word value. The status word can return 0xffffffff if the cable is unplugged while Rx/Tx/auto-negotiation is in progress. From FreeBSD
2006-04-30Update if_oerrors if we encounter watchdog error.Brad Smith
From FreeBSD
2006-04-30- Added/corrected register definitions for Yukon.Brad Smith
(Register information from Linux skge driver.) From FreeBSD
2006-04-30Prune remaining of the code, no binary changePedro Martelletto
2006-04-30Free one more resource on attach failure.Brad Smith
From NetBSD ok martin@
2006-04-30Prune getcwd_common() and vn_isunder(), no binary changePedro Martelletto
2006-04-30Prune proc_isunder() and sys___getcwd(), no binary changePedro Martelletto
2006-04-29no need for using rwlocks in dirhash. i was confused about the purposeTed Unangst
freebsd's mutexes served here, but they are only for smp protection. the code is careful not to block and needs no rwlocks. ok pedro and an assortment of testers
2006-04-29check mmap for failure. the helper functions using it return -1, butTed Unangst
callers do not yet check since printf() for example is not documented to return an error. some formatting cleanups. mostly ok deraadt millert
2006-04-29KNF bitsPedro Martelletto
2006-04-29fix build after timestamping addition; sparc pointed out by pvalchev@Christian Weisgerber
2006-04-29Change the compile time option -DINFO into a runtime option to get rideMats O Jansson
of some lint warnings. -moj
2006-04-29remove get_linux_name() and an accompanying variable;Martin Reindl
this function was a stub after the last cleanup
2006-04-29use calloc(3) instead of malloc(3) to allocate cpu state structs; it'sOtto Moerbeek
better style here; plus it prevents bogus data to show up on first display. report + ok pedro@
2006-04-29Add a few man pages, remove some old and fix MLINKSBjorn Sandell
2006-04-29bring back skip_fc SMI workaround for max6657 chips; ok kettenis@Damien Miller
2006-04-29Add umsm(4) and uslcom(4).Jonathan Gray
Reminded by deraadt@
2006-04-29Unbreak tree. -mojMats O Jansson
2006-04-29tweaks;Jason McIntyre
2006-04-29regenJonathan Gray
2006-04-29Add some more MCP04 ids, found in dmesg from ehunger at inventhorizon.comJonathan Gray
2006-04-29o Simplify ci by using strchr and strcspn instead of custom loops.Ray Lai
o Search for the ending `$' until the end of the line instead of the end of the string. OK niallo@ and xsa@, possibly joris@.
2006-04-29Add tests for keywords in ci, not enabled yet. We are still missingRay Lai
$Log$ functionality. OK xsa@
2006-04-29Check return values for all strlcpy, and strlcat calls.Ray Lai
OK xsa@ and probably others.
2006-04-29Clarify man pages to match -t behavior and pretty up usage strings.Ray Lai
OK xsa@ and jmc@.
2006-04-29Make ci store gmtime instead of localtime in RCS files, like GNU.Ray Lai
OK xsa@
2006-04-29Remove dead code.Ray Lai
OK niallo@
2006-04-29Add a close method to send the shutdown command, which presumablyJonathan Gray
put the adapter in a low power usage state.
2006-04-29Driver for Silicon Laboratories CP2101/CP2102 based serial adapters.Jonathan Gray
ok dlg@
2006-04-29regenJonathan Gray
2006-04-29Add a bunch of CP210x based serial adapters found in Linux driver.Jonathan Gray
2006-04-29With last pdisk and full functionality for mac68k now in place, startMartin Reindl
cleaning the maze of ifdef's not relevant for us. This round wipes most linux and/or MacOS-only bits, more to come.
2006-04-28remove -h; ok xsaJason McIntyre
2006-04-28add another variant of `rlog -z' usage (still not enabled);Xavier Santolaria
2006-04-28In mapped mode, when allowaperture != 0,also allow mmapping of theMatthieu Herrb
PC-style 0xa0000-0xb0000 region, as the nv X driver uses it. Noticed and patch tested by xsa@ and aanriot@.
2006-04-28add various tests for `rlog -z' (not enabled yet);Xavier Santolaria
2006-04-28In wsmux_set_display(), pass FWRITE instead of 0 when invoking ioctlMiod Vallat
WSKBDIO_SETMODE, or it will be ignored.
2006-04-28ensure NUL termination after read(); ok rayJared Yanovich
2006-04-28The W83627THF is pretty much identical to the W83637HF, not the W83627HF.Mark Kettenis
stolen from wilfried@
2006-04-28remove p flag from LINTFLAGS; ok cloder@Otto Moerbeek
2006-04-28when setting the interface address, only call em_init() if the interfaceBrad Smith
is not already running.
2006-04-28Fix a copy/paste error.Jonathan Gray
2006-04-28typo; from sstullJason McIntyre
2006-04-28and store a copy of the current interface flags in the softc.Brad Smith
this time without mixing in another diff.
2006-04-28do not log "interface with index 0 not found". ifindex == 0 happens onHenning Brauer
routes. same as in bgpd now. norby ok
2006-04-28Fix cast warning in sys/arch/i386/i386/acpi_machdep.c, caused by recent PAEDimitry Andric
checkins which change paddr_t for i386 into an unsigned long long. ok marco