return -EFAULT;
        }
 
-       rq->special = &icmd;
-
        set_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags);
 
        if (fis->command == ATA_CMD_SEC_ERASE_PREP)
 
        /* Copy the command to the command table */
        int_cmd = blk_mq_rq_to_pdu(rq);
+       int_cmd->icmd = &icmd;
        memcpy(int_cmd->command, fis, fis_len*4);
 
        rq->timeout = timeout;
                struct request *rq)
 {
        struct driver_data *dd = hctx->queue->queuedata;
-       struct mtip_int_cmd *icmd = rq->special;
        struct mtip_cmd *cmd = blk_mq_rq_to_pdu(rq);
+       struct mtip_int_cmd *icmd = cmd->icmd;
        struct mtip_cmd_hdr *hdr =
                dd->port->command_list + sizeof(struct mtip_cmd_hdr) * rq->tag;
        struct mtip_cmd_sg *command_sg;
 
 };
 struct mtip_port;
 
+struct mtip_int_cmd;
+
 /* Structure used to describe a command. */
 struct mtip_cmd {
        void *command; /* ptr to command table entry */
 
        int unaligned; /* command is unaligned on 4k boundary */
 
-       struct scatterlist sg[MTIP_MAX_SG]; /* Scatter list entries */
+       union {
+               struct scatterlist sg[MTIP_MAX_SG]; /* Scatter list entries */
+               struct mtip_int_cmd *icmd;
+       };
 
        int retries; /* The number of retries left for this command. */