diff options
author | issyl0 <issyl0@FreeBSD.org> | 2012-07-26 17:30:34 +0000 |
---|---|---|
committer | issyl0 <issyl0@FreeBSD.org> | 2012-07-26 17:30:34 +0000 |
commit | 7a9532891d07e562ecaf896372d58c344256ff66 (patch) | |
tree | d89241d5a099f8569d92eaf2c5289ef752d094e9 /sbin/geom | |
parent | ed2ef5217684f42a9f96ba1e222e592deb1bd650 (diff) | |
download | FreeBSD-src-7a9532891d07e562ecaf896372d58c344256ff66.zip FreeBSD-src-7a9532891d07e562ecaf896372d58c344256ff66.tar.gz |
The ad(4) driver no longer exists in FreeBSD CURRENT or 9, so change the
references to it in gsched(8) to the existing ada(4) driver.
PR: docs/170085
Submitted by: olgeni
Approved by: gavin
MFC after: 5 days
Diffstat (limited to 'sbin/geom')
-rw-r--r-- | sbin/geom/class/sched/gsched.8 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sbin/geom/class/sched/gsched.8 b/sbin/geom/class/sched/gsched.8 index bb3c1cf..ca3ec43 100644 --- a/sbin/geom/class/sched/gsched.8 +++ b/sbin/geom/class/sched/gsched.8 @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd August 29, 2010 +.Dd July 26, 2012 .Dt GSCHED 8 .Os .Sh NAME @@ -135,19 +135,19 @@ maximum amount of debug information is printed. Exit status is 0 on success, and 1 if the command fails. .Sh EXAMPLES The following example shows how to create a scheduling provider for disk -.Pa /dev/ad0 , +.Pa /dev/ada0 , and how to destroy it. .Bd -literal -offset indent # Load the geom_sched module: kldload geom_sched # Load some scheduler classes used by geom_sched: kldload gsched_rr -# Configure device ad0 to use scheduler "rr": -geom sched insert -a rr ad0 -# Now provider ad0 uses the "rr" algorithm; -# the new geom is ad0.sched. +# Configure device ada0 to use scheduler "rr": +geom sched insert -a rr ada0 +# Now provider ada0 uses the "rr" algorithm; +# the new geom is ada0.sched. # Remove the scheduler on the device: -geom sched destroy -v ad0.sched. +geom sched destroy -v ada0.sched. .Ed .Sh SEE ALSO .Xr geom 4 , |