Changes necessary for KSE world

Reivewed by: julian, bde, jhb
This commit is contained in:
Warner Losh 2001-09-14 04:35:50 +00:00
parent e8b6d44e89
commit 4417ce7d9e
2 changed files with 5 additions and 5 deletions

View File

@ -1226,7 +1226,7 @@ done: ;
* Initialize a drive. * Initialize a drive.
*/ */
int int
wdopen(dev_t dev, int flags, int fmt, struct proc *p) wdopen(dev_t dev, int flags, int fmt, struct thread *td)
{ {
register unsigned int lunit; register unsigned int lunit;
register struct softc *du; register struct softc *du;

View File

@ -375,7 +375,7 @@ acd_describe(struct acd *cdp)
} }
static int static int
acdopen(dev_t dev, int flags, int fmt, struct proc *p) acdopen(dev_t dev, int flags, int fmt, struct thread *td)
{ {
int lun = dkunit(dev); int lun = dkunit(dev);
struct acd *cdp; struct acd *cdp;
@ -401,7 +401,7 @@ acdopen(dev_t dev, int flags, int fmt, struct proc *p)
} }
int int
acdclose(dev_t dev, int flags, int fmt, struct proc *p) acdclose(dev_t dev, int flags, int fmt, struct thread *td)
{ {
struct acd *cdp = acdtab[dkunit(dev)]; struct acd *cdp = acdtab[dkunit(dev)];
@ -572,7 +572,7 @@ msf2lba(u_char m, u_char s, u_char f)
} }
int int
acdioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct proc *p) acdioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
{ {
int lun = dkunit(dev); int lun = dkunit(dev);
struct acd *cdp = acdtab[lun]; struct acd *cdp = acdtab[lun];
@ -626,7 +626,7 @@ acdioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct proc *p)
0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0); 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0);
case CDIOCRESET: case CDIOCRESET:
error = suser(p); error = suser_td(td);
if (error) if (error)
return (error); return (error);
return acd_request_wait(cdp, ATAPI_TEST_UNIT_READY, return acd_request_wait(cdp, ATAPI_TEST_UNIT_READY,