CVS commit: src/sys/rump/include/machine

2022-08-22 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Mon Aug 22 13:22:10 UTC 2022

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

Log Message:
provide pmap_wired_count macro.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/rump/include/machine/pmap.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/pmap.h
diff -u src/sys/rump/include/machine/pmap.h:1.7 src/sys/rump/include/machine/pmap.h:1.8
--- src/sys/rump/include/machine/pmap.h:1.7	Fri Apr 17 12:43:15 2015
+++ src/sys/rump/include/machine/pmap.h	Mon Aug 22 13:22:10 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.h,v 1.7 2015/04/17 12:43:15 pooka Exp $	*/
+/*	$NetBSD: pmap.h,v 1.8 2022/08/22 13:22:10 mlelstv Exp $	*/
 
 /*
  * Copyright (c) 2010 Antti Kantee.  All Rights Reserved.
@@ -36,5 +36,6 @@ struct pmap {
 #define pmap_is_modified(a) (true)
 #define pmap_is_referenced(a) (true)
 #define pmap_resident_count(a) (0)
+#define pmap_wired_count(a) (0)
 
 #endif /* _SYS_RUMP_PMAP_H_ */



CVS commit: src/sys/rump/include/machine

2022-08-22 Thread Michael van Elst
Module Name:src
Committed By:   mlelstv
Date:   Mon Aug 22 13:22:10 UTC 2022

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

Log Message:
provide pmap_wired_count macro.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/rump/include/machine/pmap.h

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



CVS commit: src/sys/rump/include/machine

2010-02-12 Thread Antti Kantee
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.



CVS commit: src/sys/rump/include/machine

2010-02-09 Thread Antti Kantee
Module Name:src
Committed By:   pooka
Date:   Tue Feb  9 17:33:31 UTC 2010

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

Log Message:
Add a bus.h blanket header which forces definition of bus space /
bus dma interfaces as functions and therefore makes it possible to
use rump on archs which suffer from macro maladies, i.e. everything
except i386 and amd64.

(build-tested on sparc64 and vax, which are usually the two extremes
of weirdness in these cases)


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 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.