Commit eeb6b45d48800e96f67ef2a5c80332557fd45ddb (block: raw-posix image file reopen) broke the build on OpenIndiana.
illumos has no O_ASYNC. Exclude it from flags to be compared and use I_SETSIG ioctl after newly opening file. Cf. e61ab1da7e98357da47c54d8f893b9bd6ff2f7f9 for qemu-ga. Cc: qemu-sta...@nongnu.org (1.3.x) Cc: Jeff Cody <jc...@redhat.com> Signed-off-by: Andreas Färber <andreas.faer...@web.de> --- block/raw-posix.c | 14 +++++++++++++- 1 Datei geändert, 13 Zeilen hinzugefügt(+), 1 Zeile entfernt(-) diff --git a/block/raw-posix.c b/block/raw-posix.c index 657af95..336c938 100644 --- a/block/raw-posix.c +++ b/block/raw-posix.c @@ -46,6 +46,7 @@ #ifdef __sun__ #define _POSIX_PTHREAD_SEMANTICS 1 #include <sys/dkio.h> +#include <stropts.h> #endif #ifdef __linux__ #include <sys/types.h> @@ -345,7 +346,10 @@ static int raw_reopen_prepare(BDRVReopenState *state, raw_s->fd = -1; - int fcntl_flags = O_APPEND | O_ASYNC | O_NONBLOCK; + int fcntl_flags = O_APPEND | O_NONBLOCK; +#ifndef CONFIG_SOLARIS + fcntl_flags |= O_ASYNC; +#endif #ifdef O_NOATIME fcntl_flags |= O_NOATIME; #endif @@ -376,6 +380,14 @@ static int raw_reopen_prepare(BDRVReopenState *state, raw_s->fd = qemu_open(state->bs->filename, raw_s->open_flags); if (raw_s->fd == -1) { ret = -1; + } else { +#ifdef CONFIG_SOLARIS + ret = ioctl(raw_s->fd, I_SETSIG, S_OUTPUT | S_INPUT | S_HIPRI); + if (ret == -1) { + qemu_close(raw_s->fd); + raw_s->fd = -1; + } +#endif } } return ret; -- 1.7.10.4