mirror of https://gitee.com/openkylin/qemu.git
9p: don't include <sys/uio.h>
The <sys/uio.h> system header doesn't exist on all host platforms. Code should include "qemu/osdep.h" instead to avoid build breaks on plafforms that don't define CONFIG_IOVEC (like win32, if it is to support 9p one day). Acked-by: Cédric Le Goater <clg@kaod.org> Acked-by: Michael Fritscher <michael@fritscher.net> Signed-off-by: Greg Kurz <gkurz@linux.vnet.ibm.com>
This commit is contained in:
parent
94e31093ff
commit
8d85a22aab
|
@ -14,7 +14,6 @@
|
|||
#include "qemu/osdep.h"
|
||||
#include <glib/gprintf.h>
|
||||
#include <utime.h>
|
||||
#include <sys/uio.h>
|
||||
|
||||
#include "9p-iov-marshal.h"
|
||||
#include "qemu/bswap.h"
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
#include <glib/gprintf.h>
|
||||
#include <dirent.h>
|
||||
#include <utime.h>
|
||||
#include <sys/uio.h>
|
||||
|
||||
#include "9p-marshal.h"
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
#define _FILEOP_H
|
||||
#include <dirent.h>
|
||||
#include <utime.h>
|
||||
#include <sys/uio.h>
|
||||
#include <sys/vfs.h>
|
||||
|
||||
#define SM_LOCAL_MODE_BITS 0600
|
||||
|
|
Loading…
Reference in New Issue