summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-10-04Try to nail elusive arm/include/disklabel.h at third attempt.Kenneth R Westerback
2006-10-04More tidying up after bad144. Remove references in comments andKenneth R Westerback
don't include dkbad.h when nothing in it is used. Missed arm/include/disklabel.h first time around.
2006-10-04Remove the three instances of :sf:, since we no longer support bad144Kenneth R Westerback
sector forwarding on those ide/esdi disks.
2006-10-04Zap bad144 bad sector info in disklabels. Sparsely used if at all forKenneth R Westerback
a few obsolete and easily replaced disk models. And didn't work anyway according to Bob, who has tried. ok beck@
2006-10-04needs bnx firmware tooTheo de Raadt
2006-10-04bnx firmwareTheo de Raadt
2006-10-04document /etc/firmware/bnxTheo de Raadt
2006-10-04Use loadfirmware(9) to get /etc/firmware/bnx instead of hard-coding aTheo de Raadt
gigantic firmware into the kernel; checked by brad
2006-10-03Cease printing mpbios vendor/version strings on AMD64 as well.Gordon Willem Klok
2006-10-03Cease printing the mpbios vendor/version strings, smbios provides muchGordon Willem Klok
more informative information. ok in principal deraadt@, krw@, mickey@ this change with newline fixes ok krw@
2006-10-03MLINKS new acpi stuff.Michael Knudsen
2006-10-03Document acpiac, acpiec, and acpitz.Michael Knudsen
From Dmitri Alenitchev with tweaking from jmc and myself. ok jmc
2006-10-03add in a missing piece of the ASIX AX88190 chipset workaround to dp8390_init().Brad Smith
2006-10-03Simplify the code dealing with the mbuf chain in dp8390_get().Brad Smith
From bad@ & mycroft@ NetBSD Tested by nick@
2006-10-03regenPedro Martelletto
2006-10-03Introduce daddr64_t and use it for physical block numbersPedro Martelletto
Okay weingart@, "I'm game with putting my name on it" dlg@
2006-10-03make sure to call SLIST_INIT on sc->rx_freelist.Damien Bergamini
sanity check length field in RX descriptors.
2006-10-03don't use IF_PREPEND() on altq's.Damien Bergamini
use IFQ_POLL()/IFQ_DEQUEUE() logic instead as described in altq(4). tested by jolan@ on macppc "diffs look ok" brad@
2006-10-03move the advice about smart, readattr, and sec* to before the commandJason McIntyre
list, since it doesn;t make sense to put these in any one single command description (nor indeed to repeat them for every command); ok grange
2006-10-03Enable altq in acx(4) the tx path is already handling all cases correctly.Claudio Jeker
OK mglocker@
2006-10-03Do not use IF_PREPEND. Instead use IFQ_POLL and IFQ_DEQUEUE. This shouldClaudio Jeker
"fix" altq. OK mglocker@
2006-10-03correct check for proper return value of dup2Kurt Miller
2006-10-03provide a summary of the available commands, since there's a ton ofJason McIntyre
them;
2006-10-03put the command list into some semblance of order;Jason McIntyre
2006-10-03when using SHA1Data(), no CTX is needed, so zap that line in the exampleAlexander von Gernler
ok jmc@
2006-10-03syncTheo de Raadt
2006-10-03Last Part of file descriptor race and deadlock corrections.Kurt Miller
When a fd enters the closing state prevent any threads from polling the fd and reschedule the thread with the closing_fd flag set. This fixes a class of deadlocks where a thread is blocked waiting for data (that may never arrive) and a later thread calls close() or dup2() on the fd. okay brad@
2006-10-03upon success dup2() returns newfd so don't overwrite it withKurt Miller
_thread_fd_table_init()'s return value and blow it away. fixes firefox plugin problem noticed by jolan@
2006-10-03Don't load bad144 bad sector information into disklabels for archs thatKenneth R Westerback
don't have wd* in GENERIC, since wd* is the only place such info is being used. First step of eliminating bad144 bad sector info from all disklabels. 'go go go' deraadt@
2006-10-03strtonum() with INT_MAX intead of LONG_MAX, problem pointed out by ↵Theo de Raadt
pierre-yves@spootnik.org
2006-10-02Fix error messages, okay ray@ deraadt@Pedro Martelletto
2006-10-02Zap unused MLME routines. Probably they were just used in WPA mode.Marcus Glocker
ok claudio@
2006-10-02Fill OctoberJasper Lievisse Adriaanse
ok mickey
2006-10-02Fully sort MLINKS.Michael Knudsen
ok jmc
2006-10-02various tweaks to smarten this page up a bit;Jason McIntyre
2006-10-02Remove old ACPI device page builds (reorder build order alphabeticallyMichael Knudsen
while there). MLINKS+= the new acpi(4) page to the ACPI device page names. ok jmc
2006-10-02Remove old ACPI pages.Michael Knudsen
2006-10-02Merge the ACPI device man pages into acpi(4) after discussion with andMichael Knudsen
input from jmc and marco. ok jmc marco
2006-10-02standard EXAMPLES;Jason McIntyre
2006-10-02simplify SYNOPSIS and sync usage();Jason McIntyre
2006-10-02Simplify device attachment. From brad@ with a tiny correction.Marcus Glocker
2006-10-02sync the ServerWorks ids.Brad Smith
2006-10-02regenBrad Smith
2006-10-02revert this change. after a little more digging I found some conflictingBrad Smith
information. I'm not really sure if this is a compat mode id or not. so just revert back to SATA and label it with the chipset it comes from.
2006-10-02One <arm/exec.h> to bind them all.Miod Vallat
2006-10-02regenBrad Smith
2006-10-02gah. ensure the entries are unique.Brad Smith
2006-10-02add the ServerWorks PCIe bridge ids and correct an unknown ServerWorksBrad Smith
SATA entry; it seems this id is the HT-1000 SATA controller but in an IDE compat mode depending on a BIOS setting.
2006-10-02Fix off by one comparison. FSMAXTYPES is the last valid index intoKenneth R Westerback
fstypesnames[], but that entry is NULL. The last valid file system name is at fstypesnames[FSMAXTYPES-1]. Encountered and diagnosed by pedro@. ok pedro@ deraadt@
2006-10-02get rid of a boolean typedef. this is c, we have ints, deal with it.David Gwynne
ok marco@ krw@