aboutsummaryrefslogtreecommitdiff
path: root/microkernel/mach/gnumach/projects/mach_5.mdwn
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2016-12-04 13:20:31 +0100
committerThomas Schwinge <thomas@codesourcery.com>2016-12-04 13:20:31 +0100
commit79677204760502b2fdd0e06958a999b1fad0f940 (patch)
treeb5c3eff1f13a9655ea13e9faba0c387a562fb278 /microkernel/mach/gnumach/projects/mach_5.mdwn
parentaef463c050add77d72259c5c9b630adbfb0409bb (diff)
parent45e529318e9963a4df0a900bd7b5bd29a6412183 (diff)
downloadweb-79677204760502b2fdd0e06958a999b1fad0f940.tar.gz
web-79677204760502b2fdd0e06958a999b1fad0f940.tar.bz2
web-79677204760502b2fdd0e06958a999b1fad0f940.zip
Merge commit '45e529318e9963a4df0a900bd7b5bd29a6412183'
Diffstat (limited to 'microkernel/mach/gnumach/projects/mach_5.mdwn')
-rw-r--r--microkernel/mach/gnumach/projects/mach_5.mdwn26
1 files changed, 26 insertions, 0 deletions
diff --git a/microkernel/mach/gnumach/projects/mach_5.mdwn b/microkernel/mach/gnumach/projects/mach_5.mdwn
index a4236ea5..7b59170b 100644
--- a/microkernel/mach/gnumach/projects/mach_5.mdwn
+++ b/microkernel/mach/gnumach/projects/mach_5.mdwn
@@ -19,6 +19,8 @@ it, we could straighten out some of these problems.
This page is a place to keep track of such changes.
+[[!toc startlevel=2 levels=1]]
+
## Protected payloads
Protected payloads are a way of optimizing the receiver object lookup
@@ -134,4 +136,28 @@ A prototype exists.
### Discussions
* <https://lists.gnu.org/archive/html/bug-hurd/2015-05/msg00000.html>
+* <https://lists.gnu.org/archive/html/bug-hurd/2016-09/msg00056.html>
+
+## Interface for userspace drivers
+
+We need to provide an interface suitable for implementing drivers in
+userspace:
+
+* A way to handle interrupts
+* and a way to allocate memory suitable for DMA buffers
+
+### Required ABI changes
+
+None. This is a new interface. Debian/Hurd uses a non-standard rpc
+id, so we do not change an existing procedure there.
+
+### Status
+
+A DDE-based solution is used in Debian/Hurd to provide network
+drivers. A rump kernel prototype is implemented. These use a kernel
+interface written by Zheng Da available in the
+"master-user_level_drivers" branch in the GNU Mach repository.
+
+### Discussions
+* <https://lists.gnu.org/archive/html/bug-hurd/2016-02/msg00126.html>