mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-24 18:43:53 +08:00
521e368572
Checked in e2fsprogs 1.08.
38 lines
772 B
XML
38 lines
772 B
XML
#
|
|
# Copyright (C) 1997 Theodore Ts'o. This file may be redistributed
|
|
# under the terms of the GNU Public License.
|
|
#
|
|
command_table test_cmds;
|
|
|
|
#
|
|
# Icount table commands
|
|
#
|
|
request do_create_icount, "Create an icount structure",
|
|
create_icount, create;
|
|
|
|
request do_free_icount, "Free an icount structure",
|
|
free_icount, free;
|
|
|
|
request do_fetch, "Fetch an icount entry",
|
|
fetch;
|
|
|
|
request do_increment, "Increment an icount entry",
|
|
increment, inc;
|
|
|
|
request do_decrement, "Decrement an icount entry",
|
|
decrement, dec;
|
|
|
|
request do_store, "Store an icount entry",
|
|
store;
|
|
|
|
request do_get_size, "Get the size of the icount structure",
|
|
get_size;
|
|
|
|
request do_dump, "Dump the icount structure",
|
|
dump;
|
|
|
|
request do_validate, "Validate the icount structure",
|
|
validate, check;
|
|
|
|
end;
|