Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/AnonR/anonr.TX.../usr/include/asm-gene...
File: statfs.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
#ifndef _GENERIC_STATFS_H
[1] Fix | Delete
#define _GENERIC_STATFS_H
[2] Fix | Delete
[3] Fix | Delete
#include <linux/types.h>
[4] Fix | Delete
[5] Fix | Delete
[6] Fix | Delete
/*
[7] Fix | Delete
* Most 64-bit platforms use 'long', while most 32-bit platforms use '__u32'.
[8] Fix | Delete
* Yes, they differ in signedness as well as size.
[9] Fix | Delete
* Special cases can override it for themselves -- except for S390x, which
[10] Fix | Delete
* is just a little too special for us. And MIPS, which I'm not touching
[11] Fix | Delete
* with a 10' pole.
[12] Fix | Delete
*/
[13] Fix | Delete
#ifndef __statfs_word
[14] Fix | Delete
#if __BITS_PER_LONG == 64
[15] Fix | Delete
#define __statfs_word __kernel_long_t
[16] Fix | Delete
#else
[17] Fix | Delete
#define __statfs_word __u32
[18] Fix | Delete
#endif
[19] Fix | Delete
#endif
[20] Fix | Delete
[21] Fix | Delete
struct statfs {
[22] Fix | Delete
__statfs_word f_type;
[23] Fix | Delete
__statfs_word f_bsize;
[24] Fix | Delete
__statfs_word f_blocks;
[25] Fix | Delete
__statfs_word f_bfree;
[26] Fix | Delete
__statfs_word f_bavail;
[27] Fix | Delete
__statfs_word f_files;
[28] Fix | Delete
__statfs_word f_ffree;
[29] Fix | Delete
__kernel_fsid_t f_fsid;
[30] Fix | Delete
__statfs_word f_namelen;
[31] Fix | Delete
__statfs_word f_frsize;
[32] Fix | Delete
__statfs_word f_flags;
[33] Fix | Delete
__statfs_word f_spare[4];
[34] Fix | Delete
};
[35] Fix | Delete
[36] Fix | Delete
/*
[37] Fix | Delete
* ARM needs to avoid the 32-bit padding at the end, for consistency
[38] Fix | Delete
* between EABI and OABI
[39] Fix | Delete
*/
[40] Fix | Delete
#ifndef ARCH_PACK_STATFS64
[41] Fix | Delete
#define ARCH_PACK_STATFS64
[42] Fix | Delete
#endif
[43] Fix | Delete
[44] Fix | Delete
struct statfs64 {
[45] Fix | Delete
__statfs_word f_type;
[46] Fix | Delete
__statfs_word f_bsize;
[47] Fix | Delete
__u64 f_blocks;
[48] Fix | Delete
__u64 f_bfree;
[49] Fix | Delete
__u64 f_bavail;
[50] Fix | Delete
__u64 f_files;
[51] Fix | Delete
__u64 f_ffree;
[52] Fix | Delete
__kernel_fsid_t f_fsid;
[53] Fix | Delete
__statfs_word f_namelen;
[54] Fix | Delete
__statfs_word f_frsize;
[55] Fix | Delete
__statfs_word f_flags;
[56] Fix | Delete
__statfs_word f_spare[4];
[57] Fix | Delete
} ARCH_PACK_STATFS64;
[58] Fix | Delete
[59] Fix | Delete
/*
[60] Fix | Delete
* IA64 and x86_64 need to avoid the 32-bit padding at the end,
[61] Fix | Delete
* to be compatible with the i386 ABI
[62] Fix | Delete
*/
[63] Fix | Delete
#ifndef ARCH_PACK_COMPAT_STATFS64
[64] Fix | Delete
#define ARCH_PACK_COMPAT_STATFS64
[65] Fix | Delete
#endif
[66] Fix | Delete
[67] Fix | Delete
struct compat_statfs64 {
[68] Fix | Delete
__u32 f_type;
[69] Fix | Delete
__u32 f_bsize;
[70] Fix | Delete
__u64 f_blocks;
[71] Fix | Delete
__u64 f_bfree;
[72] Fix | Delete
__u64 f_bavail;
[73] Fix | Delete
__u64 f_files;
[74] Fix | Delete
__u64 f_ffree;
[75] Fix | Delete
__kernel_fsid_t f_fsid;
[76] Fix | Delete
__u32 f_namelen;
[77] Fix | Delete
__u32 f_frsize;
[78] Fix | Delete
__u32 f_flags;
[79] Fix | Delete
__u32 f_spare[4];
[80] Fix | Delete
} ARCH_PACK_COMPAT_STATFS64;
[81] Fix | Delete
[82] Fix | Delete
#endif /* _GENERIC_STATFS_H */
[83] Fix | Delete
[84] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function