]> git.proxmox.com Git - qemu.git/blame - hw/9p.h
virtio-blk: Avoid zeroing every request structure
[qemu.git] / hw / 9p.h
CommitLineData
9f107513
AL
1/*
2 * Virtio 9p
3 *
4 * Copyright IBM, Corp. 2010
5 *
6 * Authors:
7 * Aneesh Kumar K.V <aneesh.kumar@linux.vnet.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
14#ifndef QEMU_9P_H
15#define QEMU_9P_H
16
17#include <stdbool.h>
18
19typedef struct V9fsConf
20{
21 /* tag name for the device */
22 char *tag;
23 char *fsdev_id;
24} V9fsConf;
25
26#endif