blob: 52a53977701a6a3c95a2463387dac5ab64b960a5 [file] [log] [blame]
Gautham R Shenoy74db9202010-04-29 17:44:43 +05301/*
Greg Kurzaf8b38b2016-06-06 11:52:34 +02002 * 9p
Gautham R Shenoy74db9202010-04-29 17:44:43 +05303 *
4 * Copyright IBM, Corp. 2010
5 *
6 * Authors:
7 * Gautham R Shenoy <ego@in.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13#ifndef QEMU_FSDEV_H
14#define QEMU_FSDEV_H
Aneesh Kumar K.V353ac782011-01-28 18:09:08 +053015#include "file-op-9p.h"
Gautham R Shenoy74db9202010-04-29 17:44:43 +053016
Markus Armbrusterb8367232018-10-17 10:26:55 +020017int qemu_fsdev_add(QemuOpts *opts, Error **errp);
Aneesh Kumar K.Vfbcbf102011-10-13 12:28:04 +053018FsDriverEntry *get_fsdev_fsentry(char *id);
Anthony Liguori9f107512010-04-29 17:44:44 +053019extern FileOperations local_ops;
Aneesh Kumar K.V9db221a2011-10-25 12:10:40 +053020extern FileOperations synth_ops;
M. Mohan Kumar4c793dd2011-12-14 13:49:28 +053021extern FileOperations proxy_ops;
Gautham R Shenoy74db9202010-04-29 17:44:43 +053022#endif