···9393 int error;94949595 rq = blk_get_request(drive->queue, READ, __GFP_WAIT);9696- rq->cmd_type = REQ_TYPE_SPECIAL;9696+ rq->cmd_type = REQ_TYPE_DRV_PRIV;9797 rq->special = (char *)pc;98989999 if (buf && bufflen) {···477477 if (uptodate == 0)478478 drive->failed_pc = NULL;479479480480- if (rq->cmd_type == REQ_TYPE_SPECIAL) {480480+ if (rq->cmd_type == REQ_TYPE_DRV_PRIV) {481481 rq->errors = 0;482482 error = 0;483483 } else {
+1-1
drivers/ide/ide-cd.c
···799799800800 cdrom_do_block_pc(drive, rq);801801 break;802802- case REQ_TYPE_SPECIAL:802802+ case REQ_TYPE_DRV_PRIV:803803 /* right now this can only be a reset... */804804 uptodate = 1;805805 goto out_end;
···7979 REQ_TYPE_PM_SUSPEND, /* suspend request */8080 REQ_TYPE_PM_RESUME, /* resume request */8181 REQ_TYPE_PM_SHUTDOWN, /* shutdown request */8282- REQ_TYPE_SPECIAL, /* driver defined type */8282+ REQ_TYPE_DRV_PRIV, /* driver defined type */8383 /*8484 * for ATA/ATAPI devices. this really doesn't belong here, ide should8585- * use REQ_TYPE_SPECIAL and use rq->cmd[0] with the range of driver8585+ * use REQ_TYPE_DRV_PRIV and use rq->cmd[0] with the range of driver8686 * private REQ_LB opcodes to differentiate what type of request this is8787 */8888 REQ_TYPE_ATA_TASKFILE,