summaryrefslogtreecommitdiffstats
path: root/sys/dev/vinum
diff options
context:
space:
mode:
authortrhodes <trhodes@FreeBSD.org>2002-05-16 21:28:32 +0000
committertrhodes <trhodes@FreeBSD.org>2002-05-16 21:28:32 +0000
commit28d42899b766c395e5a6476f5bfa88b1481a08c0 (patch)
tree0cbeb3775d12e86712b373b6e5a62d8ee7b3abc8 /sys/dev/vinum
parentb459f6c72649c5aa0ae116e177e7fb6f302b20ff (diff)
downloadFreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.zip
FreeBSD-src-28d42899b766c395e5a6476f5bfa88b1481a08c0.tar.gz
More s/file system/filesystem/g
Diffstat (limited to 'sys/dev/vinum')
-rw-r--r--sys/dev/vinum/vinumio.c2
-rw-r--r--sys/dev/vinum/vinumobj.h2
-rw-r--r--sys/dev/vinum/vinumrequest.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/vinum/vinumio.c b/sys/dev/vinum/vinumio.c
index bcf2908..0800b6d 100644
--- a/sys/dev/vinum/vinumio.c
+++ b/sys/dev/vinum/vinumio.c
@@ -63,7 +63,7 @@ open_drive(struct drive *drive, struct thread *td, int verbose)
/*
* Yes, Bruce, I know this is horrible, but we
- * don't have a root file system when we first
+ * don't have a root filesystem when we first
* try to do this. If you can come up with a
* better solution, I'd really like it. I'm
* just putting it in now to add ammuntion to
diff --git a/sys/dev/vinum/vinumobj.h b/sys/dev/vinum/vinumobj.h
index 8a7868f..9ee5e1e 100644
--- a/sys/dev/vinum/vinumobj.h
+++ b/sys/dev/vinum/vinumobj.h
@@ -66,7 +66,7 @@ enum objflags {
VF_WLABEL = 0x20, /* label area is writable */
VF_LABELLING = 0x40, /* unit is currently being labelled */
VF_WANTED = 0x80, /* someone is waiting to obtain a lock */
- VF_RAW = 0x100, /* raw volume (no file system) */
+ VF_RAW = 0x100, /* raw volume (no filesystem) */
VF_LOADED = 0x200, /* module is loaded */
VF_CONFIGURING = 0x400, /* somebody is changing the config */
VF_WILL_CONFIGURE = 0x800, /* somebody wants to change the config */
diff --git a/sys/dev/vinum/vinumrequest.c b/sys/dev/vinum/vinumrequest.c
index 9dde28c..ba4a273 100644
--- a/sys/dev/vinum/vinumrequest.c
+++ b/sys/dev/vinum/vinumrequest.c
@@ -833,8 +833,8 @@ build_rq_buffer(struct rqelement *rqe, struct plex *plex)
bp->b_bcount = rqe->buflen << DEV_BSHIFT; /* number of bytes to transfer */
bp->b_resid = bp->b_bcount; /* and it's still all waiting */
bp->b_bufsize = bp->b_bcount; /* and buffer size */
- bp->b_rcred = FSCRED; /* we have the file system credentials */
- bp->b_wcred = FSCRED; /* we have the file system credentials */
+ bp->b_rcred = FSCRED; /* we have the filesystem credentials */
+ bp->b_wcred = FSCRED; /* we have the filesystem credentials */
if (rqe->flags & XFR_MALLOCED) { /* this operation requires a malloced buffer */
bp->b_data = Malloc(bp->b_bcount); /* get a buffer to put it in */
OpenPOWER on IntegriCloud