Author: jhb
Date: Sat Jun 10 00:53:00 2017
New Revision: 319764
URL: https://svnweb.freebsd.org/changeset/base/319764

Log:
  Decode the arguments to quotactl().

Modified:
  head/usr.bin/truss/syscall.h
  head/usr.bin/truss/syscalls.c

Modified: head/usr.bin/truss/syscall.h
==============================================================================
--- head/usr.bin/truss/syscall.h        Sat Jun 10 00:45:07 2017        
(r319763)
+++ head/usr.bin/truss/syscall.h        Sat Jun 10 00:53:00 2017        
(r319764)
@@ -50,7 +50,7 @@ enum Argtype { None = 1, Hex, Octal, Int, UInt, LongHe
        Kldunloadflags, Sizet, Madvice, Socklent, Sockprotocol, Sockoptlevel,
        Sockoptname, Msgflags, CapRights, PUInt, PQuadHex, Acltype,
        Extattrnamespace, Minherit, Mlockall, Mountflags, Msync, Priowhich,
-       Ptraceop,
+       Ptraceop, Quotactlcmd,
 
        CloudABIAdvice, CloudABIClockID, ClouduABIFDSFlags,
        CloudABIFDStat, CloudABIFileStat, CloudABIFileType,

Modified: head/usr.bin/truss/syscalls.c
==============================================================================
--- head/usr.bin/truss/syscalls.c       Sat Jun 10 00:45:07 2017        
(r319763)
+++ head/usr.bin/truss/syscalls.c       Sat Jun 10 00:53:00 2017        
(r319764)
@@ -366,6 +366,8 @@ static struct syscall decoded_syscalls[] = {
        { .name = "pwrite", .ret_type = 1, .nargs = 4,
          .args = { { Int, 0 }, { BinString | IN, 1 }, { Sizet, 2 },
                    { QuadHex, 3 } } },
+       { .name = "quotactl", .ret_type = 1, .nargs = 4,
+         .args = { { Name, 0 }, { Quotactlcmd, 1 }, { Int, 2 }, { Ptr, 3 } } },
        { .name = "read", .ret_type = 1, .nargs = 3,
          .args = { { Int, 0 }, { BinString | OUT, 1 }, { Sizet, 2 } } },
        { .name = "readlink", .ret_type = 1, .nargs = 3,
@@ -2135,6 +2137,10 @@ print_arg(struct syscall_args *sc, unsigned long *args
        case Ptraceop:
                print_integer_arg(sysdecode_ptrace_request, fp,
                    args[sc->offset]);
+               break;
+       case Quotactlcmd:
+               if (!sysdecode_quotactl_cmd(fp, args[sc->offset]))
+                       fprintf(fp, "%#x", (int)args[sc->offset]);
                break;
 
        case CloudABIAdvice:
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to