diff options
author | gordon <gordon@FreeBSD.org> | 2003-02-03 17:21:43 +0000 |
---|---|---|
committer | gordon <gordon@FreeBSD.org> | 2003-02-03 17:21:43 +0000 |
commit | 8329fa89512aa6f40844d771ce1c9f156a1a08ed (patch) | |
tree | d15f8d00df81913ab9f883c447168f672497d1b4 /sys/geom | |
parent | 7ec55e992648f3f2ac54cbabdf480c6bf8ba71b0 (diff) | |
download | FreeBSD-src-8329fa89512aa6f40844d771ce1c9f156a1a08ed.zip FreeBSD-src-8329fa89512aa6f40844d771ce1c9f156a1a08ed.tar.gz |
Correct a comment. GEOM modules do not create /dev entries. They create
providers.
Pointed out by: phk
Diffstat (limited to 'sys/geom')
-rw-r--r-- | sys/geom/geom_vol_ffs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/geom/geom_vol_ffs.c b/sys/geom/geom_vol_ffs.c index 7c9a114..f324aa7 100644 --- a/sys/geom/geom_vol_ffs.c +++ b/sys/geom/geom_vol_ffs.c @@ -88,8 +88,8 @@ g_vol_ffs_taste(struct g_class *mp, struct g_provider *pp, int flags) * Walk through the standard places that superblocks hide and look * for UFS magic. If we find magic, then check that the size in the * superblock corresponds to the size of the underlying provider. - * Finally, look for a volume label and create an appropriate /dev - * entry based on that. + * Finally, look for a volume label and create an appropriate + * provider based on that. */ for (sb=0; (superblock = superblocks[sb]) != -1; sb++) { fs = (struct fs *) g_read_data(cp, superblock, |