Statistics
| Branch: | Revision:

root / fsdev / qemu-fsdev.c @ 74db920c

History | View | Annotate | Download (1.6 kB)

1
/*
2
 * Virtio 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 <stdio.h>
14
#include <string.h>
15
#include "qemu-fsdev.h"
16
#include "qemu-queue.h"
17
#include "osdep.h"
18
#include "qemu-common.h"
19

    
20
static QTAILQ_HEAD(FsTypeEntry_head, FsTypeListEntry) fstype_entries =
21
    QTAILQ_HEAD_INITIALIZER(fstype_entries);
22

    
23
static FsTypeTable FsTypes[] = {
24
    { .name = "local", .ops = NULL},
25
};
26

    
27
int qemu_fsdev_add(QemuOpts *opts)
28
{
29
    struct FsTypeListEntry *fsle;
30
    int i;
31

    
32
    if (qemu_opts_id(opts) == NULL) {
33
        fprintf(stderr, "fsdev: No id specified\n");
34
        return -1;
35
    }
36

    
37
     for (i = 0; i < ARRAY_SIZE(FsTypes); i++) {
38
        if (strcmp(FsTypes[i].name, qemu_opt_get(opts, "fstype")) == 0) {
39
            break;
40
        }
41
    }
42

    
43
    if (i == ARRAY_SIZE(FsTypes)) {
44
        fprintf(stderr, "fsdev: fstype %s not found\n",
45
                    qemu_opt_get(opts, "fstype"));
46
        return -1;
47
    }
48

    
49
    fsle = qemu_malloc(sizeof(*fsle));
50

    
51
    fsle->fse.fsdev_id = qemu_strdup(qemu_opts_id(opts));
52
    fsle->fse.path = qemu_strdup(qemu_opt_get(opts, "path"));
53
    fsle->fse.ops = FsTypes[i].ops;
54

    
55
    QTAILQ_INSERT_TAIL(&fstype_entries, fsle, next);
56
    return 0;
57

    
58
}
59

    
60
FsTypeEntry *get_fsdev_fsentry(char *id)
61
{
62
    struct FsTypeListEntry *fsle;
63

    
64
    QTAILQ_FOREACH(fsle, &fstype_entries, next) {
65
        if (strcmp(fsle->fse.fsdev_id, id) == 0) {
66
            return &fsle->fse;
67
        }
68
    }
69
    return NULL;
70
}