/*1* 9pfs.h -- Xen 9PFS transport2*3* Refer to docs/misc/9pfs.markdown for the specification4*5* Permission is hereby granted, free of charge, to any person obtaining a copy6* of this software and associated documentation files (the "Software"), to7* deal in the Software without restriction, including without limitation the8* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or9* sell copies of the Software, and to permit persons to whom the Software is10* furnished to do so, subject to the following conditions:11*12* The above copyright notice and this permission notice shall be included in13* all copies or substantial portions of the Software.14*15* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR16* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,17* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE18* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER19* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING20* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER21* DEALINGS IN THE SOFTWARE.22*23* Copyright (C) 2017 Stefano Stabellini <[email protected]>24*/2526#ifndef __XEN_PUBLIC_IO_9PFS_H__27#define __XEN_PUBLIC_IO_9PFS_H__2829#include "../grant_table.h"30#include "ring.h"3132/*33* See docs/misc/9pfs.markdown in xen.git for the full specification:34* https://xenbits.xen.org/docs/unstable/misc/9pfs.html35*/36DEFINE_XEN_FLEX_RING_AND_INTF(xen_9pfs);3738#endif3940/*41* Local variables:42* mode: C43* c-file-style: "BSD"44* c-basic-offset: 445* tab-width: 446* indent-tabs-mode: nil47* End:48*/495051