From 000d66f17542ea1f3ca4803c3df59f99e15e89e0 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 17 Jan 2012 18:13:33 +0100 Subject: [PATCH] Add support for statfs64.f_flags * file.c (printstatfs64): Print f_flags if available. --- file.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/file.c b/file.c index 4e62c2cb..473e6fda 100644 --- a/file.c +++ b/file.c @@ -1787,6 +1787,9 @@ printstatfs64(struct tcb *tcp, long addr) tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen); #ifdef _STATFS_F_FRSIZE tprintf(", f_frsize=%llu", (unsigned long long)statbuf.f_frsize); +#endif +#ifdef _STATFS_F_FLAGS + tprintf(", f_flags=%llu", (unsigned long long)statbuf.f_flags); #endif tprints("}"); } -- 2.40.0