summaryrefslogtreecommitdiffstats
path: root/usr.sbin/cdcontrol
diff options
context:
space:
mode:
authornjl <njl@FreeBSD.org>2002-10-18 22:03:39 +0000
committernjl <njl@FreeBSD.org>2002-10-18 22:03:39 +0000
commit181311508173b9c70205bd14450f104550fe7bac (patch)
tree540c29f87f9954dc980102ee2621565072883c36 /usr.sbin/cdcontrol
parent1bac0e0b4c757dd560b18b70ad1a3a28028cf233 (diff)
downloadFreeBSD-src-181311508173b9c70205bd14450f104550fe7bac.zip
FreeBSD-src-181311508173b9c70205bd14450f104550fe7bac.tar.gz
* Add CDRIOC{READ,WRITE}SPEED ioctls to cd(4). Units are in KB/sec.
* Change atapi-cd ioctls to use the same units. * Change burncd, cdcontrol to convert CDROM speed to KB/sec before calling the ioctl. Add a "max" speed option for their command lines. This change does not break ABI but does change the units passed through the ioctl so 3rd party software that uses cdrio.h will have to convert (most likely by multiplying CDROM speed by 177 to get KB/s). PR: kern/36845 Submitted by: Philipp Mergenthaler <p@i609a.hadiko.de> (CAM ioctls) Reviewed by: sos, ken MFC after: 1 month
Diffstat (limited to 'usr.sbin/cdcontrol')
-rw-r--r--usr.sbin/cdcontrol/cdcontrol.16
-rw-r--r--usr.sbin/cdcontrol/cdcontrol.c9
2 files changed, 8 insertions, 7 deletions
diff --git a/usr.sbin/cdcontrol/cdcontrol.1 b/usr.sbin/cdcontrol/cdcontrol.1
index 3f986fe..94214f9 100644
--- a/usr.sbin/cdcontrol/cdcontrol.1
+++ b/usr.sbin/cdcontrol/cdcontrol.1
@@ -164,9 +164,9 @@ Set minute-second-frame ioctl mode (default).
.It Ic set Cm lba
Set LBA ioctl mode.
.It Ic speed Ar s
-Set the highest speed that the drive should use.
-The speed is a multiple of the single speed.
-This command is currently only supported on ATAPI drives.
+Set the highest speed that the drive should use for reading data.
+The units are multiples of a single speed CDROM (150 KB/s).
+Specify "max" to use the drive's fastest speed.
.It Ic quit
Quit the program.
.El
diff --git a/usr.sbin/cdcontrol/cdcontrol.c b/usr.sbin/cdcontrol/cdcontrol.c
index f497c52..5dd0585 100644
--- a/usr.sbin/cdcontrol/cdcontrol.c
+++ b/usr.sbin/cdcontrol/cdcontrol.c
@@ -282,7 +282,6 @@ int run (int cmd, char *arg)
{
long speed;
int l, r, rc;
- char *ep;
switch (cmd) {
@@ -435,9 +434,11 @@ int run (int cmd, char *arg)
return (0);
errno = 0;
- speed = strtol(arg, &ep, 10);
- if (*ep || ep == arg || speed <= 0 || speed > INT_MAX ||
- errno != 0) {
+ if (strcasecmp("max", arg) == 0)
+ speed = CDR_MAX_SPEED;
+ else
+ speed = strtol(arg, NULL, 10) * 177;
+ if (speed <= 0 || speed > INT_MAX) {
warnx("invalid command arguments %s", arg);
return (0);
}
OpenPOWER on IntegriCloud