diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-12-08 06:32:58 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-12-08 06:32:58 +0000 |
commit | 665243ca874d9237149655d09d2dd536b41a4095 (patch) | |
tree | 55ff3df058d8ac5d37262359cc7e7b0fadfe2503 /sys | |
parent | bcf912fb5c2faec15be72182ffcc6c9274579644 (diff) |
Move the FIBMAP ioctl.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/cdio.h | 4 | ||||
-rw-r--r-- | sys/sys/filio.h | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/sys/sys/cdio.h b/sys/sys/cdio.h index eb0934323eb..bc6c50c148c 100644 --- a/sys/sys/cdio.h +++ b/sys/sys/cdio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cdio.h,v 1.8 1999/11/12 05:56:31 angelos Exp $ */ +/* $OpenBSD: cdio.h,v 1.9 1999/12/08 06:32:56 angelos Exp $ */ /* $NetBSD: cdio.h,v 1.11 1996/02/19 18:29:04 scottr Exp $ */ #ifndef _SYS_CDIO_H_ @@ -415,6 +415,4 @@ union dvd_authinfo { struct dvd_lu_send_title_key lstk; struct dvd_lu_send_asf lsasf; }; - -#define FIBMAP _IOWR('f', 122, daddr_t) #endif /* !_SYS_CDIO_H_ */ diff --git a/sys/sys/filio.h b/sys/sys/filio.h index 79619b60478..b3241ffb046 100644 --- a/sys/sys/filio.h +++ b/sys/sys/filio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: filio.h,v 1.2 1996/03/03 12:11:47 niklas Exp $ */ +/* $OpenBSD: filio.h,v 1.3 1999/12/08 06:32:57 angelos Exp $ */ /* $NetBSD: filio.h,v 1.5 1994/06/29 06:44:14 cgd Exp $ */ /*- @@ -54,5 +54,6 @@ #define FIOASYNC _IOW('f', 125, int) /* set/clear async i/o */ #define FIOSETOWN _IOW('f', 124, int) /* set owner */ #define FIOGETOWN _IOR('f', 123, int) /* get owner */ +#define FIBMAP _IOWR('f', 122, daddr_t) /* get logical block */ #endif /* !_SYS_FILIO_H_ */ |