aboutsummaryrefslogtreecommitdiff
path: root/toys/df.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2008-01-20 17:25:44 -0600
committerRob Landley <rob@landley.net>2008-01-20 17:25:44 -0600
commitb1aaba1fc8176ac0b7c202a664d2554aa0967116 (patch)
tree7bbd14f5dd2413a6b913ea04b0bdf746a2d5b1fb /toys/df.c
parenteb9b8da0698aacd14f5aa0879d2a8e390c0c6c13 (diff)
downloadtoybox-b1aaba1fc8176ac0b7c202a664d2554aa0967116.tar.gz
Zap toylist.h, moving contents of global structures into DEFINE_GLOBALS()
macros in each C file, and making generated/globals.h from that. Rename "toy" to "this" along the way to avoid toy/toys confusion.
Diffstat (limited to 'toys/df.c')
-rw-r--r--toys/df.c24
1 files changed, 16 insertions, 8 deletions
diff --git a/toys/df.c b/toys/df.c
index 6cc9e27c..f5d27102 100644
--- a/toys/df.c
+++ b/toys/df.c
@@ -39,6 +39,14 @@ config DF_PEDANTIC
#include "toys.h"
+DEFINE_GLOBALS(
+ struct arg_list *fstype;
+
+ long units;
+)
+
+#define TT this.df
+
static void show_mt(struct mtab_list *mt)
{
int len;
@@ -49,10 +57,10 @@ static void show_mt(struct mtab_list *mt)
if (!mt) return;
// If we have -t, skip other filesystem types
- if (toy.df.fstype) {
+ if (TT.fstype) {
struct arg_list *al;
- for (al = toy.df.fstype; al; al = al->next) {
+ for (al = TT.fstype; al; al = al->next) {
if (!strcmp(mt->type, al->arg)) break;
}
if (!al) return;
@@ -64,12 +72,12 @@ static void show_mt(struct mtab_list *mt)
// Figure out how much total/used/free space this filesystem has,
// forcing 64-bit math because filesystems are big now.
block = mt->statvfs.f_bsize ? : 1;
- size = (long)((block * mt->statvfs.f_blocks) / toy.df.units);
+ size = (long)((block * mt->statvfs.f_blocks) / TT.units);
used = (long)((block * (mt->statvfs.f_blocks-mt->statvfs.f_bfree))
- / toy.df.units);
+ / TT.units);
avail = (long)((block
* (getuid() ? mt->statvfs.f_bavail : mt->statvfs.f_bfree))
- / toy.df.units);
+ / TT.units);
percent = size ? 100-(long)((100*(uint64_t)avail)/size) : 0;
// Figure out appropriate spacing
@@ -89,12 +97,12 @@ void df_main(void)
struct mtab_list *mt, *mt2, *mtlist;
// Handle -P and -k
- toy.df.units = 1024;
+ TT.units = 1024;
if (CFG_DF_PEDANTIC && (toys.optflags & 8)) {
// Units are 512 bytes if you select "pedantic" without "kilobytes".
- if ((toys.optflags&3) == 1) toy.df.units = 512;
+ if ((toys.optflags&3) == 1) TT.units = 512;
printf("Filesystem %ld-blocks Used Available Capacity Mounted on\n",
- toy.df.units);
+ TT.units);
} else puts("Filesystem\t1K-blocks\tUsed Available Use% Mounted on");
mtlist = getmountlist(1);