From owner-freebsd-current@FreeBSD.ORG Thu Jul 24 06:26:56 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6A4D37B418 for ; Thu, 24 Jul 2003 06:26:56 -0700 (PDT) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4C2F43F75 for ; Thu, 24 Jul 2003 06:26:54 -0700 (PDT) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.9/8.12.9) id h6ODQr5L068527; Thu, 24 Jul 2003 15:26:53 +0200 (CEST) (envelope-from sos) From: Soeren Schmidt Message-Id: <200307241326.h6ODQr5L068527@spider.deepcore.dk> In-Reply-To: <20030724124909.GA47244@bspu.secna.ru> To: swp@uni-altai.ru Date: Thu, 24 Jul 2003 15:26:53 +0200 (CEST) X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 cc: freebsd-current@FreeBSD.ORG Subject: Re: ata tagged queuing support question X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Jul 2003 13:26:57 -0000 It seems mitrohin a.s. wrote: > ata-disk.c > > /* use tagged queueing if allowed and supported */ > #if 0 /* disable tags for now */ > if (ata_tags && ad_tagsupported(adp)) { > adp->num_tags = atadev->param->queuelen; > adp->flags |= AD_F_TAG_ENABLED; > adp->device->channel->flags |= ATA_QUEUED; > if (ata_command(atadev, ATA_C_SETFEATURES, > 0, 0, ATA_C_F_DIS_RELIRQ, ATA_WAIT_INTR)) > ata_prtdev(atadev, "disabling release interrupt failed\n"); > if (ata_command(atadev, ATA_C_SETFEATURES, > 0, 0, ATA_C_F_DIS_SRVIRQ, ATA_WAIT_INTR)) > ata_prtdev(atadev, "disabling service interrupt failed\n"); > } > #endif > > tagged queueing broken in -current? i have IBM ICxxxxxAV drives and want > to use this feature. can i enable this block? It doesn't work for now, and question is if it will ever be enabled again as it causes more problems than it solves. -Søren