| Age | Commit message (Collapse) | Author |
|
Mention the APM emulation layer of ACPI. In addition, some small fixes.
|
|
did for _alloc().
|
|
values on temp limits. The actual ranges for temp limits varies if the
chip is running in "extended temperature" mode, so we need to handle this
difference, too.
Verified on my home machine which runs in extended-temp mode and by
njoly@ on a machine which does runs in the older 2s-complement mode.
|
|
both netpgp and openssh depend on it. This should fix intermittent
failures of parallel builds (as seen e.g. on the autobuild cluster).
|
|
|
|
|
|
|
|
|
|
range of memory forwarded by the host chipset to PCI.
|
|
|
|
consistently across the code.
- Re-do note parsing code to read the section headers instead of the program
headers because the new binutils merge all the note sections in one program
header. This fixes all the pax note parsing which has been broken for all
binaries built with the new binutils.
- Add diagnostics to the note parsing code to detect malformed binaries.
- Allocate and free note scratch space only once, not once per note.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Fix doc: pam_strerror() ignores pamh.
Portability tip.
|
|
pam_end() already contains a NULL check, and it is not unreasonable to
call it with a NULL pamh in a cleanup / error-handling situation. Remove
OPENPAM_NONNULL, which may cause gcc to optimize away the NULL check.
|
|
|
|
review for correctness.
|
|
with simpler full width multiplications and shifts + adds. The main
operations are generally at least 50% faster when serialised and often
better for parallelism as well.
|
|
unknown for module class and/or source.
related to PR kern/43014
|
|
|
|
|
|
since a wrong calculation in dp8390_ipkdb_attach() was fixed.
|
|
|
|
Fixes PR/43008.
|
|
|
|
|
|
|
|
inline functions, so that this builds again. (Otherwise, ne2000.c driver
would now fail to build.)
|
|
|
|
most don't. Deal with non-equivalent aliases by removing and flushing the
managed mappings, and flushing the unmanaged mappings.
When flushing caches/TLB flush the cache before purging the TLB just in
case the flush enters the mapping into the TLB.
|
|
|
|
http://mail-index.netbsd.org/tech-kern/2010/03/06/msg007458.html
Reviewed by <pgoyette>, <cegger>, <jruoho>, <tech-kern>.
|
|
|
|
exported to device drivers, so rename it and move the declaration to
<dev/sysmon/sysmonvar.h>
|
|
lm(4) as W83627DHG (0xc1)
|
|
|
|
Get rid of a (short) staircase in ex_cardbus_detach().
|
|
definitions by chance (or by the bus-specific front-end #including them!).
#include them here, instead.
|
|
but #include here.
|
|
sme_events_worker().
Provide a wrapper that can be called from sensor drivers' interrupt
routines to find and deliver a specific event.
XXX Actually updating sensor drivers (and their parent devices) to
XXX have interrupts is a future enhancement. This is simply an
XXX enabler.
|
|
|
|
This allows threaded programs to use us a little better, PR lib/43005.
We need to disable SSP when using alloca.
|
|
structure.
|
|
conditional compilation.
Simplify interrupt (dis)establishment by two source transformations:
- cardbus_intr_disestablish(cc, cf, ih);
+ Cardbus_intr_disestablish(ct, ih);
- ih = cardbus_intr_establish(cc, cf, ...);
+ ih = Cardbus_intr_establish(ct, ...);
The identical change to a few other CardBus NICs has not caused any
problems, as expected, so I'm going to commit this rather safe change
and get on with the work.
Testers have been enlisted. I will revisit this change if I get any
negative responses.
|
|
- cardbus_intr_disestablish(cc, cf, ih);
+ Cardbus_intr_disestablish(ct, ih);
- ih = cardbus_intr_establish(cc, cf, ...);
+ ih = Cardbus_intr_establish(ct, ...);
The identical change to a few other CardBus NICs has not caused any
problems, as expected, so I'm going to commit this rather safe change
and get on with the work.
Testers have been enlisted. I will revisit this change if I get any
negative responses.
|
|
conditional compilation.
Simplify interrupt (dis)establishment by two source transformations:
- cardbus_intr_disestablish(cc, cf, ih);
+ Cardbus_intr_disestablish(ct, ih);
- ih = cardbus_intr_establish(cc, cf, ...);
+ ih = Cardbus_intr_establish(ct, ...);
The identical change to a few other CardBus NICs has not caused any
problems, as expected, so I'm going to commit this rather safe change
and get on with the work.
Testers have been enlisted. I will revisit this change if I get any
negative responses.
|