summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2004-12-14Fix off-by-one. From FreeBSD r1.87. Also in NetBSD. Field being filledKenneth R Westerback
(sk_vpd_readonly) is not currently used, but the memory being tromped on might be. ok millert@.
2004-12-14indentation and some knf, no binary changeHans-Joerg Hoexer
ok + help markus
2004-12-14fix a comment.Hans-Joerg Hoexer
ok deraatd tdeval
2004-12-14sync with NetBSD, ok miod@Martin Reindl
2004-12-14move the ioctls w/ all the other ifaces; mcbride@ okMichael Shalayeff
2004-12-14typos; ok pefo@Alexander Yurchenko
2004-12-14Initialise init_addr in pf_map_addr() in the PF_POOL_ROUNDROBIN,Ryan Thomas McBride
prevents a possible endless loop in pf_get_sport() with 'static-port' Reported by adm at celeritystorm dot com in FreeBSD PR74930, debugging by dhartmei@ ok dhartmei@
2004-12-14move ioctls together w/ all other ifaces; mcbride@ okMichael Shalayeff
2004-12-14typhoon microcode file buildTheo de Raadt
2004-12-14txp(4) late firmware loading, written somewhere over the pacific, testedTheo de Raadt
by mcbride, reduces size of the kernel
2004-12-13move splsoftnet() below ACCEPT_FLAGS(), which contains a potential return.Daniel Hartmeier
from Max Laier.
2004-12-13Uncomment yds(4) which is reported to work by Jim Dew. OK deraadt@Todd C. Miller
2004-12-13Store the local ethernet address in struct arpcom and suddenly mc(4) startsClaudio Jeker
working. OK miod@
2004-12-13Dead meat.Miod Vallat
2004-12-13Remove duplicate declarations already in <sys/conf.h>, as well as duplicateMiod Vallat
pts/ptc declaration on majors 20 and 21. No functional change.
2004-12-13Use PAGE_SIZE instead of hardcoded 4096 value.Alexander Yurchenko
ok miod@ pefo@
2004-12-13zap lvalue assignment, okay markus@. approved miod@Marc Espie
2004-12-13endian fixes, ie, atu will now work on big endian architectures.David Gwynne
2004-12-13set the buffer up before we try to use it. fixes a panic on sparc64 whichDavid Gwynne
didn't manifest on i386 for some reason.
2004-12-13regenKevin Lo
2004-12-13add ATI Radeon Mobility 9200. ok deraadt@Kevin Lo
2004-12-13Oops. Missed one chunk when sync'ing with FreeBSD r1.30.Kenneth R Westerback
2004-12-13Use millisends rather than microseconds in parameters to timerKenneth R Westerback
functions, and ultra-conservative calculations, to avoid possible overflow issues. Also consistant with values passed in scsi requests. Whitespace and comment tweaks. Update FreeBSD tags now that we are sync'd to the latest version. From FreeBSD aic79xx.c r1.33, aic79xx.h r1.23, aic_osm_lib.h r1.4.
2004-12-13Set creation timestamps correctly on states learnt by pfsync that areChristopher Pascoe
more than a second old. ok mcbride@ henning@
2004-12-12unbreak after last commit to bge(4)Brad Smith
2004-12-12simplify slightly, kill lvalue weirdness that's not ANSI C.Marc Espie
okay nordin@
2004-12-12use quirk flags where appropriate.Brad Smith
Based on NetBSD driver ok krw@
2004-12-12wait till we have root mounted before trying to upload firmwaresDavid Gwynne
2004-12-12syncTheo de Raadt
2004-12-12support 3 buffalo pcmcia ns2k devices found in japan (one of which is CF)Theo de Raadt
2004-12-12remove old microcode includeTheo de Raadt
2004-12-12fix protoTheo de Raadt
2004-12-12a hack to read MAC address correctly on big endian; ok drahnPeter Valchev
however a correct clean way to do this should be found
2004-12-12backout the original method of reattaching a usb device now that we haveDavid Gwynne
something better and more flexible to use.
2004-12-12do a better reattachement of this deviceDavid Gwynne
2004-12-12get rid of uhub_reset_deviceDavid Gwynne
2004-12-12better way to do the reattachement of a deviceDavid Gwynne
2004-12-12add quirk lookup table, isn't used for anything at the momentBrad Smith
except printing the ASIC model and rev in dmesg. will be used instead of checking ASIC revs all over the place. From NetBSD
2004-12-11SADB_X_EXT_LIFETIME_LASTUSE is always definedMarkus Friedl
2004-12-11pass out the correct lifetime type on expireMarkus Friedl
2004-12-11count SADB_REGISTER only once per socketMarkus Friedl
2004-12-11match comments with reality and use 'null' for pointers in incore()Pedro Martelletto
2004-12-11Handle errors in pf_route{,6} more gracefully.Marco Pfatschbacher
Proposed by mcbride. ok henning@, mcbride@
2004-12-11nForce3-250, From: Brent Graveland <brent@graveland.net>, grange okHenning Brauer
2004-12-11syncHenning Brauer
2004-12-11nForce3-250 shitzHenning Brauer
2004-12-11- cosmeticsPeter Valchev
- don't call re_rxeof unneededly twice in some cases, from FreeBSD prodded by brad
2004-12-11rev 1.11Brad Smith
When stopping the various functional blocks of the chip, clear the bit and then read it back in a loop (with appropriate delays) waiting for it to read back clear. This fixes a problem where the bus would hang when bringing down the interface or changing interface flags on a system with a sufficiently fast CPU (e.g. 2GHz P4 Xeon). From NetBSD ok krw@
2004-12-11rev 1.51Brad Smith
When reading PHY regs over the i2c bus, the turnaround ACK bit is read one clock edge too late. This bit is driven low by slave (as any other input data bits from slave) when the clock is LOW. The current code did read the bit after the clock was driven high again. From FreeBSD
2004-12-11Invert the polarity of two tests in the recovery code that could causeKenneth R Westerback
the driver to issue a bus reset more quickly than intended. We want to wait if we find another SCB that could be the cause of this timeout, not proceed to a bus reset. This code is currently inside an #ifdef 0/#endif pair. From FreeBSD aic79xx.c r1.32.