xref: /illumos-gate/usr/src/lib/lib9p/common/backend/fs.h (revision aa693e99)
1*aa693e99SJason King 
2*aa693e99SJason King /*
3*aa693e99SJason King  * Copyright 2016 Chris Torek <torek@ixsystems.com>
4*aa693e99SJason King  * All rights reserved
5*aa693e99SJason King  *
6*aa693e99SJason King  * Redistribution and use in source and binary forms, with or without
7*aa693e99SJason King  * modification, are permitted providing that the following conditions
8*aa693e99SJason King  * are met:
9*aa693e99SJason King  * 1. Redistributions of source code must retain the above copyright
10*aa693e99SJason King  *    notice, this list of conditions and the following disclaimer.
11*aa693e99SJason King  * 2. Redistributions in binary form must reproduce the above copyright
12*aa693e99SJason King  *    notice, this list of conditions and the following disclaimer in the
13*aa693e99SJason King  *    documentation and/or other materials provided with the distribution.
14*aa693e99SJason King  *
15*aa693e99SJason King  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16*aa693e99SJason King  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17*aa693e99SJason King  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18*aa693e99SJason King  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
19*aa693e99SJason King  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20*aa693e99SJason King  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21*aa693e99SJason King  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22*aa693e99SJason King  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
23*aa693e99SJason King  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
24*aa693e99SJason King  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25*aa693e99SJason King  * POSSIBILITY OF SUCH DAMAGE.
26*aa693e99SJason King  *
27*aa693e99SJason King  */
28*aa693e99SJason King 
29*aa693e99SJason King #ifndef LIB9P_BACKEND_FS_H
30*aa693e99SJason King #define LIB9P_BACKEND_FS_H
31*aa693e99SJason King 
32*aa693e99SJason King #include <stdbool.h>
33*aa693e99SJason King #include "backend.h"
34*aa693e99SJason King 
35*aa693e99SJason King int l9p_backend_fs_init(struct l9p_backend **backendp, int rootfd, bool ro);
36*aa693e99SJason King 
37*aa693e99SJason King #endif  /* LIB9P_BACKEND_FS_H */
38