summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1999-01-24 02:43:43 +0000
committerRoland McGrath <roland@gnu.org>1999-01-24 02:43:43 +0000
commite11a5f1a3f171a51fd8600ef11b002df16442d88 (patch)
treedfae0b4a880ac7d4007be028d91c584d10939c57
parentcbbdc2a484b38c848d415b715913ae406a7ea9b8 (diff)
1999-01-23 Roland McGrath <roland@baalperazim.frob.com>
* main.c (main): Use diskfs_init_main.
-rw-r--r--ufs/main.c42
1 files changed, 4 insertions, 38 deletions
diff --git a/ufs/main.c b/ufs/main.c
index dfbfeda3..29b22d11 100644
--- a/ufs/main.c
+++ b/ufs/main.c
@@ -160,39 +160,11 @@ main (int argc, char **argv)
{
error_t err;
mach_port_t bootstrap;
- struct store_argp_params store_params = { 0 };
- /* 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");
-
- /* This must come after the args have been parsed, as this is where the
- host priv ports are set for booting. */
- diskfs_console_stdio ();
-
- if (diskfs_boot_flags)
- /* We are the bootstrap filesystem. */
- bootstrap = MACH_PORT_NULL;
- else
- {
- 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. 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->block_size > DEV_BSIZE)
error (4, err, "%s: Bad device block size %d (should be <= %d)",
@@ -206,15 +178,9 @@ main (int argc, char **argv)
log2_dev_blocks_per_dev_bsize++;
log2_dev_blocks_per_dev_bsize -= store->log2_block_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 ();
-
get_hypermetadata ();
inode_init ();