1 /*
2 * Copyright (c) 2014-2021 The strace developers.
3 * All rights reserved.
4 *
5 * SPDX-License-Identifier: LGPL-2.1-or-later
6 */
7
8 #include "defs.h"
9
10 SYS_FUNC(statfs64)
11 {
12 if (entering(tcp)) {
13 /* pathname */
14 printpath(tcp, tcp->u_arg[0]);
15 tprint_arg_next();
16
17 /* size */
18 PRINT_VAL_U(tcp->u_arg[1]);
19 tprint_arg_next();
20 } else {
21 /* buf */
22 print_struct_statfs64(tcp, tcp->u_arg[2], tcp->u_arg[1]);
23 }
24 return 0;
25 }