diff options
author | Roland McGrath <roland@gnu.org> | 2002-01-02 01:32:36 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-01-02 01:32:36 +0000 |
commit | bc86c37cdef33382667000557f254e3474f7b612 (patch) | |
tree | 2a19b93d23d02377b6ddc2b524ba4aff8a1e9d27 /storeio/dev.c | |
parent | e809db1d3f4e7658927d3dfd0c0c57a5fed4dc85 (diff) | |
download | hurd-bc86c37cdef33382667000557f254e3474f7b612.tar.gz hurd-bc86c37cdef33382667000557f254e3474f7b612.tar.bz2 hurd-bc86c37cdef33382667000557f254e3474f7b612.zip |
2001-12-28 Roland McGrath <roland@frob.com>
* dev.h (struct dev): New member `no_fileio' (flag).
* storeio.c (options): Add --no-file-io/-F.
(parse_opt): Parse it to set PARAMS->dev->no_fileio.
(trivfs_append_args): Add --no-file-io if it's set.
* dev.c (dev_open): Pass STORE_NOFILEIO flag if DEV->no_fileio is set.
Diffstat (limited to 'storeio/dev.c')
-rw-r--r-- | storeio/dev.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/storeio/dev.c b/storeio/dev.c index 0c795a4b..f82200e8 100644 --- a/storeio/dev.c +++ b/storeio/dev.c @@ -137,6 +137,8 @@ error_t dev_open (struct dev *dev) { error_t err; + const int flags = ((dev->readonly ? STORE_READONLY : 0) + | (dev->no_fileio ? STORE_NO_FILEIO : 0)); assert (dev->store == 0); @@ -144,20 +146,16 @@ dev_open (struct dev *dev) { /* This means we had no store arguments. We are to operate on our underlying node. */ - err = store_create (storeio_fsys->underlying, - dev->readonly ? STORE_READONLY : 0, - 0, &dev->store); + err = store_create (storeio_fsys->underlying, flags, 0, &dev->store); } else /* Open based on the previously parsed store arguments. */ - err = store_parsed_open (dev->store_name, - dev->readonly ? STORE_READONLY : 0, - &dev->store); + err = store_parsed_open (dev->store_name, flags, &dev->store); if (err) return err; /* Inactivate the store, it will be activated at first access. - We ignore possible EINVAL here. XXX Pass STORE_INACTIVE to + We ignore possible EINVAL here . XXX Pass STORE_INACTIVE to store_create/store_parsed_open instead when libstore is fixed to support this. */ store_set_flags (dev->store, STORE_INACTIVE); |