summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-12-16Cleaned up common power management register i/oJordan Hargrave
Added enter sleep state ioctl Hooked power button interrupt ok marco@
2005-12-16simplify a sentence;Jason McIntyre
2005-12-16move the option descriptions up the page: start of a restructure;Jason McIntyre
ok markus deraadt
2005-12-16syncTheo de Raadt
2005-12-16libresolv.a is no longer neededTheo de Raadt
2005-12-16move the section on updating bootblocks into the man bodyJason McIntyre
of the page;
2005-12-16Fix unsigned < 0 check in ext2fs_readdir(), okay krw@Pedro Martelletto
2005-12-16boolshitMichael Shalayeff
2005-12-16a little quieterBrad Smith
2005-12-16Fix unsigned < 0 check in ufs_readdir(), okay krw@Pedro Martelletto
2005-12-16Add new unified header file for devices. Suggested deraadt@Marco Peereboom
2005-12-16Use new unified header.Marco Peereboom
2005-12-16Remove .h files and replace them with a single one. Suggested deraadt@Marco Peereboom
2005-12-16Remove autoconf chatterMarco Peereboom
2005-12-16clarify sentence; cannot reuse a stream socket after even trying to do a ↵Theo de Raadt
connect; spotted by tedu
2005-12-16re-enable ipmiTheo de Raadt
2005-12-16do 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-16Lose dsdt since it was moved inside acpi.cMarco Peereboom
2005-12-16fix error printf's.Brad Smith
2005-12-16Fix 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-16Add a regression test for lint catching division by zero.Chad Loder
2005-12-16Make div by zero a non-fatal messageChad Loder
2005-12-16Limp along with integral 0 instead of UQUAD_MAX when there is a divisionChad Loder
by zero. This avoids bogus integer overflow errors in div by zero situations.
2005-12-16zaurus cannot fit -g on standard drive, total bummerTheo de Raadt
2005-12-16Call checkdbz with the correct operand, so that div by zero checks actuallyChad Loder
work, instead of resulting in an exception. Problem noticed by aaron.
2005-12-16remove unused code to use IO space.Brad Smith
2005-12-16Moved DSDT AML parsing into parent ACPI driverJordan Hargrave
ok marco@
2005-12-15merge printing of the revision and the interrupt string into one printf.Brad Smith
2005-12-15If i is unsigned then i can wrap in 'for(...; i >= 0; i--)'. SpottedKenneth 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-15Fix error printf()s.Kenneth R Westerback
ok brad@
2005-12-15No need to call the nbr_fsm for unexpected LS requests. The RFC tells toClaudio Jeker
just ignore thos packets. OK norby@
2005-12-15Fix ospfe shutdown function. The cleanup was totaly busted. OK norby@Claudio Jeker
2005-12-15Simpify iface_del() and nbr_del(). make them void funtions as they can not failClaudio Jeker
and do not remove a element twice in iface_del(). OK norby@
2005-12-15Fix memory leaks in the parser. Make the string passed with area more strict.Claudio Jeker
Finaly implement clear_config(). OK norby@
2005-12-15NULL != '\0'. Spotted by Han Boetes and a linux gcc.Kjell Wooding
2005-12-15Use _SYS_CDEFS_H_ not _CDEFS_H_ for duplicate header supression.Todd C. Miller
OK deraadt@
2005-12-15remove inaccuracy (pipes do not appear as unix sockets);Jason McIntyre
ok jaredy@ pedro@
2005-12-15make the systrace section just like the rest...Jason McIntyre
2005-12-15sort;Jason McIntyre
2005-12-15tweaks;Jason McIntyre
2005-12-15A sanity check for an unsigned variable being < 0 after a subtractionKenneth R Westerback
is not useful. Check the value about to be subtracted. Spotted by lint.
2005-12-15Protect va_copy with __ISO_C_VISIBLE as intended.Todd C. Miller
2005-12-15A sanity check for an unsigned variable being < 0 after a subtractionKenneth R Westerback
is not useful. Check the value about to be subtracted. Spotted by lint. ok pedro@
2005-12-15fstat does not print an '*' for fifos, okay jmc@Pedro Martelletto
2005-12-15shrink a littleDavid Gwynne
2005-12-15dont use the esm sensor tables to store format strings.David Gwynne
2005-12-15split esms psu sensor into 6 kernel sensors. you can easily see if theDavid Gwynne
psu is powered, switched on, overtemp, failed and so on now. ok marco@
2005-12-15__BSD_VISIBLE is not compared against a dateTheo de Raadt
2005-12-15Add 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-15kjell forgot to update this after his last message commit :)Chad Loder