aboutsummaryrefslogtreecommitdiff
path: root/linux-user/alpha
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2021-02-01 16:59:22 +0100
committerLaurent Vivier <laurent@vivier.eu>2021-02-13 22:50:49 +0100
commit23b311155078bdd5bacc016ff3b3ebb5462b10c0 (patch)
tree400eb4842107bfb91bf404a23a21818071cf1527 /linux-user/alpha
parent1c3dfb506ea3decd17ec69ed6eaf611a885b9f59 (diff)
downloadqemu-23b311155078bdd5bacc016ff3b3ebb5462b10c0.zip
qemu-23b311155078bdd5bacc016ff3b3ebb5462b10c0.tar.gz
qemu-23b311155078bdd5bacc016ff3b3ebb5462b10c0.tar.bz2
linux-user: Add missing TARGET___O_TMPFILE for hppa and alpha
The hppa and alpha targets miss the #define of the TARGET___O_TMPFILE and as such fail to run a trivial symlink command like ln -s /bin/bash /tmp which results in an -EINVAL return code. Adding the define fixes the problem. Signed-off-by: Helge Deller <deller@gmx.de> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20210201155922.GA18291@ls3530.fritz.box> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/alpha')
-rw-r--r--linux-user/alpha/target_fcntl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/alpha/target_fcntl.h b/linux-user/alpha/target_fcntl.h
index e16ed1d..99774d7 100644
--- a/linux-user/alpha/target_fcntl.h
+++ b/linux-user/alpha/target_fcntl.h
@@ -23,6 +23,7 @@
#define TARGET_O_CLOEXEC 010000000
#define TARGET___O_SYNC 020000000
#define TARGET_O_PATH 040000000
+#define TARGET___O_TMPFILE 0100000000
#define TARGET_F_GETLK 7
#define TARGET_F_SETLK 8