summaryrefslogtreecommitdiff
path: root/utils/storeinfo.c
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-10-08 18:45:21 +0000
committerMiles Bader <miles@gnu.org>1996-10-08 18:45:21 +0000
commit1d47998513375ae8cb19ab5272a94711bcbf4140 (patch)
treef8f2f3751d897fde5ff89e821a9233c6f04083b0 /utils/storeinfo.c
parent578b19425dc34df890af80743633da5e36966f84 (diff)
(options, main):
Change --runs/-r to --block-list/-l. (main): Use STORE_INACTIVE flag to store_create. (print_store): Correctly print unknown flags. Don't ever print STORE_INACTIVE flag. Print runs in grub block-list format.
Diffstat (limited to 'utils/storeinfo.c')
-rw-r--r--utils/storeinfo.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/utils/storeinfo.c b/utils/storeinfo.c
index 96287d52..0486f179 100644
--- a/utils/storeinfo.c
+++ b/utils/storeinfo.c
@@ -42,7 +42,7 @@ static struct argp_option options[] =
{"blocks", 'b', 0, 0, "Print the number of blocks in FILE"},
{"block-size", 'B', 0, 0, "Print the block size of FILE's store"},
{"size", 's', 0, 0, "Print the size, in bytes, of FILE"},
- {"runs", 'r', 0, 0, "Print the runs of blocks in FILE"},
+ {"block-list", 'l', 0, 0, "Print the blocks that are in FILE"},
{"children", 'c', 0, 0, "If the store has children, show them too"},
{"dereference", 'L', 0, 0, "If FILE is a symbolic link, follow it"},
{"prefix", 'p', 0, 0, "Always print `FILE: ' before info"},
@@ -53,7 +53,7 @@ static char *args_doc = "FILE...";
static char *doc = "Show information about storage used by FILE..."
"\vWith no FILE arguments, the file attached to standard"
" input is used. The fields to be printed are separated by colons, in this"
-" order: PREFIX: TYPE (FLAGS): NAME: BLOCK-SIZE: BLOCKS: SIZE: RUNS."
+" order: PREFIX: TYPE (FLAGS): NAME: BLOCK-SIZE: BLOCKS: SIZE: BLOCK-LIST."
" If the store is a composite one and --children is specified, children"
" are printed on lines following the main store, indented accordingly."
" By default, all fields, and children, are printed.";
@@ -144,12 +144,12 @@ print_store (struct store *store, int level, unsigned what)
pf (STORE_ENFORCED, "enf");
pf (STORAGE_MUTATED, "mut");
- if (store->flags & ~t)
+ if (store->flags & ~(t | STORE_INACTIVE))
/* Leftover flags. */
{
if (! f)
putchar (';');
- printf ("0x%x", store->flags);
+ printf ("0x%x", store->flags & ~(t | STORE_INACTIVE));
}
putchar (')');
}
@@ -167,9 +167,10 @@ print_store (struct store *store, int level, unsigned what)
if (i > 0)
putchar (',');
if (store->runs[i].start < 0)
- printf ("[%ld]", store->runs[i].length);
+ /* A hole */
+ printf ("@+%ld", store->runs[i].length);
else
- printf ("%ld[%ld]", store->runs[i].start, store->runs[i].length);
+ printf ("%ld+%ld", store->runs[i].start, store->runs[i].length);
}
}
@@ -204,7 +205,7 @@ main(int argc, char *argv[])
if (what == 0)
what = W_ALL;
- err = store_create (file, 0, 0, &store);
+ err = store_create (file, STORE_INACTIVE, 0, &store);
if (err)
error (4, err, source);
@@ -224,7 +225,7 @@ main(int argc, char *argv[])
case 'b': what |= W_BLOCKS; break;
case 'B': what |= W_BLOCK_SIZE; break;
case 's': what |= W_SIZE; break;
- case 'r': what |= W_RUNS; break;
+ case 'l': what |= W_RUNS; break;
case 'c': what |= W_CHILDREN; break;
case ARGP_KEY_NO_ARGS: