summaryrefslogtreecommitdiff
path: root/arch/mips64/kstat.h
blob: 9a4468b4ffe5a6dc5694934fe882d6166a691144 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
struct kstat {
	unsigned st_dev;
	int __pad1[3];
	ino_t st_ino;
	mode_t st_mode;
	unsigned st_nlink;
	uid_t st_uid;
	gid_t st_gid;
	unsigned st_rdev;
	int __pad2[3];
	off_t st_size;
	int st_atime_sec;
	int st_atime_nsec;
	int st_mtime_sec;
	int st_mtime_nsec;
	int st_ctime_sec;
	int st_ctime_nsec;
	unsigned st_blksize;
	unsigned __pad3;
	blkcnt_t st_blocks;
};