blob: f3d0daad3da6946864a3e430523f3b4740135766 [file] [log] [blame]
Stefano Stabellini72e59c32017-07-05 13:08:39 -07001/*
2 * (c) 2017 Stefano Stabellini <stefano@aporeto.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15#include <linux/kthread.h>
16#include <linux/list.h>
17#include <linux/radix-tree.h>
18#include <linux/module.h>
19#include <linux/semaphore.h>
20#include <linux/wait.h>
21
22#include <xen/events.h>
23#include <xen/grant_table.h>
24#include <xen/xen.h>
25#include <xen/xenbus.h>
26#include <xen/interface/io/pvcalls.h>
27
28static int pvcalls_back_probe(struct xenbus_device *dev,
29 const struct xenbus_device_id *id)
30{
31 return 0;
32}
33
34static void pvcalls_back_changed(struct xenbus_device *dev,
35 enum xenbus_state frontend_state)
36{
37}
38
39static int pvcalls_back_remove(struct xenbus_device *dev)
40{
41 return 0;
42}
43
44static int pvcalls_back_uevent(struct xenbus_device *xdev,
45 struct kobj_uevent_env *env)
46{
47 return 0;
48}
49
50static const struct xenbus_device_id pvcalls_back_ids[] = {
51 { "pvcalls" },
52 { "" }
53};
54
55static struct xenbus_driver pvcalls_back_driver = {
56 .ids = pvcalls_back_ids,
57 .probe = pvcalls_back_probe,
58 .remove = pvcalls_back_remove,
59 .uevent = pvcalls_back_uevent,
60 .otherend_changed = pvcalls_back_changed,
61};