aboutsummaryrefslogtreecommitdiff
path: root/bsd-user/freebsd
diff options
context:
space:
mode:
authorWarner Losh <imp@bsdimp.com>2022-06-12 08:21:01 -0600
committerWarner Losh <imp@bsdimp.com>2022-06-14 08:17:31 -0600
commit1ffbd5e7feae239aa2d6d986f086c57a5835720a (patch)
treea711f7da3d4260bee81f21706720e5c23269b9eb /bsd-user/freebsd
parent2d3b7e01d6ba9f6dcb86782484da42766ef7fef0 (diff)
downloadqemu-1ffbd5e7feae239aa2d6d986f086c57a5835720a.zip
qemu-1ffbd5e7feae239aa2d6d986f086c57a5835720a.tar.gz
qemu-1ffbd5e7feae239aa2d6d986f086c57a5835720a.tar.bz2
bsd-user: Implement mkdir and mkdirat
Signed-off-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user/freebsd')
-rw-r--r--bsd-user/freebsd/os-syscall.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/bsd-user/freebsd/os-syscall.c b/bsd-user/freebsd/os-syscall.c
index c847e4d..9381ddb 100644
--- a/bsd-user/freebsd/os-syscall.c
+++ b/bsd-user/freebsd/os-syscall.c
@@ -333,6 +333,14 @@ static abi_long freebsd_syscall(void *cpu_env, int num, abi_long arg1,
ret = do_bsd_unlinkat(arg1, arg2, arg3);
break;
+ case TARGET_FREEBSD_NR_mkdir: /* mkdir(2) */
+ ret = do_bsd_mkdir(arg1, arg2);
+ break;
+
+ case TARGET_FREEBSD_NR_mkdirat: /* mkdirat(2) */
+ ret = do_bsd_mkdirat(arg1, arg2, arg3);
+ break;
+
default:
qemu_log_mask(LOG_UNIMP, "Unsupported syscall: %d\n", num);
ret = -TARGET_ENOSYS;