(root)/
strace-6.5/
src/
statfs.h
       1  /*
       2   * Copyright (c) 2016-2021 Dmitry V. Levin <ldv@strace.io>
       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  	struct {
      20  		unsigned long long val[2];
      21  	} f_fsid;
      22  	unsigned long long f_namelen;
      23  	unsigned long long f_frsize;
      24  	unsigned long long f_flags;
      25  };
      26  
      27  #endif /* !STRACE_STATFS_H */