Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-12-13 | correct implementation of pthread_cond_signal. it doesn't raise the sem | Ted Unangst | |
value if there are no waiters. | |||
2005-12-13 | if_san_common.c | Can Erkin Acar | |
2005-12-13 | do some silly de-linting | Kjell Wooding | |
2005-12-13 | It would seem that some cards do not get reset correctly if RESET is | Uwe Stuehler | |
held only for 10us but the same cards work just fine on other platforms. A really long delay lets those cards reset correctly on zaurus, but it is only an ugly workaround until the socket setup is fixed. ok for now fgs@, drahn@ | |||
2005-12-13 | If you're going to pass a length parameter, you should use it. | Kjell Wooding | |
2005-12-13 | Added new objtype values to amltypes | Jordan Hargrave | |
Added evaluation for match object, logical operations, conversions ok marco@ | |||
2005-12-13 | Add check for return value in recvcmd. | Marco Peereboom | |
Unmap ipmi registers if attach fails. ok jordan@ | |||
2005-12-13 | no need for device name before fail | Theo de Raadt | |
2005-12-13 | Don't continue to poke ipmi registers if the ID command fails. | Marco Peereboom | |
ok jordan@ | |||
2005-12-13 | the status field for power supplies is different to the rest of the | David Gwynne | |
sensors. as a result i wasnt being shown that i have a failed power supply. power supplies now show up like this: hw.sensors.14=esm0, Power Supply 1, OK, raw, 65359 hw.sensors.15=esm0, Power Supply 2, OK, raw, 65359 hw.sensors.16=esm0, Power Supply 3, CRITICAL, raw, 65347 anyone got a spare 2500 power supply they want to send to me? ok deraadt@ marco@ jordan@ VS: ---------------------------------------------------------------------- | |||
2005-12-13 | Add a "M-x lint" mode, now that lint is next-error friendly. | Kjell Wooding | |
While here, delint some name clashes. | |||
2005-12-13 | nuke unused BTOPKERNBASE define | Martin Reindl | |
pointed out by miod@ | |||
2005-12-13 | Pchip0 PCI memory starts at 0x80000000000, correct and use | Martin Reindl | |
P_PCI_MEM accordingly pointed out by KUDO Takashi in PR 4936 ok deraadt@ miod@ | |||
2005-12-13 | Don't retry unsupported SCSI commands, causing large delays during | Kenneth R Westerback | |
boot process. Same as done to gdt and ioprbs. ok nate@ | |||
2005-12-13 | First step in include files overhaul. Use __FOO_VISIBLE (as defined | Todd C. Miller | |
in sys/cdefs.h) instead of _FOO_SOURCE. Also fix several namespace pollution issues, including the byte order defines. OK deraadt@ | |||
2005-12-13 | Fix an assignment (=) where an equality test (==) was meant. Found by | Chad Loder | |
lint. OK millert, deraadt | |||
2005-12-13 | Don't define _BIG_ENDIAN on macpcc, only __BIG_ENDIAN__. | Todd C. Miller | |
Adapted from netbsd.h. OK drahn@ deraadt@ | |||
2005-12-13 | Remove the advertising clause in the UCB license which Berkeley | Jonathan Gray | |
rescinded 22 July 1999. Checked by ian@, deraadt@ and millert@, arm portion checked by drahn@ | |||
2005-12-13 | Remove the advertising clause in the UCB license which Berkeley | Jonathan Gray | |
rescinded 22 July 1999. Checked by deraadt@ | |||
2005-12-13 | Remove the advertising clause in the UCB license which Berkeley | Jonathan Gray | |
rescinded 22 July 1999. Checked by ian@ and deraadt@ | |||
2005-12-12 | Add test for floating point constant in conditional | Chad Loder | |
2005-12-12 | Restructure conditional from last checkin regarding constant in conditional | Chad Loder | |
contexts, so that we do not lose the ability to warn on non-integer constants. | |||
2005-12-12 | Regression test for constant in conditional context | Chad Loder | |
2005-12-12 | Cut down on extraneous "constant in conditional context" warnings when | Chad Loder | |
lint encounters expressions like do { ... } while (0); and if (1) ... We use these idioms frequently in our tree for scoping purposes and we deem them to be safe. Now lint will not warn if it encounters a constant in a conditional context when the expression consists only of a constant (with no operators) and the constant is 0 or 1. This means that lint will not warn for "if (1)" but will warn for "if (2)" and will also continue to warn for "if (foo && 1)". This cuts down the vast majority of these warnings while still preserving the ability to catch bugs. | |||
2005-12-12 | use ARGSUSED1 here | Hans-Joerg Hoexer | |
2005-12-12 | sync usage(); | Jason McIntyre | |
from david leonard (pr #4939); | |||
2005-12-12 | - simplify synopsis | Jason McIntyre | |
- remove some .Bk/.Ek clutter - sort options list | |||
2005-12-12 | only xfree() cf->cf_dir when it's not NULL; | Joris Vink | |
2005-12-12 | Correct uvm_km_suballoc() arguments, do not make phys_map pageable. | Miod Vallat | |
2005-12-12 | ARGSUSED on signal handler | Theo de Raadt | |
2005-12-12 | Only include PROCFS on kernels which have either COMPAT_LINUX or COMPAT_SVR4, | Miod Vallat | |
otherwise it's just a waste of bytes. ok deraadt@ mickey@ | |||
2005-12-12 | Move the MC88410 support code to a specific .c function instead of heavy | Miod Vallat | |
(and large) inlines. While there, provide correct register clobbering information to the __asm__ statements, and fix mc88410_flush_page() evil typo. Finally, rework mc88410_inval() busy-wait logic to behave correctly in all cases. | |||
2005-12-12 | in the write codepaths, errors other than EAGAIN are fatal to the loop; ok otto | Theo de Raadt | |
2005-12-12 | One procfs.h leftover there, too. | Miod Vallat | |
2005-12-12 | Remove unused code. | Miod Vallat | |
2005-12-12 | Nuke unused pmap_from_phys_address(). | Miod Vallat | |
2005-12-12 | Nuke leftover references to procfs_mem.h. | Miod Vallat | |
2005-12-12 | Adam Weishaupt (by grunk@); fix a couple of entries out of order | Michael Shalayeff | |
2005-12-12 | Don't wait one time interval before sending the first packet. | Jared Yanovich | |
Problem reported by Andreas Lundin <lunde@woopheer.mine.nu> on tech@, but fix from KAME. ok pascoe markus | |||
2005-12-12 | Pass interrupt type and level in the correct order. | Mark Kettenis | |
ok drahn@, deraadt@ | |||
2005-12-12 | rcsnum_alloc() and rcsnum_cpy() no longer can fail, so don't | Joris Vink | |
bother checking return values for failure. ok xsa@ | |||
2005-12-12 | correct err() usage and remove the do_death which is unneeded in | Bob Beck | |
the child proceess, (as noticed by <evol@online.ptt.ru>) | |||
2005-12-12 | Backout previous change back to 1.92 - My fault, committed diff | Bob Beck | |
from unclean tree. | |||
2005-12-12 | ansi, no binary change. | Federico G. Schwindt | |
2005-12-12 | some bioses screw the order so be extra careful to counters; been in snaps ↵ | Michael Shalayeff | |
for some time | |||
2005-12-12 | make sure protocol messages for internal channels are ignored. | Markus Friedl | |
allow adjust messages for non-open channels; with and ok djm@ | |||
2005-12-12 | Drop clause 3/4 as per i386 version this was based on. | Jonathan Gray | |
ok niklas@ (Copyright holder). | |||
2005-12-12 | fix a license i botched years ago | Michael Shalayeff | |
2005-12-12 | fix typo; | Jason McIntyre | |
from tamas tevesz; ok hshoexer | |||
2005-12-12 | make printf debug-only so some people would just shuddup | Michael Shalayeff | |