20 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * 9pfs.h -- Xen 9PFS transport4 *5 * Copyright (C) 2017 Stefano Stabellini <stefano@aporeto.com>6 */7 8#ifndef __XEN_PUBLIC_IO_9PFS_H__9#define __XEN_PUBLIC_IO_9PFS_H__10 11#include "xen/interface/io/ring.h"12 13/*14 * See docs/misc/9pfs.markdown in xen.git for the full specification:15 * https://xenbits.xen.org/docs/unstable/misc/9pfs.html16 */17DEFINE_XEN_FLEX_RING_AND_INTF(xen_9pfs);18 19#endif20