From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff Garzik Subject: Re: Playing with SATA NCQ Date: Fri, 27 May 2005 00:41:59 -0400 Message-ID: <4296A517.3020502@pobox.com> References: <20050526140058.GR1419@suse.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mail.dvmed.net ([216.237.124.58]:64220 "EHLO mail.dvmed.net") by vger.kernel.org with ESMTP id S261724AbVE0EmC (ORCPT ); Fri, 27 May 2005 00:42:02 -0400 In-Reply-To: <20050526140058.GR1419@suse.de> Sender: linux-ide-owner@vger.kernel.org List-Id: linux-ide@vger.kernel.org To: Jens Axboe Cc: linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org Jens Axboe wrote: > @@ -189,7 +194,7 @@ > .ioctl = ata_scsi_ioctl, > .queuecommand = ata_scsi_queuecmd, > .eh_strategy_handler = ata_scsi_error, > - .can_queue = ATA_DEF_QUEUE, > + .can_queue = ATA_MAX_QUEUE, > .this_id = ATA_SHT_THIS_ID, > .sg_tablesize = AHCI_MAX_SG, > .max_sectors = ATA_MAX_SECTORS, > @@ -200,7 +205,7 @@ > .dma_boundary = AHCI_DMA_BOUNDARY, > .slave_configure = ata_scsi_slave_config, > .bios_param = ata_std_bios_param, > - .ordered_flush = 1, > + .ordered_flush = 0, /* conflicts with NCQ for now */ > }; > > static struct ata_port_operations ahci_ops = { Also, you'll probably want to implement ata_scsi_change_queue_depth, and reference it in ahci.c (and other NCQ-capable drivers). Jeff