From 09551806132f732bfe966b516c54f1f006b17d18 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Thu, 12 Aug 2010 22:18:00 +0000 Subject: [PATCH] Add f_flags to struct statfs for MIPS. --- ChangeLog.mips | 5 +++++ sysdeps/unix/sysv/linux/mips/bits/statfs.h | 8 +++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog.mips b/ChangeLog.mips index 562364260ab..2dbed6f8bcd 100644 --- a/ChangeLog.mips +++ b/ChangeLog.mips @@ -1,3 +1,8 @@ +2010-08-12 Joseph Myers + + * sysdeps/unix/sysv/linux/mips/bits/statfs.h (struct statfs, + struct statfs64): Add f_flags field. + 2010-08-12 Joseph Myers * sysdeps/unix/sysv/linux/mips/sys/inotify.h (IN_EXCL_UNLINK): diff --git a/sysdeps/unix/sysv/linux/mips/bits/statfs.h b/sysdeps/unix/sysv/linux/mips/bits/statfs.h index 2f9bd54edc3..22a9ddead8c 100644 --- a/sysdeps/unix/sysv/linux/mips/bits/statfs.h +++ b/sysdeps/unix/sysv/linux/mips/bits/statfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1997, 2000, 2010 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -45,7 +45,8 @@ struct statfs /* Linux specials */ __fsid_t f_fsid; long int f_namelen; - long int f_spare[6]; + long int f_flags; + long int f_spare[5]; }; #ifdef __USE_LARGEFILE64 @@ -64,7 +65,8 @@ struct statfs64 /* Linux specials */ __fsid_t f_fsid; long int f_namelen; - long int f_spare[6]; + long int f_flags; + long int f_spare[5]; }; #endif -- 2.47.2