mirror of https://github.com/xqemu/xqemu.git
9p: allow compiling the dummy virtio-9p-handle.c code on Linux
Avoid a conflict on the definition of struct file_handle by using a replacement name. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
1ed520c66e
commit
f565403949
|
@ -58,11 +58,12 @@ static inline int open_by_handle(int mountfd, const char *fh, int flags)
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
|
||||||
struct file_handle {
|
struct rpl_file_handle {
|
||||||
unsigned int handle_bytes;
|
unsigned int handle_bytes;
|
||||||
int handle_type;
|
int handle_type;
|
||||||
unsigned char handle[0];
|
unsigned char handle[0];
|
||||||
};
|
};
|
||||||
|
#define file_handle rpl_file_handle
|
||||||
|
|
||||||
#ifndef AT_EMPTY_PATH
|
#ifndef AT_EMPTY_PATH
|
||||||
#define AT_EMPTY_PATH 0x1000 /* Allow empty relative pathname */
|
#define AT_EMPTY_PATH 0x1000 /* Allow empty relative pathname */
|
||||||
|
|
Loading…
Reference in New Issue