Module Name:    src
Committed By:   pooka
Date:           Sat Feb 13 03:19:47 UTC 2010

Modified Files:
        src/sys/rump/include/machine: bus.h

Log Message:
Add missing public members of bus_dmamap_t per interface specification
(nothing uses them here for now, so untested).


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/rump/include/machine/bus.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/include/machine/bus.h
diff -u src/sys/rump/include/machine/bus.h:1.1 src/sys/rump/include/machine/bus.h:1.2
--- src/sys/rump/include/machine/bus.h:1.1	Tue Feb  9 17:33:31 2010
+++ src/sys/rump/include/machine/bus.h	Sat Feb 13 03:19:46 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: bus.h,v 1.1 2010/02/09 17:33:31 pooka Exp $	*/
+/*	$NetBSD: bus.h,v 1.2 2010/02/13 03:19:46 pooka Exp $	*/
 
 /*
  * Copyright (c) 2010 Antti Kantee.  All Rights Reserved.
@@ -50,6 +50,9 @@
 } bus_dma_segment_t;
 
 typedef struct {
+	bus_size_t dm_maxsegsz;
+	bus_size_t dm_mapsize;
+	int dm_nsegs;
 	bus_dma_segment_t dm_segs[1];
 } *bus_dmamap_t;
 

Reply via email to