| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
Setting the No_CRC bit Can Cause Data Write Errors on BCM5701/03/04
The resolution is to not set the No_CRC bit in the Mode Control Register.
|
|
|
|
| |
other junk.
|
|
|
|
|
| |
Reviewed by: Prafulla Deuskar <pdeuskar@FreeBSD.ORG>
Sponsored by: FreeBSD Foundation
|
| |
|
|
|
|
|
| |
However, leave legacy_pcib_route_interrupt() since there is no pcibios to
call.
|
|
|
|
|
|
|
|
|
|
| |
"will trim at" message printed when the user requests '-v'. The
previous code would often print the wrong time, such as:
On Sept 22, run: newsyslog -nv /var/log/wtmp
And see: will trim at Mon Sep 1 05:00:00 2003
correct msg: will trim at Wed Oct 1 05:00:00 2003
MFC after: 20 days
|
|
|
|
| |
refer to it for looking for tables.
|
|
|
|
| |
be happening if we didn't stop compiling with -fno-strict-aliasing.
|
|
|
|
| |
stack limit from 64MB to 512MB.
|
| |
|
|
|
|
| |
the stack. This means that s/g lists can be arbitrarily long.
|
|
|
|
|
|
|
|
|
|
|
| |
initialize a TSC timecounter until we know if it is broke or not.
XXX I think there is a bug in the i386 code here. init_TSC_tc() comes
after:
if (statclock_disable)
return;
ie: if you turn off the statclock interrupt, you dont get the TSC either.
|
| |
|
| |
|
|
|
|
| |
APICBASE MSR constants.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
for breakpoint and trace traps from usermode. Although all the setidt
entries are interrupt gates on amd64, all but the trace and bpt trap
entry handlers reenable interrupts after the swapgs instruction in order
to simulate the trap/interrupt gate distinction. In other words, the
amd64 code behaves the same way that i386 does here.
|
| |
|
| |
|
|
|
|
|
|
| |
for ddb input in some atkbd-based console drivers. ddb must not use any
normal locks but DELAY() normally calls getit() which needs clock_lock.
This also removes the need for recursion on clock_lock.
|
|
|
|
|
|
|
|
|
|
|
|
| |
known constants at compile time rather than at run time. We have a number
of nasty hacks around the place to cache ntohl() of constants (eg: nfs).
This change allows the compiler to compile-time evaluate ntohl(1) as
0x01000000 rather than having to emit assembler code to do it. This
has other smaller flow-on effects because the compiler can see that
ntohl(constant) itself has a constant value now and can propagate the
compile time evaluation.
Obtained from: Ideas from NetBSD and Linux, and some code from NetBSD
|
|
|
|
| |
heuristics do not overestimate the code size quite so much.
|
| |
|
|
|
|
| |
produce incorrect (though harmless) output on single-CPU systems.
|
|
|
|
|
|
| |
number of CPUs.
PR: kern/27522
|
|
|
|
|
|
| |
for interrupted field.
Also in _thr_sig_handler, retrieve current signal mask from kernel not
from ucp, the later is pre-unioned mask, not current signal mask.
|
| |
|
|
|
|
|
|
| |
Introduct pmap_extract_and_hold.
Stolen from: sparc64
|
| |
|
|
|
|
| |
# I think this is prism 3 based, but I could be wrong
|
|
|
|
| |
Obtained from: NetBSD (onoe-san)
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
1.186: onoe; Sony's PEGA-WL110 CF WLAN (which strangely has fujitsu's
vendor id)
1.185: ichiro; Quatech Inc, PCMCIA Enhanced Parallel Port Card
Also:
o update $NetBSD$
o minor tweaks to FUJITSU. We've tried to keep the CIS only entries seprate
from vendor id/product id.
|
|
|
|
|
|
| |
fix issues with geometry not matching drive size.
Submitted by: Clive Lin <clive@tongi.org>
|
|
|
|
|
|
|
| |
freed belong to the kernel object.)
- Increase the granularity of the vm object locking in vm_hold_load_pages()
in order to reduce the number of times that we acquire and release the
same lock.
|
|
|
|
|
|
|
|
|
|
| |
Reported by: Larry Rosenman <ler@lerctr.org>
PR:
Submitted by:
Reviewed by:
Approved by:
Obtained from:
MFC after:
|
|
|
|
|
| |
(This field is useful for implementing sanity checks even if the page does
not belong to an object.)
|
| |
|
|
|
|
| |
Prodded by: Ruslan Ermilov <ru@FreeBSD.org>
|
|
|
|
|
|
|
| |
variable arguments. version 1.26 incorrectly truncated the message if
the buffer was too long.
Requested by: bde
|
|
|
|
| |
leaves one explicit use of the pte object.)
|
|
|
|
|
|
|
| |
Sawfish is gone, and xchat2 is more widely used these days since it is the
current stable release.
Approved by: re (murray)
|
| |
|
|
|
|
|
|
| |
check GONE_IN_5: We need the clone handler for root filesystem case.
Once under GEOM, we can remove the clone handler as GEOM provides one.
|
| |
|
|
|
|
|
|
| |
Fix to the messages output under CAM_DEBUG_CCB: the summary sense
information (error bits and sense key) is in the error field, not
in the result field, of struct ata_request. No other functional change.
|
|
|
|
| |
Minor reformatting.
|