2007-06-12 13:07:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 Oracle. All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public
|
|
|
|
* License v2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 021110-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2007-02-26 15:40:21 +00:00
|
|
|
#include "disk-io.h"
|
2015-10-26 10:28:20 +00:00
|
|
|
#include "volumes.h"
|
2013-11-04 07:17:41 +00:00
|
|
|
#include "utils.h"
|
2016-02-22 14:49:49 +00:00
|
|
|
#include "commands.h"
|
2017-01-25 15:35:00 +00:00
|
|
|
#include "help.h"
|
2011-11-05 18:58:41 +00:00
|
|
|
|
2016-03-01 15:28:11 +00:00
|
|
|
int main(int argc, char **argv)
|
2008-03-04 00:55:16 +00:00
|
|
|
{
|
2007-04-10 13:27:30 +00:00
|
|
|
int ret;
|
2007-03-21 00:35:03 +00:00
|
|
|
|
2016-03-01 15:28:11 +00:00
|
|
|
set_argv0(argv);
|
2008-03-24 19:03:18 +00:00
|
|
|
|
2016-03-01 15:28:11 +00:00
|
|
|
if (argc > 1 && !strcmp(argv[1], "--help"))
|
2016-02-22 14:49:49 +00:00
|
|
|
usage(cmd_inspect_dump_tree_usage);
|
2009-04-15 18:30:14 +00:00
|
|
|
|
2016-02-22 14:49:49 +00:00
|
|
|
radix_tree_init();
|
2008-03-04 00:55:16 +00:00
|
|
|
|
2016-03-01 15:28:11 +00:00
|
|
|
ret = cmd_inspect_dump_tree(argc, argv);
|
2011-11-05 18:58:41 +00:00
|
|
|
|
2015-10-26 10:28:20 +00:00
|
|
|
btrfs_close_all_devices();
|
2016-02-22 14:49:49 +00:00
|
|
|
|
2015-10-26 10:28:20 +00:00
|
|
|
return ret;
|
2007-02-26 15:40:21 +00:00
|
|
|
}
|