[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 51/51] bsd-user: Add stubs for vadvise(), sbrk() and sstk()
|
From: |
Warner Losh |
|
Subject: |
[PULL 51/51] bsd-user: Add stubs for vadvise(), sbrk() and sstk() |
|
Date: |
Tue, 3 Oct 2023 17:32:15 -0600 |
The above system calls are not supported by qemu.
Signed-off-by: Warner Losh <imp@bsdimp.com>
Signed-off-by: Karim Taha <kariem.taha2.7@gmail.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230925182709.4834-24-kariem.taha2.7@gmail.com>
---
bsd-user/bsd-mem.h | 18 ++++++++++++++++++
bsd-user/freebsd/os-syscall.c | 12 ++++++++++++
2 files changed, 30 insertions(+)
diff --git a/bsd-user/bsd-mem.h b/bsd-user/bsd-mem.h
index c512a4e3756..c3e72e3b866 100644
--- a/bsd-user/bsd-mem.h
+++ b/bsd-user/bsd-mem.h
@@ -431,4 +431,22 @@ static inline abi_long do_bsd_shmdt(abi_ulong shmaddr)
return ret;
}
+static inline abi_long do_bsd_vadvise(void)
+{
+ /* See sys_ovadvise() in vm_unix.c */
+ return -TARGET_EINVAL;
+}
+
+static inline abi_long do_bsd_sbrk(void)
+{
+ /* see sys_sbrk() in vm_mmap.c */
+ return -TARGET_EOPNOTSUPP;
+}
+
+static inline abi_long do_bsd_sstk(void)
+{
+ /* see sys_sstk() in vm_mmap.c */
+ return -TARGET_EOPNOTSUPP;
+}
+
#endif /* BSD_USER_BSD_MEM_H */
diff --git a/bsd-user/freebsd/os-syscall.c b/bsd-user/freebsd/os-syscall.c
index 39e66312da1..ca2f6fdb66e 100644
--- a/bsd-user/freebsd/os-syscall.c
+++ b/bsd-user/freebsd/os-syscall.c
@@ -879,6 +879,18 @@ static abi_long freebsd_syscall(void *cpu_env, int num,
abi_long arg1,
ret = do_bsd_shmdt(arg1);
break;
+ case TARGET_FREEBSD_NR_freebsd11_vadvise:
+ ret = do_bsd_vadvise();
+ break;
+
+ case TARGET_FREEBSD_NR_sbrk:
+ ret = do_bsd_sbrk();
+ break;
+
+ case TARGET_FREEBSD_NR_sstk:
+ ret = do_bsd_sstk();
+ break;
+
/*
* Misc
*/
--
2.41.0
- [PULL 35/51] bsd-user: Add bsd-mem.c to meson.build, (continued)
- [PULL 35/51] bsd-user: Add bsd-mem.c to meson.build, Warner Losh, 2023/10/03
- [PULL 42/51] bsd-user: Implement msync(2), Warner Losh, 2023/10/03
- [PULL 41/51] bsd-user: Implement mprotect(2), Warner Losh, 2023/10/03
- [PULL 43/51] bsd-user: Implement mlock(2), munlock(2), mlockall(2), munlockall(2), minherit(2), Warner Losh, 2023/10/03
- [PULL 38/51] bsd-user: Implement shmid_ds conversion between host and target., Warner Losh, 2023/10/03
- [PULL 45/51] bsd-user: Implement mincore(2), Warner Losh, 2023/10/03
- [PULL 49/51] bsd-user: Implement shmctl(2), Warner Losh, 2023/10/03
- [PULL 48/51] bsd-user: Implement shm_unlink(2) and shmget(2), Warner Losh, 2023/10/03
- [PULL 46/51] bsd-user: Implement do_obreak function, Warner Losh, 2023/10/03
- [PULL 44/51] bsd-user: Implment madvise(2) to match the linux-user implementation., Warner Losh, 2023/10/03
- [PULL 51/51] bsd-user: Add stubs for vadvise(), sbrk() and sstk(),
Warner Losh <=
- [PULL 50/51] bsd-user: Implement shmat(2) and shmdt(2), Warner Losh, 2023/10/03
- [PULL 47/51] bsd-user: Implement shm_open(2), Warner Losh, 2023/10/03
- Re: [PULL 00/51] Bsd user mmap patches, Stefan Hajnoczi, 2023/10/05