2017-03-21 21:51:34 +01:00
|
|
|
/*
|
|
|
|
* Xen 9p backend
|
|
|
|
*
|
|
|
|
* Copyright Aporeto 2017
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Stefano Stabellini <stefano@aporeto.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL version 2 or
|
|
|
|
* later. See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2019-06-04 20:16:18 +02:00
|
|
|
#ifndef HW_9PFS_XEN_9PFS_H
|
|
|
|
#define HW_9PFS_XEN_9PFS_H
|
|
|
|
|
2019-06-21 12:54:41 +02:00
|
|
|
#include "hw/xen/interface/io/protocols.h"
|
|
|
|
#include "hw/xen/interface/io/ring.h"
|
2017-03-21 21:51:34 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Do not merge into xen-9p-backend.c: clang doesn't allow unused static
|
|
|
|
* inline functions in c files.
|
|
|
|
*/
|
|
|
|
DEFINE_XEN_FLEX_RING_AND_INTF(xen_9pfs);
|
2019-06-04 20:16:18 +02:00
|
|
|
|
|
|
|
#endif
|