| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
- Fixed missing argument of printf.
- Fixed printf format.
- Added parentheses suggested by the compiler.
|
| |
|
| |
|
|
|
|
|
|
| |
/usr/bin/logger is not available.
Noticed from: error messages in -CURRENT's sysinstall Alt-F2 debug screen
|
|
|
|
|
|
|
|
|
|
| |
1) Safty change from casper dik was added to OpenBSD's sources since I
grabbed them. milltert@openbsd.org
2) Split up strlcpy to improve efficiency of the common case.
milltert@openbsd.org
3) Cleanup of cross references for man page. {alex,aaron}@openbsd.org
Pointed out by: deraadt@openbsd.org
|
|
|
|
| |
Obtained from: OpenBSD
|
|
|
|
|
|
|
|
| |
Now that behaviors are stored in the vm_map_entry rather than
the vm_object, it's no longer necessary to instantiate a vm_object
just to hold the behavior.
Reviewed by: dillon
|
|
|
|
|
| |
Add KASSERT to detect out of range access to the pv_table and
report the errant pte before it's overwritten.
|
|
|
|
| |
restricted to i386.
|
|
|
|
|
|
|
| |
See: http://www.amd.com/products/npd/overview/homenetworking/intro.html
PR: kern/12275
Submitted by: Robert Watson <robert@cyrus.watson.org>
|
| |
|
|
|
|
|
| |
PR: 13046
Submitted by: Vsevolod Lobko <seva@alex-ua.com>
|
|
|
|
|
| |
PR: docs/13050
Reported-by: Dan Langille<junkmale@xtra.co.nz>
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
writable rather than not being writable at all.
PR: 13009
Kind-of submitted by: Anthony Kimball <alk@pobox.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
correctly. It has the following code:
if (class != PCIC_BRIDGE || subclass != PCIS_BRIDGE_HOST)
return NULL;
My 486 has an Integrated Micro Solutions PCI bridge which identifies
itself as subclass PCIS_BRIDGE_OTHER, not PCIS_BRIDGE_HOST. Consequently,
it gets ignored. In my opinion, the correct test should be:
if ((class != PCIC_BRIDGE) && (subclass != PCIS_BRIDGE_HOST))
return NULL;
That way the test still succeeds because the chip's class is PCIC_BRIDGE.
Clearly it's not reasonable to expect all host to PCI bridges to always
have a subclass of PCIS_BRIDGE_HOST since I've got one that doesn't.
This way the sanity test should remain relatively sane while still allowing
some oddball yet correct hardware to work. If somebody has a better way
to do it, go ahead and tweak the test, but be aware that
class == PCIC_BRIDGE and subclass == PCIS_BRIDGE_OTHER is a valid case.
While I was here, I also added an explicit ID string for the IMS chipset.
I also dealt with a minor style nit: it's bad karma not to have a default
case for your switch statements, but the one in this routine doesn't have
one. The default string of "Host to PCI bridge" is now assigned in a
default case of the switch statement instead of initializing "s" with the
string before the switch and then not having any default case.
|
|
|
|
|
|
|
|
|
|
|
|
| |
Isn't really that useful.
chip0: <PCI to Other bridge (vendor=10e0 device=8849)> at device 0.0 on pci0
is more in keeping with the spirit of the rest of the code.
Previous behavior with regard to truely unknown bridges unchanged.
"<Anti-Bill> Tell you what: you have commit privs now. You do it."
|
|
|
|
|
|
|
| |
of daylight savings changes.
Submitted by: Doug <Doug@gorean.org>
Reviewed by: phk
|
| |
|
|
|
|
| |
sleep(3) is implemented using nanosleep(2).
|
| |
|
| |
|
|
|
|
| |
here, and do a bit of general tidy up.
|
|
|
|
|
|
|
|
| |
Config(8) contains no documentation about this.
Fix the help for the PnP irq and drq commands. This one caused
me a bit of head scratching the other night while trying to get
a problematic PnP device configured properly.
|
| |
|
| |
|
| |
|
|
|
|
| |
Submitted by: Tomohiko Kurahashi <kura@tim.hi-ho.ne.jp>
|
| |
|
| |
|
| |
|
|
|
|
| |
Among the changes: 1.84: support compex 4-port cards.
|
| |
|
|
|
|
| |
may not compile, I can't test it.
|
|
|
|
| |
the queue macros.
|
|
|
|
| |
this until bde and friends finish arguing over what to do instead. :)
|
| |
|
| |
|
|
|
|
| |
comment. Fixes broken make world.
|
| |
|
|
|
|
| |
add a way to get the entire struct ppb_device back.
|
| |
|
| |
|
|
|
|
|
| |
-f Do not display a diagnostic message if chmod could not modify the
mode for file.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
been registered with ttyregister().
register ptys with ttyregister().
|