qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] linux-user: Improve strace output of getgroups() and setgrou


From: Laurent Vivier
Subject: Re: [PATCH] linux-user: Improve strace output of getgroups() and setgroups()
Date: Thu, 26 Jan 2023 17:12:57 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.0

Le 15/01/2023 à 22:00, Helge Deller a écrit :
Make the strace look nicer for those syscalls.

Signed-off-by: Helge Deller <deller@gmx.de>
---
  linux-user/strace.list | 8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/linux-user/strace.list b/linux-user/strace.list
index 3924046426..7c1124a718 100644
--- a/linux-user/strace.list
+++ b/linux-user/strace.list
@@ -321,10 +321,10 @@
  { TARGET_NR_getgid32, "getgid32" , NULL, NULL, NULL },
  #endif
  #ifdef TARGET_NR_getgroups
-{ TARGET_NR_getgroups, "getgroups" , NULL, NULL, NULL },
+{ TARGET_NR_getgroups, "getgroups" , "%s(%d,%p)", NULL, NULL },
  #endif
  #ifdef TARGET_NR_getgroups32
-{ TARGET_NR_getgroups32, "getgroups32" , NULL, NULL, NULL },
+{ TARGET_NR_getgroups32, "getgroups32" , "%s(%d,%p)", NULL, NULL },
  #endif
  #ifdef TARGET_NR_gethostname
  { TARGET_NR_gethostname, "gethostname" , NULL, NULL, NULL },
@@ -1308,10 +1308,10 @@
  { TARGET_NR_setgid32, "setgid32" , "%s(%u)", NULL, NULL },
  #endif
  #ifdef TARGET_NR_setgroups
-{ TARGET_NR_setgroups, "setgroups" , NULL, NULL, NULL },
+{ TARGET_NR_setgroups, "setgroups" , "%s(%d,%p)", NULL, NULL },
  #endif
  #ifdef TARGET_NR_setgroups32
-{ TARGET_NR_setgroups32, "setgroups32" , NULL, NULL, NULL },
+{ TARGET_NR_setgroups32, "setgroups32" , "%s(%d,%p)", NULL, NULL },
  #endif
  #ifdef TARGET_NR_sethae
  { TARGET_NR_sethae, "sethae" , NULL, NULL, NULL },
--
2.38.1


Applied to my linux-user-for-8.0 branch.

Thanks,
Laurent





reply via email to

[Prev in Thread] Current Thread [Next in Thread]