* [Qemu-devel] [PATCH] virtio-9p: Allow O_NOCTTY flag in open().
@ 2010-08-11 13:53 Sripathi Kodi
0 siblings, 0 replies; only message in thread
From: Sripathi Kodi @ 2010-08-11 13:53 UTC (permalink / raw)
To: qemu-devel
Currently virtio-9p server doesn't allow O_NOCTTY flag in open().
However, gcc passes this flag while opening files. As a result it
is now impossible to compile any C code on the 9P mount!
I don't see any reason for dis-allowing O_NOCTTY flag in QEMU 9P server.
AFAIK QEMU starts off with a controlling terminal, so calling open with
O_NOCTTY flag is not going to make any difference to QEMU.
The following patch makes 9P server allow O_NOCTTY flag in open().
Signed-off-by: Sripathi Kodi <sripathik@in.ibm.com>
---
hw/virtio-9p.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
index 24115ef..f3b8bce 100644
--- a/hw/virtio-9p.c
+++ b/hw/virtio-9p.c
@@ -1676,11 +1676,11 @@ out:
static inline int valid_flags(int flag)
{
- if (flag & O_NOCTTY || flag & O_NONBLOCK || flag & O_ASYNC ||
- flag & O_CLOEXEC)
+ if (flag & O_NONBLOCK || flag & O_ASYNC || flag & O_CLOEXEC) {
return 0;
- else
+ } else {
return 1;
+ }
}
static void v9fs_open_post_lstat(V9fsState *s, V9fsOpenState *vs, int err)
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2010-08-11 13:54 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-11 13:53 [Qemu-devel] [PATCH] virtio-9p: Allow O_NOCTTY flag in open() Sripathi Kodi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).