git: 8e3bd18c37f2 - stable/14 - Translate linux_newlstat name argument

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Wed, 27 Mar 2024 08:27:41 UTC
The branch stable/14 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=8e3bd18c37f2f77988b2819f6c4b493dfa42370d

commit 8e3bd18c37f2f77988b2819f6c4b493dfa42370d
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:23 +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 f9763d10c1b4..47d6aef8f6ff 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,