]>
Commit | Line | Data |
---|---|---|
b37eeb02 SS |
1 | /* |
2 | * Xen 9p backend | |
3 | * | |
4 | * Copyright Aporeto 2017 | |
5 | * | |
6 | * Authors: | |
7 | * Stefano Stabellini <[email protected]> | |
8 | * | |
9 | * This work is licensed under the terms of the GNU GPL version 2 or | |
10 | * later. See the COPYING file in the top-level directory. | |
b37eeb02 SS |
11 | */ |
12 | ||
f91005e1 MA |
13 | #ifndef HW_9PFS_XEN_9PFS_H |
14 | #define HW_9PFS_XEN_9PFS_H | |
15 | ||
a3434a2d AP |
16 | #include "hw/xen/interface/io/protocols.h" |
17 | #include "hw/xen/interface/io/ring.h" | |
b37eeb02 SS |
18 | |
19 | /* | |
20 | * Do not merge into xen-9p-backend.c: clang doesn't allow unused static | |
21 | * inline functions in c files. | |
22 | */ | |
23 | DEFINE_XEN_FLEX_RING_AND_INTF(xen_9pfs); | |
f91005e1 MA |
24 | |
25 | #endif |