From d0833edb6656d193fe834d1f520ce25a80d337ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Dejean?= Date: Fri, 24 Sep 2004 21:26:34 +0000 Subject: [PATCH] Fixed .block_size on Solaris. * fsusage.c: (glibtop_get_fsusage_s): Fixed .block_size on Solaris. --- sysdeps/common/ChangeLog | 4 ++++ sysdeps/common/fsusage.c | 8 +++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/sysdeps/common/ChangeLog b/sysdeps/common/ChangeLog index fd270913..db21dfdb 100644 --- a/sysdeps/common/ChangeLog +++ b/sysdeps/common/ChangeLog @@ -1,3 +1,7 @@ +2004-09-24 Benoît Dejean + + * fsusage.c: (glibtop_get_fsusage_s): Fixed .block_size on Solaris. + 2004-09-24 Benoît Dejean * Makefile.am: diff --git a/sysdeps/common/fsusage.c b/sysdeps/common/fsusage.c index 88a9090f..cb8b5b28 100644 --- a/sysdeps/common/fsusage.c +++ b/sysdeps/common/fsusage.c @@ -248,12 +248,18 @@ glibtop_get_fsusage_s (glibtop *server, glibtop_fsusage *buf, #endif /* STAT_STATFS4 */ #ifdef STAT_STATVFS /* SVR4 */ - /* Linux */ + /* Linux, Solaris */ if (statvfs (path, &fsd) < 0) return; +#if (defined(sun) || defined(__sun)) && (defined(__SVR4) || defined(__svr4__)) + /* Solaris but not SunOS */ + buf->block_size = fsd.f_frsize; +#else + /* else, including Linux */ buf->block_size = fsd.f_bsize; +#endif #endif /* STAT_STATVFS */