]> granicus.if.org Git - strace/blob - statfs.h
rtnl_link: use internal rtnl_link_stats* and ifla_port_vsi definitions
[strace] / statfs.h
1 /*
2  * Copyright (c) 2016-2018 Dmitry V. Levin <ldv@altlinux.org>
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: LGPL-2.1-or-later
6  */
7
8 #ifndef STRACE_STATFS_H
9 # define STRACE_STATFS_H
10
11 struct strace_statfs {
12         unsigned long long f_type;
13         unsigned long long f_bsize;
14         unsigned long long f_blocks;
15         unsigned long long f_bfree;
16         unsigned long long f_bavail;
17         unsigned long long f_files;
18         unsigned long long f_ffree;
19         unsigned long f_fsid[2];
20         unsigned long long f_namelen;
21         unsigned long long f_frsize;
22         unsigned long long f_flags;
23 };
24
25 #endif /* !STRACE_STATFS_H */