projects
/
profile
/
ivi
/
kernel-adaptation-intel-automotive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
726592a
)
mips: get rid of nlink_t, use explictly-sized type (__u32 in all cases)
author
Al Viro
<viro@zeniv.linux.org.uk>
Sat, 19 May 2012 14:13:52 +0000
(10:13 -0400)
committer
Al Viro
<viro@zeniv.linux.org.uk>
Wed, 30 May 2012 03:28:42 +0000
(23:28 -0400)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
arch/mips/include/asm/stat.h
patch
|
blob
|
history
diff --git
a/arch/mips/include/asm/stat.h
b/arch/mips/include/asm/stat.h
index
6e00f75
..
fe9a4c3
100644
(file)
--- a/
arch/mips/include/asm/stat.h
+++ b/
arch/mips/include/asm/stat.h
@@
-20,7
+20,7
@@
struct stat {
long st_pad1[3]; /* Reserved for network id */
ino_t st_ino;
mode_t st_mode;
-
nlink_t
st_nlink;
+
__u32
st_nlink;
uid_t st_uid;
gid_t st_gid;
unsigned st_rdev;
@@
-55,7
+55,7
@@
struct stat64 {
unsigned long long st_ino;
mode_t st_mode;
-
nlink_t
st_nlink;
+
__u32
st_nlink;
uid_t st_uid;
gid_t st_gid;
@@
-96,7
+96,7
@@
struct stat {
unsigned long st_ino;
mode_t st_mode;
-
nlink_t
st_nlink;
+
__u32
st_nlink;
uid_t st_uid;
gid_t st_gid;