mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
hw/9pfs : open brace '{' following struct go on the same line
Fix code style. Open braces for struct should go on the same line. Signed-off-by: Xinhao Zhang <zhangxinhao1@huawei.com> Signed-off-by: Kai Deng <dengkai1@huawei.com> Reported-by: Euler Robot <euler.robot@huawei.com> Reviewed-by: Greg Kurz <groug@kaod.org> Message-Id: <20201030043515.1030223-2-zhangxinhao1@huawei.com> Signed-off-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
This commit is contained in:
parent
01011733ea
commit
487729e9f6
@ -143,8 +143,7 @@ typedef struct {
|
|||||||
*/
|
*/
|
||||||
QEMU_BUILD_BUG_ON(sizeof(P9MsgHeader) != 7);
|
QEMU_BUILD_BUG_ON(sizeof(P9MsgHeader) != 7);
|
||||||
|
|
||||||
struct V9fsPDU
|
struct V9fsPDU {
|
||||||
{
|
|
||||||
uint32_t size;
|
uint32_t size;
|
||||||
uint16_t tag;
|
uint16_t tag;
|
||||||
uint8_t id;
|
uint8_t id;
|
||||||
@ -270,8 +269,7 @@ union V9fsFidOpenState {
|
|||||||
void *private;
|
void *private;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct V9fsFidState
|
struct V9fsFidState {
|
||||||
{
|
|
||||||
int fid_type;
|
int fid_type;
|
||||||
int32_t fid;
|
int32_t fid;
|
||||||
V9fsPath path;
|
V9fsPath path;
|
||||||
@ -338,8 +336,7 @@ typedef struct {
|
|||||||
uint64_t path;
|
uint64_t path;
|
||||||
} QpfEntry;
|
} QpfEntry;
|
||||||
|
|
||||||
struct V9fsState
|
struct V9fsState {
|
||||||
{
|
|
||||||
QLIST_HEAD(, V9fsPDU) free_list;
|
QLIST_HEAD(, V9fsPDU) free_list;
|
||||||
QLIST_HEAD(, V9fsPDU) active_list;
|
QLIST_HEAD(, V9fsPDU) active_list;
|
||||||
V9fsFidState *fid_list;
|
V9fsFidState *fid_list;
|
||||||
|
Loading…
Reference in New Issue
Block a user