summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2006-10-29Add first TX path and active scan bits. Don't expect to much yet.Marcus Glocker
ok claudio@
2006-10-29LFS and FFS shared the same read and write vnops, throughThordur I. Bjornsson
the macro games in ufs_readwrite.c (LFS_READWRITE) now that LFS has gone, make these functions ffs specific and move them into ffs/ffs_vnops.c zapping ufs_readwrite.c in the process. Also, remove lfs fields from the inode and ufsmount structs. ok toby@,deraadt@,pedro@ testing and ok krw@
2006-10-29Remove redundant if (msg) {} block around invocations ofKenneth R Westerback
iso_disklabelspoof() and udf_disklabelspoof(). Use (msg && iso_disklabelspoof()) instead. Makes more arch's textually consistant. No functional change.
2006-10-28We don't currently write a disklabel into an OpenBSD ('A6') DOS MBRKenneth R Westerback
extended partition except on alpha, hppa, hppa64 and mips64. So don't spoof extended partitions as 'a' and try to read a disklabel from them. Make all archs consistant. When we can boot from extended partitions we can change to reading and writing disklabels from them. This means the first OpenBSD ('A6') extended partition will now be ignored during spoofing, just as subsequent ones have always been. Feedback from tom@, weingart@ and deraadt@.
2006-10-28M_TRAILINGSPACE(m) returns 0 if M_READONLY(m) is true,Brad Smith
so no need to call both. From tsutsui@NetBSD
2006-10-28Dont initialize the nm_srtt and nm_sdrtt arraysThordur I. Bjornsson
out of bounds. ok pedro@
2006-10-28Make sure we call _mcount throught the PLT when generating PIC code.Mark Kettenis
ok drahn@, miod@
2006-10-28Make this work.Mark Kettenis
With help from drahn@ and mickey@.
2006-10-28- Use better names for the variables containing the timeouts in Hz instead ofMarc Balmer
just t1-t10. - Remove some unused variables. - Restructure some functions to remove some levels of indentation.
2006-10-28Fix handling of errors wrt to MINDEX. From NetBSD bpf_filter 1.32;Otto Moerbeek
ok henning@ deraadt@ canacar@
2006-10-27Hide hardware cursor on 4bpp model.Miod Vallat
2006-10-27Add a few UltraSPARC-III ASI's.Mark Kettenis
2006-10-27mcbride forgot to pull in the newly created pf_ruleset.cTheo de Raadt
2006-10-27If the lid is closed during boot, blank screen immediately.Miod Vallat
2006-10-27Split ruleset manipulation functions out into pf_ruleset.c to allow them toRyan Thomas McBride
be imported into pfctl. This is a precursor to separating ruleset parsing from loading in pfctl, and tons of good things will come from it. 2 minor changes aside from cut-n-paste and #define portability magic: - instead of defining the global pf_main_ruleset, define pf_main_anchor (which contains the pf_main_ruleset) - allow pf_find_or_create_ruleset() to return the pf_main_ruleset if it's passed an empty anchor name. ok henning dhartmei
2006-10-27udcf(4) degraded the sensor status from OK to WARNING on the first receiptionMarc Balmer
error, which is to fast as this does not give ntpd the opportunity to use the sensor value. If we decode a valid time information, it has to be available to applications for some minimal time. I choose a value of 5 minutes. If we do not receive any new valid time information during this period, the sensor will be degraded to WARNING, and after another fifteen minutes it will be further degraded to CRITICAL. "makes sense to me" henning@, "sure" deraadt@
2006-10-27Partially revert 1.33 the range calculation change for banditGordon Willem Klok
unfourtunately breaks some machines found the hard way by xsa@ and mbalmer@. ok mbalmer@
2006-10-27regenBrad Smith
2006-10-27add the NVIDIA GeForce 6100 nForce 430 and some more MCP61 devices.Brad Smith
2006-10-26Set Rx early threshold and Tx DMA thesholds.Brad Smith
From Linux via FreeBSD
2006-10-26Fix this by commiting the proper revision of the bge_encap() diff.Brad Smith
2006-10-26bge_encap():Brad Smith
- Move TX ring full sanity check further up and check the number of DMA segments from the DMA map, instead of counting the DMA segments in the for loop and breaking out later. - Unload the DMA map if encountering an error condition. Tested by brad@ sturm@ wilfried@
2006-10-26fix fxp(4) so that it will reset the link when you change the speed... ThisBrad Smith
will fix a problem where you boot w/ the default of autoselect, but then set the speed to 100/full, the switch will keep the autoselect/100/full negotiation... This will continue to work till someone resets the switch or unplugs the cable resulting in the switch failing to autoneg and falling back to 100/half, causing a hard to track down duplex mismatch.. From nCircle Network Security, Inc. via FreeBSD Tested by ckuethe@, pedro@, brad@, craig at creative dot com dot au
2006-10-26typos; from bret lambertJason McIntyre
2006-10-26Driver for the AMD Geode LX series processor security block.Tom Cosgrove
Currently just uses the RNG; AES support to be added later. ok deraadt@
2006-10-26Move from a switch based baud rate selection to range checkingJonathan Gray
based selection as hardware is not limited to fixed rates. Suggested by deraadt
2006-10-26Driver for MosChip MCS7703 based USB Serial devices.Jonathan Gray
Support for hardware flow control not yet implemented.
2006-10-26regenJonathan Gray
2006-10-26MosChip serial & EthernetJonathan Gray
2006-10-26do the minimal initialization of the firmware so that ASF alwaysBrad Smith
works. From ambrisko@FreeBSD
2006-10-25Don't convert buffer/field output to integerJordan Hargrave
Caused problems with strings/index on some systems
2006-10-25added deref/index for integer typesJordan Hargrave
2006-10-25Resort some functions, tiny cleanup.Marcus Glocker
ok claudio@
2006-10-25Make sure we actually flush the I-TLB on UltraSPARC-III by doing it fromMark Kettenis
the primary context instead of the secondary context. ok miod@
2006-10-25pr5274 fix localhost dos with oversized valuesTed Unangst
ok deraadt
2006-10-25Ooops, forgot to add radio mtap includes.Marcus Glocker
2006-10-25allow up to 16 pflog interfaces, ok mcbrideHenning Brauer
2006-10-25add a "u_int8_t logif" to struct pfrule to select to which pflog interfaceHenning Brauer
logs go. ok mcbride
2006-10-25Add ramdisk hooks portion.Dale Rahn
2006-10-25replace a few more instances of hand rolled code with theBrad Smith
LIST_FOREACH macro.
2006-10-25Ramdisk kernel generated from GENERICDale Rahn
2006-10-25make majors reflect reality.Dale Rahn
2006-10-24Condense get functions into a single function. This is ahead of retrievingMarco Peereboom
remaining threshold values. ok jordan
2006-10-24remove useless chunks of code that do nothing, since endian adjustmentsBrad Smith
only have to be made for little endian architectures.
2006-10-24KNFMarco Peereboom
2006-10-24Work around PR 5268 by printing "bad string" instead of panicing. There isMarco Peereboom
no meanigful way of calling aml_die so we need to isolate these machines instead. ok jordan
2006-10-24Fix RX DMA handling; until now the card stopped receiving interruptsMarcus Glocker
after it went one time through the RX ring (256 descriptors). Also reset RX rings correctly after ifconfig down / up. "COMMIT IT!!!" claudio@
2006-10-24Hook brand new trace function into ddb. Now users can send useful tracesMarco Peereboom
without enabling acpi debug. Usage "machine acpi trace". ok jordan
2006-10-24Added stack trace to aml_die+acpidebugJordan Hargrave
ok marco@
2006-10-24Fix indentation to not imply, that USB_ATTACH_ERROR_RETURNMoritz Jodeit
is an argument of printf(). No binary change.