2011-06-01 11:05:13 +04:00
|
|
|
/*
|
2016-06-06 12:52:34 +03:00
|
|
|
* 9p
|
2011-06-01 11:05:13 +04:00
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2010
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Gautham R Shenoy <ego@in.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
2019-05-23 17:35:07 +03:00
|
|
|
|
2016-01-26 21:17:10 +03:00
|
|
|
#include "qemu/osdep.h"
|
2011-06-01 11:05:13 +04:00
|
|
|
#include "qemu-fsdev.h"
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/config-file.h"
|
2011-06-01 11:05:13 +04:00
|
|
|
|
2018-10-17 11:26:55 +03:00
|
|
|
int qemu_fsdev_add(QemuOpts *opts, Error **errp)
|
2011-06-01 11:05:13 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|