| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
world), do not treat it as such. This fixes the alpha boot problem.
Reviewed by: drew, des
|
|
|
|
|
|
| |
Read the MAC address from Adaptec boards correctly.
Bits borrowed from sys/pci/if_en_pci.c.
|
|
|
|
| |
Minor whitespace changes.
|
| |
|
| |
|
|
|
|
| |
the default.
|
|
|
|
| |
Sync Perforce IDs.
|
|
|
|
|
| |
PCIM_CMD_SERREN -> PCIM_CMD_SERRESPEN to be consistent with
the PERR definition.
|
|
|
|
| |
SCSI Controller chip.
|
|
|
|
|
|
|
| |
make the onboard NIC work.
Sponsored by: Vernier Networks
MFC after: 1 day
|
| |
|
|
|
|
|
|
| |
Added Vlan support.
MFC after: 1 week
|
|
|
|
|
|
|
| |
until the I/O completes. This fixes some easily reproducable deadlocks
that occur when using md(4) with GEOM.
Reviewed by: phk
|
|
|
|
|
|
|
| |
Module loads and unloads properly.
Thanks to Richard Hodges <rh@matriplex.com> for donating the hardware
to allow me to work on this driver.
|
|
|
|
|
| |
Spotted and suggested by: des
MFC after: 3 weeks
|
|
|
|
|
| |
There's no need to use concatination when you have 'something.macro_arg'.
Comment out comment following #endif.
|
|
|
|
| |
something wound up grafted to a comma.
|
|
|
|
|
| |
When casting a "const void *" to a "struct foo **" you want to actually
cast it to "struct foo * const *" not simply "const struct foo **".
|
|
|
|
|
|
|
| |
ifdef out what appears to be a bogus call to softintr using data
elements that aren't in the softc.
Forgotten by: imp
|
|
|
|
|
|
|
|
| |
Fix GCC warnings caused by initializing a zero length array. In the process,
simply things a bit by getting rid of 'struct ng_parse_struct_info' which
was useless because it only contained one field.
But now I'm unbreaking compilation by adjusting these files to the recent
netgraph change.
|
|
|
|
|
|
|
|
|
|
|
| |
panic because of a repeat make_dev if/when the device is reattached
to the system.
Remove an "#if __FreeBSD__" in code that's nested under a "#if __NetBSD__"
(*sigh*)
Reported by: Seth Hettich <sjh@whiskey.ucf.ics.uci.edu>
Tested by: Seth Hettich <sjh@whiskey.ucf.ics.uci.edu>
|
| |
|
| |
|
| |
|
|
|
|
| |
Approved by: msmith in principle before walkabout
|
|
|
|
|
| |
ifdef out what appears to be a bogus call to softintr using data
elements that aren't in the softc.
|
|
|
|
| |
Approved by: des
|
| |
|
| |
|
|
|
|
| |
Submitted by: dirkx@covalent.net
|
| |
|
|
|
|
| |
will be updated to only define(__i386__) for ANSI cleanliness.
|
|
|
|
| |
will be updated to only define(__i386__) for ANSI cleanliness.
|
|
|
|
|
|
|
| |
places.
Comment out crc32 related definitions in zlib.h, we don't seem to have the
corresponding code in our kernel.
|
|
|
|
|
|
|
|
| |
date: 2002/05/28 12:42:39; author: augustss;
Change DMAADDR macro slightly.
Update the $NetBSD$ tags to reflect this and make slight changes to
usb_mem.h so that we're in sync with each other.
|
| |
|
| |
|
|
|
|
|
| |
ELECOM LDUSBLTX
IODATA USBETTXS
|
| |
|
|
|
|
| |
didn't pick it up.)
|
|
|
|
|
|
|
| |
revision 1.124
date: 2002/05/26 03:10:02; author: minoura; state: Exp; lines: +3 -3
Clear done_head in the HCCA *before* acknoledging the interrupt.
Driver lost some completed transfers under heavy loads.
|
|
|
|
|
|
|
|
|
| |
date: 2002/05/19 06:24:31; author: augustss; state: Exp;
Update dma memory access API a little.
NetBSD have adopted our way of using the KERNADDR macro. Update
the revision tags to show that we're in sync, and remove the casts
that they did in their adaptation.
|
| |
|
|
|
|
| |
Sponsored by: DARPA & NAI Labs.
|
|
|
|
|
|
| |
Clean up things properly when we unconfigure malloc backed units.
Sponsored by: DARPA & NAI Labs.
|
|
|
|
|
|
|
|
|
|
|
| |
remove the need for a contiguous array with pointers to all the sectors.
Try to make failure to malloc(9) memory a non-hang situation.
Eventually this will allow us to test the 64bit cleanness of the disk
I/O patch, but more work is outstanding here and elsewhere.
Sponsored by: DARPA & NAI Labs.
|
|
|
|
| |
disabled for gcc-3.
|
|
|
|
|
|
|
|
|
| |
instead of %llx when %j is available).
Changed nearby output formats from %x to %#x so that it is obvious that the
numbers are in hex (vinum mostly uses 0x%x elsewhere).
Didn't fix nearby format printf errors (long lines).
|
|
|
|
|
|
|
|
|
|
|
|
| |
Printing daddr_t's using %d format was always an error, but gcc's
warning about it was ignored for supported 64-bit arches and not printed
for supported 32-bit arches. Hundreds if not thousands thousands of
previously "fixed" daddr_t printings are now broken on 32-bit machines
by casting daddr_t's to longs. daddr_t's should be printed using %jd
format, but this fix uses %lld since %j is not implemented in the
kernel yet.
Fixed some nearby format printf errors (style bugs).
|
|
|
|
|
|
| |
about 1 of 10 cases.
Proposed and tested by: phk
|