summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1999-01-24 02:45:26 +0000
committerRoland McGrath <roland@gnu.org>1999-01-24 02:45:26 +0000
commit7b5a22aa2af193f082588e842ea8767c2450b4d9 (patch)
tree3dea7805c8ac524cda7cc937e315b7d70ba621b1
parente11a5f1a3f171a51fd8600ef11b002df16442d88 (diff)
1999-01-23 Roland McGrath <roland@baalperazim.frob.com>
* ext2fs.c (main): Use diskfs_init_main.
-rw-r--r--ext2fs/ext2fs.c40
1 files changed, 5 insertions, 35 deletions
diff --git a/ext2fs/ext2fs.c b/ext2fs/ext2fs.c
index 7e52d61b..aac4d7bc 100644
--- a/ext2fs/ext2fs.c
+++ b/ext2fs/ext2fs.c
@@ -136,36 +136,12 @@ int
main (int argc, char **argv)
{
error_t err;
- mach_port_t bootstrap = MACH_PORT_NULL;
- struct store_argp_params store_params = { 0 };
+ mach_port_t bootstrap;
- /* XXX diskfs's --boot-command needs us to use ARGP_IN_ORDER */
- argp_parse (&startup_argp, argc, argv, ARGP_IN_ORDER, NULL, &store_params);
- store_parsed = store_params.result;
-
- err = store_parsed_name (store_parsed, &diskfs_disk_name);
- if (err)
- error (2, err, "store_parsed_name");
-
- diskfs_console_stdio ();
-
- if (! diskfs_boot_flags)
- {
- task_get_bootstrap_port (mach_task_self (), &bootstrap);
- if (bootstrap == MACH_PORT_NULL)
- error (2, 0, "Must be started as a translator");
- }
-
- /* Initialize the diskfs library. This must come before
- any other diskfs call. */
- err = diskfs_init_diskfs ();
- if (err)
- error (4, err, "init");
-
- err = store_parsed_open (store_parsed, diskfs_readonly ? STORE_READONLY : 0,
- &store);
- if (err)
- error (3, err, "%s", diskfs_disk_name);
+ /* Initialize the diskfs library, parse arguments, and open the store.
+ This starts the first diskfs thread for us. */
+ store = diskfs_init_main (&startup_argp, argc, argv,
+ &store_parsed, &bootstrap);
if (store->size < SBLOCK_OFFS + SBLOCK_SIZE)
ext2_panic ("superblock won't fit on the device!");
@@ -173,15 +149,9 @@ main (int argc, char **argv)
ext2_panic ("device block size (%u) greater than page size (%d)",
store->block_size, vm_page_size);
- if (store->flags & STORE_HARD_READONLY)
- diskfs_readonly = diskfs_hard_readonly = 1;
-
/* Map the entire disk. */
create_disk_pager ();
- /* Start the first request thread, to handle RPCs and page requests. */
- diskfs_spawn_first_thread ();
-
pokel_init (&global_pokel, diskfs_disk_pager, disk_image);
get_hypermetadata();