FreeBSD xen subsystem code
xenbusb_if.m
1#-
2# Copyright (c) 2010 Spectra Logic Corporation
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8# 1. Redistributions of source code must retain the above copyright
9# notice, this list of conditions, and the following disclaimer,
10# without modification.
11# 2. Redistributions in binary form must reproduce at minimum a disclaimer
12# substantially similar to the "NO WARRANTY" disclaimer below
13# ("Disclaimer") and any redistribution must be conditioned upon
14# including a substantially similar Disclaimer requirement for further
15# binary redistribution.
16#
17# NO WARRANTY
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
21# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22# HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
27# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28# POSSIBILITY OF SUCH DAMAGES.
29#
30# $FreeBSD$
31#
32
33#include <sys/bus.h>
34#include <sys/lock.h>
35#include <sys/sx.h>
36#include <sys/taskqueue.h>
37
38#include <xen/xenstore/xenstorevar.h>
39#include <xen/xenbus/xenbusb.h>
40
41INTERFACE xenbusb;
42
58METHOD int enumerate_type {
59 device_t _dev;
60 const char *_type;
61};
62
77METHOD int get_otherend_node {
78 device_t _dev;
79 struct xenbus_device_ivars *_ivars;
80}
81
91METHOD void otherend_changed {
92 device_t _bus;
93 device_t _child;
94 enum xenbus_state _state;
96
107METHOD void localend_changed {
108 device_t _bus;
109 device_t _child;
110 const char * _path;
void xenbusb_localend_changed(device_t bus, device_t child, const char *path)
Common XenBus method implementing responses to local XenStore changes.
Definition: xenbusb.c:976
void xenbusb_otherend_changed(device_t bus, device_t child, enum xenbus_state state)
Common XenBus method implementing responses to peer state changes.
Definition: xenbusb.c:970