Revert "cam: better ioctl compatibility for cd"

This reverts commit 028b16e208.

The wrong version wound up in my branch, revert while I find the right
version.

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2024-07-24 23:03:41 -06:00
parent 169d069116
commit 4eee292ab6
2 changed files with 1 additions and 27 deletions

View File

@ -49,12 +49,6 @@
#include <cam/scsi/scsi_pass.h>
/*
* Note: struct cdev *dev parameter here is simply passed through. For cdioctl
* we need to pass down a struct periph * which has been cast to a cdev and that
* is cast back again in cdioctl_dev().
*/
static int cam_compat_handle_0x17(struct cdev *dev, u_long cmd, caddr_t addr,
int flag, struct thread *td, d_ioctl_t *cbfnp);
static int cam_compat_handle_0x18(struct cdev *dev, u_long cmd, caddr_t addr,

View File

@ -1122,20 +1122,6 @@ cam_periph_unmapmem(union ccb *ccb, struct cam_periph_map_info *mapinfo)
return (error);
}
static int
cam_periph_ioctl_compat(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
{
struct cam_periph *periph;
/*
* For compat, we need to cast struct periph * into struct cdev *dev and
* then back again.
*/
periph = (struct cam_periph *)(void *)dev;
cam_periph_assert(periph, MA_OWNED);
return (cam_periph_ioctl(periph, cmd, addr, cderror));
}
int
cam_periph_ioctl(struct cam_periph *periph, u_long cmd, caddr_t addr,
int (*error_routine)(union ccb *ccb,
@ -1192,13 +1178,7 @@ cam_periph_ioctl(struct cam_periph *periph, u_long cmd, caddr_t addr,
break;
default:
/*
* We assume that the compat layer doesn't care about
* the dev parameter. It just passes it through, so
* cheat a little.
*/
error = cam_compat_ioctl((struct cdev *)(void *)periph,
cmd, addr, flag, td, cam_periph_ioctl_compat);
error = ENOTTY;
break;
}
return(error);