The patch titled sata_nv: allow changing queue depth has been removed from the -mm tree. Its filename was sata_nv-allow-changing-queue-depth.patch This patch was dropped because it was folded into ata-add-the-sw-ncq-support-to-sata_nv-for-mcp51-mcp55-mcp61.patch ------------------------------------------------------ Subject: sata_nv: allow changing queue depth From: Robert Hancock <hancockr@xxxxxxx> The sata_nv driver was missing the change_queue_depth hook in the SCSI host template which the other NCQ-capable libata drivers had. This made it impossible to change the queue depth by user request. Add this in. Signed-off-by: Robert Hancock <hancockr@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/ata/sata_nv.c | 1 + 1 files changed, 1 insertion(+) diff -puN drivers/ata/sata_nv.c~sata_nv-allow-changing-queue-depth drivers/ata/sata_nv.c --- a/drivers/ata/sata_nv.c~sata_nv-allow-changing-queue-depth +++ a/drivers/ata/sata_nv.c @@ -420,6 +420,7 @@ static struct scsi_host_template nv_swnc .name = DRV_NAME, .ioctl = ata_scsi_ioctl, .queuecommand = ata_scsi_queuecmd, + .change_queue_depth = ata_scsi_change_queue_depth, .can_queue = ATA_MAX_QUEUE, .this_id = ATA_SHT_THIS_ID, .sg_tablesize = LIBATA_MAX_PRD, _ Patches currently in -mm which might be from hancockr@xxxxxxx are mmconfig-validate-against-acpi-motherboard-resources.patch ata-add-the-sw-ncq-support-to-sata_nv-for-mcp51-mcp55-mcp61.patch sata_nv-allow-changing-queue-depth.patch libata-add-human-readable-error-value-decoding-v3.patch pci-disable-decode-of-io-memory-during-bar-sizing.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html