History log of /netbsd-src/sys/dev/dmover/dmover_request.c (Results 1 – 8 of 8)
Revision Date Author Comments
# 3af888c1 14-May-2011 jakllsch <jakllsch@NetBSD.org>

Convert remaining simplelock usage in dmover(4) to a RUN_ONCE(9).


# 0664a045 04-Jan-2008 ad <ad@NetBSD.org>

Start detangling lock.h from intr.h. This is likely to cause short term
breakage, but the mess of dependencies has been regularly breaking the
build recently anyhow.


# 5f195f5b 12-Nov-2007 he <he@NetBSD.org>

Ensure that the 'pc' local variable is initialized, so that this builds again.


# c067a1b9 08-Nov-2007 dogcow <dogcow@NetBSD.org>

pesky missing semicolons.


# 54221c3e 07-Nov-2007 ad <ad@NetBSD.org>

- Make it compile again.
- Don't call pool_cache_init with a held simplelock.


# d18c6ca4 07-Nov-2007 ad <ad@NetBSD.org>

Merge from vmlocking:

- pool_cache changes.
- Debugger/procfs locking fixes.
- Other minor changes.


# 59d979c5 12-Mar-2007 ad <ad@NetBSD.org>

Pass an ipl argument to pool_init/POOL_INIT to be used when initializing
the pool's lock.


# 5d06c0e8 02-Aug-2002 thorpej <thorpej@NetBSD.org>

dmover(9) -- an interface to hardware-assisted data movers. This allows
clients to use a hardware-assisted data mover to clear a region of memory,
fill a region of memory with a specific value, copy

dmover(9) -- an interface to hardware-assisted data movers. This allows
clients to use a hardware-assisted data mover to clear a region of memory,
fill a region of memory with a specific value, copy a region of memory,
and perform simple boolean operations such as XOR on multiple regions
of memory.

Included here is a software back-end which can serve as an example of
how to write a back-end (and also provides a fall-back in case hardware
for a given function is not available), as well as a dmoverio(4) pseudo-
device which provides access to dmover(9) to userland via a message
passing interface.

dmover(9) is still a work-in-progress -- a few minor changes to the
interface are expected.

show more ...