Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 93c93387 authored by Tejun Heo's avatar Tejun Heo Committed by Jens Axboe
Browse files

[BLOCK] update libata to use new blk_ordered for barriers



Reflect changes in SCSI midlayer and updated to use new
ordered request implementation

Signed-off-by: default avatarTejun Heo <htejun@gmail.com>
Signed-off-by: default avatarJens Axboe <axboe@suse.de>
parent 007365ad
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -214,7 +214,6 @@ static struct scsi_host_template ahci_sht = {
	.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 = {
+0 −1
Original line number Diff line number Diff line
@@ -185,7 +185,6 @@ static struct scsi_host_template piix_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 piix_pata_ops = {
+0 −1
Original line number Diff line number Diff line
@@ -374,7 +374,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 mv5_ops = {
+0 −1
Original line number Diff line number Diff line
@@ -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 = {
+0 −1
Original line number Diff line number Diff line
@@ -114,7 +114,6 @@ static struct scsi_host_template pdc_ata_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 pdc_sata_ops = {
Loading