diff options
author | 2015-12-08 22:14:40 +0000 | |
---|---|---|
committer | 2015-12-08 22:14:40 +0000 | |
commit | c0d9ed9ddda03dc0510ba4a10942a9675479a8bd (patch) | |
tree | 60a72f4918270bf27b86116a7c6c6a9083ea3da6 /sys/dev/pv/files.pv | |
parent | Disable xspd(4) until the man page is written; noticed by reyk@ (diff) | |
download | wireguard-openbsd-c0d9ed9ddda03dc0510ba4a10942a9675479a8bd.tar.xz wireguard-openbsd-c0d9ed9ddda03dc0510ba4a10942a9675479a8bd.zip |
Driver for XenStore, the configuration storage
XenStore provides a hierarchical storage for Xen configuration
in a style of an OpenFirmware. Itself it's an interrupt driven
producer/consumer interface with two 1kb rings for input and
output.
It's required in order to do virtual device discovery and device
configuration (fetch MAC address, various parameters).
With input from and OK mlarkin, reyk
Diffstat (limited to 'sys/dev/pv/files.pv')
-rw-r--r-- | sys/dev/pv/files.pv | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pv/files.pv b/sys/dev/pv/files.pv index f5e606e9615..d0e3b8ccf63 100644 --- a/sys/dev/pv/files.pv +++ b/sys/dev/pv/files.pv @@ -1,4 +1,4 @@ -# $OpenBSD: files.pv,v 1.3 2015/12/08 18:46:25 mikeb Exp $ +# $OpenBSD: files.pv,v 1.4 2015/12/08 22:14:40 mikeb Exp $ # # Config file and device description for paravirtual devices. # Included by ports that need it. @@ -17,3 +17,4 @@ file dev/pv/vmt.c vmt needs-flag device xen {} attach xen at pvbus file dev/pv/xen.c xen needs-flag +file dev/pv/xenstore.c xen |