qemu-fsdev.c (e688df6bc4549f28534cdb001f168b8caae55b0c) qemu-fsdev.c (922a01a013d2270682a188258cbccacfecf8129c)
1/*
2 * 9p
3 *
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#include "qemu/osdep.h"
14#include "qapi/error.h"
15#include "qemu-fsdev.h"
16#include "qemu/queue.h"
1/*
2 * 9p
3 *
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#include "qemu/osdep.h"
14#include "qapi/error.h"
15#include "qemu-fsdev.h"
16#include "qemu/queue.h"
17#include "qemu-common.h"
18#include "qemu/config-file.h"
19#include "qemu/error-report.h"
17#include "qemu/config-file.h"
18#include "qemu/error-report.h"
19#include "qemu/option.h"
20
21static QTAILQ_HEAD(FsDriverEntry_head, FsDriverListEntry) fsdriver_entries =
22 QTAILQ_HEAD_INITIALIZER(fsdriver_entries);
23
24static FsDriverTable FsDrivers[] = {
25 { .name = "local", .ops = &local_ops},
26#ifdef CONFIG_OPEN_BY_HANDLE
27 { .name = "handle", .ops = &handle_ops},

--- 76 unchanged lines hidden ---
20
21static QTAILQ_HEAD(FsDriverEntry_head, FsDriverListEntry) fsdriver_entries =
22 QTAILQ_HEAD_INITIALIZER(fsdriver_entries);
23
24static FsDriverTable FsDrivers[] = {
25 { .name = "local", .ops = &local_ops},
26#ifdef CONFIG_OPEN_BY_HANDLE
27 { .name = "handle", .ops = &handle_ops},

--- 76 unchanged lines hidden ---