git: b5e7969b239f - stable/13 - Translate linux_newlstat name argument
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 27 Mar 2024 08:28:14 UTC
The branch stable/13 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=b5e7969b239f3fc2d221159aabb5bc0532ba3949 commit b5e7969b239f3fc2d221159aabb5bc0532ba3949 Author: John F. Carr <jfc@mit.edu> AuthorDate: 2024-03-20 22:44:23 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2024-03-27 08:27:53 +0000 Translate linux_newlstat name argument PR: 277847 (cherry picked from commit 55e2187a091b7c397b3682b5ded2143c43e31a18) --- usr.bin/truss/syscalls.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr.bin/truss/syscalls.c b/usr.bin/truss/syscalls.c index 010308beae3e..e7b937c78cbc 100644 --- a/usr.bin/truss/syscalls.c +++ b/usr.bin/truss/syscalls.c @@ -615,6 +615,8 @@ static const struct syscall_decode decoded_syscalls[] = { .args = { { Name | IN, 0 }, { Int, 1 } } }, { .name = "linux_newfstat", .ret_type = 1, .nargs = 2, .args = { { Int, 0 }, { Ptr | OUT, 1 } } }, + { .name = "linux_newlstat", .ret_type = 1, .nargs = 2, + .args = { { Name | IN, 0 }, { Ptr | OUT, 1 } } }, { .name = "linux_newstat", .ret_type = 1, .nargs = 2, .args = { { Name | IN, 0 }, { Ptr | OUT, 1 } } }, { .name = "linux_open", .ret_type = 1, .nargs = 3,