QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
544 B
25 lines
544 B
/*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef HW_9PFS_XEN_9PFS_H
|
|
#define HW_9PFS_XEN_9PFS_H
|
|
|
|
#include "hw/xen/interface/io/protocols.h"
|
|
#include "hw/xen/interface/io/ring.h"
|
|
|
|
/*
|
|
* 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);
|
|
|
|
#endif
|
|
|