History log of /netbsd/sys/dev/vme/xdvar.h (Results 1 – 13 of 13)
Revision Date Author Comments
# 5f819ca3 27-Oct-2012 chs <chs@NetBSD.org>

split device_t/softc for all remaining drivers.
replace "struct device *" with "device_t".
use device_xname(), device_unit(), etc.


# 56030b41 01-Feb-2011 chuck <chuck@NetBSD.org>

udpate license clauses on my code to match the new-style BSD licenses.
remove no-longer-valid wustl email address for me.
based on diff that rmind@ sent me.

no functional change with this commit.


# 06869f0a 27-Aug-2006 christos <christos@NetBSD.org>

don't call variables errno! including from userland breaks things!


# 95e1ffb1 11-Dec-2005 christos <christos@NetBSD.org>

merge ktrace-lwp.


# aec75b1c 15-Oct-2005 yamt <yamt@NetBSD.org>

- change the way to specify a bufq strategy. (by string rather than by number)
- rather than embedding bufq_state in driver softc,
have a pointer to the former.
- move bufq related functions from

- change the way to specify a bufq strategy. (by string rather than by number)
- rather than embedding bufq_state in driver softc,
have a pointer to the former.
- move bufq related functions from kern/subr_disk.c to kern/subr_bufq.c.
- rename method to strategy for consistency.
- move some definitions which don't need to be exposed to the rest of kernel
from sys/bufq.h to sys/bufq_impl.h.
(is it better to move it to kern/ or somewhere?)
- fix some obvious breakage in dev/qbus/ts.c. (not tested)

show more ...


# 18db93c7 04-Feb-2005 perry <perry@NetBSD.org>

de-__P


# 9c4c15c0 23-Jul-2002 hannken <hannken@NetBSD.org>

Convert to new device buffer queue interface.

Approved by: Nathan J. Williams <nathanw@netbsd.org>


# 1bf775b9 09-May-2000 pk <pk@NetBSD.org>

Conform bus_dmamem_{alloc,map} usage to bus_dma(9) specs.


# fc96443d 23-Mar-2000 thorpej <thorpej@NetBSD.org>

New callout mechanism with two major improvements over the old
timeout()/untimeout() API:
- Clients supply callout handle storage, thus eliminating problems of
resource allocation.
- Insertion and

New callout mechanism with two major improvements over the old
timeout()/untimeout() API:
- Clients supply callout handle storage, thus eliminating problems of
resource allocation.
- Insertion and removal of callouts is constant time, important as
this facility is used quite a lot in the kernel.

The old timeout()/untimeout() API has been removed from the kernel.

show more ...


# f7c9b873 21-Jan-2000 thorpej <thorpej@NetBSD.org>

Update for sys/buf.h/disksort_*() changes, plus make it compilable on
more systems.


# 5bdabceb 18-Jun-1998 pk <pk@NetBSD.org>

Send the DMA, not KVA, addresses of I/O descriptors to the controller.


# b1f869ef 01-Dec-1997 pk <pk@NetBSD.org>

Use `busdma' macros.


# f00f5d94 01-Nov-1997 pk <pk@NetBSD.org>

Start an MI VMEbus framework.

Includes two sample drivers: IE ethernet driver (VME front-end to
dev/ic/i82586.c) and the XD disk driver, both converted from the
sparc versions.