From 0fd7bee1e9b68fd271ad87c3e705facd1ca38055 Mon Sep 17 00:00:00 2001 From: Anton Blanchard Date: Sat, 2 Jun 2012 21:34:52 +1000 Subject: powerpc: Fix size of st_nlink on 64bit commit e57f93cc53b7 (powerpc: get rid of nlink_t uses, switch to explicitly-sized type) changed the size of st_nlink on ppc64 from a long to a short, resulting in boot failures. Signed-off-by: Anton Blanchard Signed-off-by: Al Viro --- arch/powerpc/include/asm/stat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch/powerpc') diff --git a/arch/powerpc/include/asm/stat.h b/arch/powerpc/include/asm/stat.h index 10cfb558e0fd..84880b80cc1c 100644 --- a/arch/powerpc/include/asm/stat.h +++ b/arch/powerpc/include/asm/stat.h @@ -30,7 +30,7 @@ struct stat { unsigned long st_dev; ino_t st_ino; #ifdef __powerpc64__ - unsigned short st_nlink; + unsigned long st_nlink; mode_t st_mode; #else mode_t st_mode; -- cgit v1.2.3-59-g8ed1b