From: Tejun Heo <htejun@gmail.com>
To: axboe@suse.de, jgarzik@pobox.com, James.Bottomley@steeleye.com,
bzolnier@gmail.com
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH linux-2.6-block:post-2.6.15 06/11] blk: update libata to use new blk_ordered
Date: Fri, 25 Nov 2005 01:26:11 +0900 (KST) [thread overview]
Message-ID: <20051124162449.B83EFE03@htj.dyndns.org> (raw)
In-Reply-To: <20051124162449.209CADD5@htj.dyndns.org>
06_blk_libata-update-ordered.patch
Reflect changes in SCSI midlayer and updated to use new
ordered request implementation
Signed-off-by: Tejun Heo <htejun@gmail.com>
ahci.c | 1 -
ata_piix.c | 1 -
sata_mv.c | 1 -
sata_nv.c | 1 -
sata_promise.c | 1 -
sata_sil.c | 1 -
sata_sil24.c | 1 -
sata_sis.c | 1 -
sata_svw.c | 1 -
sata_sx4.c | 1 -
sata_uli.c | 1 -
sata_via.c | 1 -
sata_vsc.c | 1 -
13 files changed, 13 deletions(-)
Index: work/drivers/scsi/ahci.c
===================================================================
--- work.orig/drivers/scsi/ahci.c 2005-11-25 00:51:37.000000000 +0900
+++ work/drivers/scsi/ahci.c 2005-11-25 00:52:03.000000000 +0900
@@ -213,7 +213,6 @@ static struct scsi_host_template ahci_sh
.dma_boundary = AHCI_DMA_BOUNDARY,
.slave_configure = ata_scsi_slave_config,
.bios_param = ata_std_bios_param,
- .ordered_flush = 1,
};
static const struct ata_port_operations ahci_ops = {
Index: work/drivers/scsi/ata_piix.c
===================================================================
--- work.orig/drivers/scsi/ata_piix.c 2005-11-25 00:51:37.000000000 +0900
+++ work/drivers/scsi/ata_piix.c 2005-11-25 00:52:03.000000000 +0900
@@ -144,7 +144,6 @@ static struct scsi_host_template piix_sh
.dma_boundary = ATA_DMA_BOUNDARY,
.slave_configure = ata_scsi_slave_config,
.bios_param = ata_std_bios_param,
- .ordered_flush = 1,
};
static const struct ata_port_operations piix_pata_ops = {
Index: work/drivers/scsi/sata_mv.c
===================================================================
--- work.orig/drivers/scsi/sata_mv.c 2005-11-25 00:51:37.000000000 +0900
+++ work/drivers/scsi/sata_mv.c 2005-11-25 00:52:03.000000000 +0900
@@ -287,7 +287,6 @@ static struct scsi_host_template mv_sht
.dma_boundary = MV_DMA_BOUNDARY,
.slave_configure = ata_scsi_slave_config,
.bios_param = ata_std_bios_param,
- .ordered_flush = 1,
};
static const struct ata_port_operations mv_ops = {
Index: work/drivers/scsi/sata_nv.c
===================================================================
--- work.orig/drivers/scsi/sata_nv.c 2005-11-25 00:51:37.000000000 +0900
+++ work/drivers/scsi/sata_nv.c 2005-11-25 00:52:03.000000000 +0900
@@ -235,7 +235,6 @@ static struct scsi_host_template nv_sht
.dma_boundary = ATA_DMA_BOUNDARY,
.slave_configure = ata_scsi_slave_config,
.bios_param = ata_std_bios_param,
- .ordered_flush = 1,
};
static const struct ata_port_operations nv_ops = {
Index: work/drivers/scsi/sata_promise.c
===================================================================
--- work.orig/drivers/scsi/sata_promise.c 2005-11-25 00:51:37.000000000 +0900
+++ work/drivers/scsi/sata_promise.c 2005-11-25 00:52:03.000000000 +0900
@@ -111,7 +111,6 @@ static struct scsi_host_template pdc_ata
.dma_boundary = ATA_DMA_BOUNDARY,
.slave_configure = ata_scsi_slave_config,
.bios_param = ata_std_bios_param,
- .ordered_flush = 1,
};
static const struct ata_port_operations pdc_sata_ops = {
Index: work/drivers/scsi/sata_sil.c
===================================================================
--- work.orig/drivers/scsi/sata_sil.c 2005-11-25 00:51:37.000000000 +0900
+++ work/drivers/scsi/sata_sil.c 2005-11-25 00:52:03.000000000 +0900
@@ -147,7 +147,6 @@ static struct scsi_host_template sil_sht
.dma_boundary = ATA_DMA_BOUNDARY,
.slave_configure = ata_scsi_slave_config,
.bios_param = ata_std_bios_param,
- .ordered_flush = 1,
};
static const struct ata_port_operations sil_ops = {
Index: work/drivers/scsi/sata_sis.c
===================================================================
--- work.orig/drivers/scsi/sata_sis.c 2005-11-25 00:51:37.000000000 +0900
+++ work/drivers/scsi/sata_sis.c 2005-11-25 00:52:03.000000000 +0900
@@ -99,7 +99,6 @@ static struct scsi_host_template sis_sht
.dma_boundary = ATA_DMA_BOUNDARY,
.slave_configure = ata_scsi_slave_config,
.bios_param = ata_std_bios_param,
- .ordered_flush = 1,
};
static const struct ata_port_operations sis_ops = {
Index: work/drivers/scsi/sata_svw.c
===================================================================
--- work.orig/drivers/scsi/sata_svw.c 2005-11-25 00:51:37.000000000 +0900
+++ work/drivers/scsi/sata_svw.c 2005-11-25 00:52:03.000000000 +0900
@@ -303,7 +303,6 @@ static struct scsi_host_template k2_sata
.proc_info = k2_sata_proc_info,
#endif
.bios_param = ata_std_bios_param,
- .ordered_flush = 1,
};
Index: work/drivers/scsi/sata_sx4.c
===================================================================
--- work.orig/drivers/scsi/sata_sx4.c 2005-11-25 00:51:37.000000000 +0900
+++ work/drivers/scsi/sata_sx4.c 2005-11-25 00:52:03.000000000 +0900
@@ -194,7 +194,6 @@ static struct scsi_host_template pdc_sat
.dma_boundary = ATA_DMA_BOUNDARY,
.slave_configure = ata_scsi_slave_config,
.bios_param = ata_std_bios_param,
- .ordered_flush = 1,
};
static const struct ata_port_operations pdc_20621_ops = {
Index: work/drivers/scsi/sata_uli.c
===================================================================
--- work.orig/drivers/scsi/sata_uli.c 2005-11-25 00:51:37.000000000 +0900
+++ work/drivers/scsi/sata_uli.c 2005-11-25 00:52:03.000000000 +0900
@@ -87,7 +87,6 @@ static struct scsi_host_template uli_sht
.dma_boundary = ATA_DMA_BOUNDARY,
.slave_configure = ata_scsi_slave_config,
.bios_param = ata_std_bios_param,
- .ordered_flush = 1,
};
static const struct ata_port_operations uli_ops = {
Index: work/drivers/scsi/sata_via.c
===================================================================
--- work.orig/drivers/scsi/sata_via.c 2005-11-25 00:51:37.000000000 +0900
+++ work/drivers/scsi/sata_via.c 2005-11-25 00:52:03.000000000 +0900
@@ -106,7 +106,6 @@ static struct scsi_host_template svia_sh
.dma_boundary = ATA_DMA_BOUNDARY,
.slave_configure = ata_scsi_slave_config,
.bios_param = ata_std_bios_param,
- .ordered_flush = 1,
};
static const struct ata_port_operations svia_sata_ops = {
Index: work/drivers/scsi/sata_vsc.c
===================================================================
--- work.orig/drivers/scsi/sata_vsc.c 2005-11-25 00:51:37.000000000 +0900
+++ work/drivers/scsi/sata_vsc.c 2005-11-25 00:52:03.000000000 +0900
@@ -235,7 +235,6 @@ static struct scsi_host_template vsc_sat
.dma_boundary = ATA_DMA_BOUNDARY,
.slave_configure = ata_scsi_slave_config,
.bios_param = ata_std_bios_param,
- .ordered_flush = 1,
};
Index: work/drivers/scsi/sata_sil24.c
===================================================================
--- work.orig/drivers/scsi/sata_sil24.c 2005-11-25 00:51:37.000000000 +0900
+++ work/drivers/scsi/sata_sil24.c 2005-11-25 00:52:03.000000000 +0900
@@ -272,7 +272,6 @@ static struct scsi_host_template sil24_s
.dma_boundary = ATA_DMA_BOUNDARY,
.slave_configure = ata_scsi_slave_config,
.bios_param = ata_std_bios_param,
- .ordered_flush = 1, /* NCQ not supported yet */
};
static const struct ata_port_operations sil24_ops = {
next prev parent reply other threads:[~2005-11-24 16:26 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-11-24 16:25 [PATCH linux-2.6-block:post-2.6.15 00/11] blk: reimplementation of I/O barrier Tejun Heo
2005-11-24 16:25 ` [PATCH linux-2.6-block:post-2.6.15 01/11] blk: add @uptodate to end_that_request_last() and @error to rq_end_io_fn() Tejun Heo
2005-11-24 16:25 ` [PATCH linux-2.6-block:post-2.6.15 02/11] blk: separate out bio init part from __make_request Tejun Heo
2005-11-24 16:25 ` [PATCH linux-2.6-block:post-2.6.15 03/11] blk: reimplement handling of barrier request Tejun Heo
2005-11-24 16:26 ` [PATCH linux-2.6-block:post-2.6.15 04/11] blk: update SCSI to use new blk_ordered Tejun Heo
2005-11-24 16:26 ` [PATCH linux-2.6-block:post-2.6.15 05/11] blk: add FUA support to SCSI disk Tejun Heo
2005-11-24 16:26 ` Tejun Heo [this message]
2005-11-24 16:26 ` [PATCH linux-2.6-block:post-2.6.15 07/11] blk: add FUA support to libata Tejun Heo
2005-11-24 16:26 ` [PATCH linux-2.6-block:post-2.6.15 08/11] blk: update IDE to use new blk_ordered Tejun Heo
2005-11-30 11:00 ` Bartlomiej Zolnierkiewicz
2005-11-24 16:26 ` [PATCH linux-2.6-block:post-2.6.15 09/11] blk: implement ide_driver_t->protocol_changed callback Tejun Heo
2005-11-30 10:58 ` Bartlomiej Zolnierkiewicz
2005-11-24 16:26 ` [PATCH linux-2.6-block:post-2.6.15 10/11] blk: add FUA support to IDE Tejun Heo
2005-11-30 11:05 ` Bartlomiej Zolnierkiewicz
2005-12-01 13:46 ` Tejun Heo
2005-11-24 16:26 ` [PATCH linux-2.6-block:post-2.6.15 11/11] blk: I/O barrier documentation Tejun Heo
2005-12-01 13:49 ` [PATCH linux-2.6-block:post-2.6.15 00/11] blk: reimplementation of I/O barrier Tejun Heo
2005-12-01 14:37 ` Jens Axboe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20051124162449.B83EFE03@htj.dyndns.org \
--to=htejun@gmail.com \
--cc=James.Bottomley@steeleye.com \
--cc=axboe@suse.de \
--cc=bzolnier@gmail.com \
--cc=jgarzik@pobox.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®