]> granicus.if.org Git - strace/blob - umount.c
rtnl_link: print pad field in the struct ifla_port_vsi decoder
[strace] / umount.c
1 /*
2  * Copyright (c) 2014-2018 The strace developers.
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: LGPL-2.1-or-later
6  */
7
8 #include "defs.h"
9 #include "xlat/umount_flags.h"
10
11 SYS_FUNC(umount2)
12 {
13         printpath(tcp, tcp->u_arg[0]);
14         tprints(", ");
15         printflags(umount_flags, tcp->u_arg[1], "MNT_???");
16
17         return RVAL_DECODED;
18 }