Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-12-16 | Cleaned up common power management register i/o | Jordan Hargrave | |
Added enter sleep state ioctl Hooked power button interrupt ok marco@ | |||
2005-12-16 | simplify a sentence; | Jason McIntyre | |
2005-12-16 | move the option descriptions up the page: start of a restructure; | Jason McIntyre | |
ok markus deraadt | |||
2005-12-16 | sync | Theo de Raadt | |
2005-12-16 | libresolv.a is no longer needed | Theo de Raadt | |
2005-12-16 | move the section on updating bootblocks into the man body | Jason McIntyre | |
of the page; | |||
2005-12-16 | Fix unsigned < 0 check in ext2fs_readdir(), okay krw@ | Pedro Martelletto | |
2005-12-16 | boolshit | Michael Shalayeff | |
2005-12-16 | a little quieter | Brad Smith | |
2005-12-16 | Fix unsigned < 0 check in ufs_readdir(), okay krw@ | Pedro Martelletto | |
2005-12-16 | Add new unified header file for devices. Suggested deraadt@ | Marco Peereboom | |
2005-12-16 | Use new unified header. | Marco Peereboom | |
2005-12-16 | Remove .h files and replace them with a single one. Suggested deraadt@ | Marco Peereboom | |
2005-12-16 | Remove autoconf chatter | Marco Peereboom | |
2005-12-16 | clarify sentence; cannot reuse a stream socket after even trying to do a ↵ | Theo de Raadt | |
connect; spotted by tedu | |||
2005-12-16 | re-enable ipmi | Theo de Raadt | |
2005-12-16 | do not use a label_t in the pcb. label_t may not exist in all contexts, | Theo de Raadt | |
and causes a real pain with _KERNEL that we wish to avoid for sys/user.h so clone a label_t thingy here | |||
2005-12-16 | Lose dsdt since it was moved inside acpi.c | Marco Peereboom | |
2005-12-16 | fix error printf's. | Brad Smith | |
2005-12-16 | Fix 2 issues reported by beck. | Marco Peereboom | |
1. Sun v20z rebooted dunring autoconf. This was due to reading a byte and discarding it at an inapropriate time. 2. The Sun is so fast that it could exhaust the busy counter. This has been replaced with a timeout/tsleep mechanism that is more predictable. As a bonus we no longer busy wait in ipmi which should improve overall throughput. ok beck@ jordan@ dlg@ | |||
2005-12-16 | Add a regression test for lint catching division by zero. | Chad Loder | |
2005-12-16 | Make div by zero a non-fatal message | Chad Loder | |
2005-12-16 | Limp along with integral 0 instead of UQUAD_MAX when there is a division | Chad Loder | |
by zero. This avoids bogus integer overflow errors in div by zero situations. | |||
2005-12-16 | zaurus cannot fit -g on standard drive, total bummer | Theo de Raadt | |
2005-12-16 | Call checkdbz with the correct operand, so that div by zero checks actually | Chad Loder | |
work, instead of resulting in an exception. Problem noticed by aaron. | |||
2005-12-16 | remove unused code to use IO space. | Brad Smith | |
2005-12-16 | Moved DSDT AML parsing into parent ACPI driver | Jordan Hargrave | |
ok marco@ | |||
2005-12-15 | merge printing of the revision and the interrupt string into one printf. | Brad Smith | |
2005-12-15 | If i is unsigned then i can wrap in 'for(...; i >= 0; i--)'. Spotted | Kenneth R Westerback | |
by lint. While there fix incorrect uses of sizeof(mydevname) instead of sizeof(devname). And actually print the constructed devname, using the format suggested by brad@. ok brad@ | |||
2005-12-15 | Fix error printf()s. | Kenneth R Westerback | |
ok brad@ | |||
2005-12-15 | No need to call the nbr_fsm for unexpected LS requests. The RFC tells to | Claudio Jeker | |
just ignore thos packets. OK norby@ | |||
2005-12-15 | Fix ospfe shutdown function. The cleanup was totaly busted. OK norby@ | Claudio Jeker | |
2005-12-15 | Simpify iface_del() and nbr_del(). make them void funtions as they can not fail | Claudio Jeker | |
and do not remove a element twice in iface_del(). OK norby@ | |||
2005-12-15 | Fix memory leaks in the parser. Make the string passed with area more strict. | Claudio Jeker | |
Finaly implement clear_config(). OK norby@ | |||
2005-12-15 | NULL != '\0'. Spotted by Han Boetes and a linux gcc. | Kjell Wooding | |
2005-12-15 | Use _SYS_CDEFS_H_ not _CDEFS_H_ for duplicate header supression. | Todd C. Miller | |
OK deraadt@ | |||
2005-12-15 | remove inaccuracy (pipes do not appear as unix sockets); | Jason McIntyre | |
ok jaredy@ pedro@ | |||
2005-12-15 | make the systrace section just like the rest... | Jason McIntyre | |
2005-12-15 | sort; | Jason McIntyre | |
2005-12-15 | tweaks; | Jason McIntyre | |
2005-12-15 | A sanity check for an unsigned variable being < 0 after a subtraction | Kenneth R Westerback | |
is not useful. Check the value about to be subtracted. Spotted by lint. | |||
2005-12-15 | Protect va_copy with __ISO_C_VISIBLE as intended. | Todd C. Miller | |
2005-12-15 | A sanity check for an unsigned variable being < 0 after a subtraction | Kenneth R Westerback | |
is not useful. Check the value about to be subtracted. Spotted by lint. ok pedro@ | |||
2005-12-15 | fstat does not print an '*' for fifos, okay jmc@ | Pedro Martelletto | |
2005-12-15 | shrink a little | David Gwynne | |
2005-12-15 | dont use the esm sensor tables to store format strings. | David Gwynne | |
2005-12-15 | split esms psu sensor into 6 kernel sensors. you can easily see if the | David Gwynne | |
psu is powered, switched on, overtemp, failed and so on now. ok marco@ | |||
2005-12-15 | __BSD_VISIBLE is not compared against a date | Theo de Raadt | |
2005-12-15 | Add a new warning message: conversion of %s return value from '%s' to '%s'. | Chad Loder | |
Lint now warns when a function's return value is converted to a smaller (or differently signed) type. These conversions can happen when doing an assignment, when passing a function's return value as an argument to another function, or when initializing a variable. Currently this produces useless warnings on tolower() and toupper() because they return ints but are usually assigned to chars. | |||
2005-12-15 | kjell forgot to update this after his last message commit :) | Chad Loder | |