summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-12-09add some missing boot_ pages;Jason McIntyre
2005-12-09adjust .Nd too;Jason McIntyre
2005-12-09this page is called `boot_hppa64', not `boot_hppa';Jason McIntyre
2005-12-09Unkown attributes need to be optional, if not issue a "unknown wellknownClaudio Jeker
attribute" error. While this check is already present in the error handling function it is not done while parsing. Found via regress, OK henning@
2005-12-09license cleanIan Darwin
2005-12-09Drop clause 3/4 as per i386 version.Jonathan Gray
ok aaron@ (Copyright holder).
2005-12-09ansi and deregister. No binary change.Jonathan Gray
2005-12-09back out 1.97. it was causing a freeze on boot with an older card. problemDavid Gwynne
found and cause narrowed down by jrrs. it looks like we're trying to submit a command during attach to be completed by polling. however it must be generating an interrupt for the command, which completes out of the interrupt handler behind the scenes of our polling. we just seem to sit there forever as a consequence. this is a bandaid over a real fix, but it'll do until i can talk marco into fixing it properly.
2005-12-09don't complain too often about 'redefinition of revision number',Joris Vink
specially when rev is actually NULL.
2005-12-09if we are removing a lock that's not present, just checkJoris Vink
out the file without complaining;
2005-12-09Don't disestablish a NULL interrupt handle after an incomplete attachment.Uwe Stuehler
ok fgsch@ brad@
2005-12-09Add support for Linksys HU200-TS, id found in Linux RT2570 driver.Jonathan Gray
2005-12-09regenJonathan Gray
2005-12-09Linksys HU200-TS.Jonathan Gray
2005-12-09Mention which chipset devices use on attach.Jonathan Gray
2005-12-09Add regression test for assignment in conditional contextChad Loder
2005-12-09Do not warn about assignment in conditional context if the assignmentChad Loder
expression is itself wrapped in parentheses. We use this idiom in our tree to indicate that the programmer knows and accepts that an assignment is happening. Idea suggested by deraadt
2005-12-09unused vars, my bad;Joris Vink
2005-12-09/* fall thru... */ -> /* FALLTHROUGH */Jonathan Gray
2005-12-09Remove surplus semicolon.Jonathan Gray
2005-12-09Reverse order of diff so that output makes more sense. kjell said heChad Loder
would commit this but he is too much of a slacker.
2005-12-09Test how lint deals with warning for signed/unsigned char conversionsChad Loder
involving character literals (as opposed to literals of other integral types).
2005-12-09Another case theo reminded me ofChad Loder
2005-12-09Don't ever complain when assigning a char literal to a char lvalue,Chad Loder
regardless of sign/unsign differences. In other words, even though C treats char literals as ints, if the rvalue is a literal inside single quotes, and the lvalue is any kind of char, then assume the programmer knows what he is doing.
2005-12-09Added aml_values for nodesJordan Hargrave
Started adding code for aml interpreter
2005-12-09Added aml_value and aml_node types for treeJordan Hargrave
Added flag macros for methods/fields ok marco@
2005-12-09disable ipmi in GENERIC until such times as it works everywhereBob Beck
2005-12-08Remove unused pcbb define.Miod Vallat
2005-12-08- remove unnecessary return at end of void functionBrad Smith
- remove unnecessary cast to void for splx From Andrey Matveev <evol at online dot ptt dot ru>
2005-12-08make authpf give up group privs before exec'ing pfctl - makes itBob Beck
so the new taint enforcement for /dev/fd/X opens don't kill it
2005-12-08Check fread() return value to get sane error message for too-smallTodd C. Miller
gmon header. Idea from Alexey Dobriyan
2005-12-08new sentence, new line;Jason McIntyre
2005-12-08Compile all libraries with -g; -g1 has some issues and isn't widely used;Mark Kettenis
-g is much more useful anyway. welcomed by many, ok deraadt@
2005-12-08complete and correct rcs locking functionality,Joris Vink
it was only done partially and as a bonus, completely wrong. seriously guys what was up with that?
2005-12-08two changes to the new ssh tunnel support. this breaks compatibilityReyk Floeter
with the initial commit but is required for a portable approach. - make the tunnel id u_int and platform friendly, use predefined types. - support configuration of layer 2 (ethernet) or layer 3 (point-to-point, default) modes. configuration is done using the Tunnel (yes|point-to-point|ethernet|no) option is ssh_config(5) and restricted by the PermitTunnel (yes|point-to-point|ethernet|no) option in sshd_config(5). ok djm@, man page bits by jmc@
2005-12-08Missing #include <limits.h>Claudio Jeker
2005-12-08Missing ntohs() in error path. Found via regress test.Claudio Jeker
2005-12-08When parsing open messages enforce that the optional parameter length isClaudio Jeker
equal to the size of the rest of the message and not only enforcing that no overflow happens. Found via regress test. OK henning@
2005-12-08keep options in order;Jason McIntyre
2005-12-08make `!command' a little clearer;Jason McIntyre
ok reyk
2005-12-08oops - forgot to remind tom to update usage();Jason McIntyre
2005-12-08Don't panic for pathological i/o sizes unless minphys() really isKenneth R Westerback
broken. Eliminate an unneeded variable and potential conversion issues in SCIOCCOMMAND code before calling physio. Similar to what NetBSD does. Fixes cdda2wav vs "Billie Holiday - Songs for Distingue Lovers" problem noted by Alexandre Ratchov. Tested by Alexandre. ok marco@ pedro@ deraadt@ mickey@
2005-12-08Avoid sign extend by casting to u_char *; from NetBSD via Guy Harris.Otto Moerbeek
Also change another cast, for the sake of consistency, as prompted by djm@ ok deraadt@ djm@ canacar@
2005-12-08Do not reset the IPL of the new process context frame in cpu_fork().Miod Vallat
2005-12-08and remove a bogus free spotted after previous commitTed Unangst
2005-12-08missing free, spotted by greg osterTed Unangst
2005-12-08- Enable the buffer manager on 5705 and newer ASICs.Brad Smith
- Enable the memory arbiter on 5705 and newer ASICs with 5714 family specific trick from Broadcom's Linux driver. Tested by Chuck McCollum and Ray Kohler on 575x ASICs.
2005-12-08This makes bge(4) only look for a PHY at id 1 as done by Broadcom'sBrad Smith
Linux driver and FreeBSD. This reverts a change I made based on NetBSD's bge(4) driver when adding the quirk table flags. Eliminate the BGE_QUIRK_ONLY_PHY_1 quirk flag. ok dlg@ krw@
2005-12-08BCM5780Brad Smith
2005-12-08eliminate the BGE_QUIRK_FEWER_MBUFS quirk flag and assume lower mbufs onBrad Smith
all 5704's. also remove a bit of code duplication in this section of code. ok krw@