login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2007
»
October
»
24
Re: [PATCH -mm 11/11] aacraid: use pci_set_dma_max_seg_size
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Jeff Garzik
Subject:
Re: [PATCH -mm 11/11] aacraid: use pci_set_dma_max_seg_size
Date: Wednesday, October 24, 2007 - 4:31 am
FUJITA Tomonori wrote:
quoted text
> This sets the segment size limit properly via pci_set_dma_max_seg_size > and remove blk_queue_max_segment_size because scsi-ml calls it. > > Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> > --- > drivers/scsi/aacraid/linit.c | 9 ++++++--- > 1 files changed, 6 insertions(+), 3 deletions(-) > > diff --git a/drivers/scsi/aacraid/linit.c b/drivers/scsi/aacraid/linit.c > index 038980b..04d6a65 100644 > --- a/drivers/scsi/aacraid/linit.c > +++ b/drivers/scsi/aacraid/linit.c > @@ -435,9 +435,6 @@ static int aac_slave_configure(struct scsi_device *sdev) > else if (depth < 2) > depth = 2; > scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, depth); > - if (!(((struct aac_dev *)host->hostdata)->adapter_info.options & > - AAC_OPT_NEW_COMM)) > - blk_queue_max_segment_size(sdev->request_queue, 65536); > } else > scsi_adjust_queue_depth(sdev, 0, 1); > > @@ -1045,6 +1042,12 @@ static int __devinit aac_probe_one(struct pci_dev *pdev, > if (error < 0) > goto out_deinit; > > + if (!(aac->adapter_info.options & AAC_OPT_NEW_COMM)) { > + error = pci_set_dma_max_seg_size(pdev, 65536); > + if (error) > + goto out_deinit; > + }
is this needed, given that the default is already 65536? Jeff -
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
[PATCH -mm 0/11] fix iommu sg merging problem
, FUJITA Tomonori
, (Wed Oct 24, 3:47 am)
[PATCH -mm 01/11] add device_dma_parameters structure
, FUJITA Tomonori
, (Wed Oct 24, 3:48 am)
[PATCH -mm 02/11] PCI: add device_dma_parameters support
, FUJITA Tomonori
, (Wed Oct 24, 3:48 am)
[PATCH -mm 03/11] x86: make pci-gart iommu respect the seg ...
, FUJITA Tomonori
, (Wed Oct 24, 3:48 am)
[PATCH -mm 04/11] ppc: make iommu respect the segment size ...
, FUJITA Tomonori
, (Wed Oct 24, 3:48 am)
[PATCH -mm 05/11] IA64: make sba_iommu respect the segment ...
, FUJITA Tomonori
, (Wed Oct 24, 3:48 am)
[PATCH -mm 06/11] alpha: make pci_iommu respect the segmen ...
, FUJITA Tomonori
, (Wed Oct 24, 3:48 am)
[PATCH -mm 07/11] sparc64: make iommu respect the segment ...
, FUJITA Tomonori
, (Wed Oct 24, 3:48 am)
[PATCH -mm 08/11] parisc: make iommu respect the segment s ...
, FUJITA Tomonori
, (Wed Oct 24, 3:48 am)
[PATCH -mm 09/11] call blk_queue_segment_boundary in __scs ...
, FUJITA Tomonori
, (Wed Oct 24, 3:48 am)
[PATCH -mm 10/11] sata_inic162x: use pci_set_dma_max_seg_size
, FUJITA Tomonori
, (Wed Oct 24, 3:48 am)
[PATCH -mm 11/11] aacraid: use pci_set_dma_max_seg_size
, FUJITA Tomonori
, (Wed Oct 24, 3:48 am)
Re: [PATCH -mm 11/11] aacraid: use pci_set_dma_max_seg_size
, Jeff Garzik
, (Wed Oct 24, 4:31 am)
Re: [PATCH -mm 01/11] add device_dma_parameters structure
, Jeff Garzik
, (Wed Oct 24, 4:33 am)
Re: [PATCH -mm 02/11] PCI: add device_dma_parameters support
, Jeff Garzik
, (Wed Oct 24, 4:34 am)
Re: [PATCH -mm 08/11] parisc: make iommu respect the segme ...
, Jeff Garzik
, (Wed Oct 24, 4:35 am)
Re: [PATCH -mm 11/11] aacraid: use pci_set_dma_max_seg_size
, FUJITA Tomonori
, (Wed Oct 24, 4:35 am)
Re: [PATCH -mm 09/11] call blk_queue_segment_boundary in _ ...
, Jeff Garzik
, (Wed Oct 24, 4:39 am)
Re: [PATCH -mm 10/11] sata_inic162x: use pci_set_dma_max_s ...
, Jeff Garzik
, (Wed Oct 24, 4:39 am)
Re: [PATCH -mm 0/11] fix iommu sg merging problem
, Jeff Garzik
, (Wed Oct 24, 4:40 am)
Re: [PATCH -mm 0/11] fix iommu sg merging problem
, Jens Axboe
, (Wed Oct 24, 6:24 am)
RE: [PATCH -mm 11/11] aacraid: use pci_set_dma_max_seg_size
, Salyzyn, Mark
, (Wed Oct 24, 6:34 am)
RE: [PATCH -mm 11/11] aacraid: use pci_set_dma_max_seg_size
, Salyzyn, Mark
, (Wed Oct 24, 6:34 am)
Re: [PATCH -mm 02/11] PCI: add device_dma_parameters support
, FUJITA Tomonori
, (Wed Oct 24, 6:41 am)
Re: [PATCH -mm 09/11] call blk_queue_segment_boundary in _ ...
, FUJITA Tomonori
, (Wed Oct 24, 7:15 am)
Re: [PATCH -mm 09/11] call blk_queue_segment_boundary in ...
, Jens Axboe
, (Wed Oct 24, 7:28 am)
Re: [PATCH -mm 0/11] fix iommu sg merging problem
, FUJITA Tomonori
, (Wed Oct 24, 7:32 am)
Re: [PATCH -mm 09/11] call blk_queue_segment_boundary in _ ...
, Jeff Garzik
, (Wed Oct 24, 7:34 am)
Re: [PATCH -mm 09/11] call blk_queue_segment_boundary in ...
, FUJITA Tomonori
, (Wed Oct 24, 7:36 am)
RE: [PATCH -mm 11/11] aacraid: use pci_set_dma_max_seg_size
, FUJITA Tomonori
, (Wed Oct 24, 9:21 am)
RE: [PATCH -mm 11/11] aacraid: use pci_set_dma_max_seg_size
, Salyzyn, Mark
, (Wed Oct 24, 9:25 am)
Navigation
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Greg KH
Og dreams of kernels
Jens Axboe
[PATCH 31/33] Fusion: sg chaining support
Arnd Bergmann
Re: finding your own dead "CONFIG_" variables
Mark Brown
[PATCH 2/2] Subject: natsemi: Allow users to disable workaround for DspCfg reset
Tony Breeds
[LGUEST] Look in object dir for .config
git
:
Brian Downing
Re: Git in a Nutshell guide
John Benes
Re: master has some toys
Matthias Lederhofer
[PATCH 4/7] introduce GIT_WORK_TREE to specify the work tree
Alexander Sulfrian
[RFC/PATCH] RE: git calls SSH_ASKPASS even if DISPLAY is not set
Junio C Hamano
Re: Rss produced by git is not valid xml?
git-commits-head
:
Linux Kernel Mailing List
iSeries: fix section mismatch in iseries_veth
Linux Kernel Mailing List
ixbge: remove TX lock and redo TX accounting.
Linux Kernel Mailing List
ixgbe: fix several counter register errata
Linux Kernel Mailing List
b43: fix build with CONFIG_SSB_PCIHOST=n
Linux Kernel Mailing List
9p: block-based virtio client
linux-netdev
:
Michael Breuer
Re: [PATCH] af_packet: Don't use skb after dev_queue_xmit()
Michael Breuer
Re: [PATCH] af_packet: Don't use skb after dev_queue_xmit()
David Daney
[PATCH 5/7] Staging: Octeon Ethernet: Convert to NAPI.
Wolfgang Grandegger
[PATCH net-next v4 1/3] can: mscan: fix improper return if dlc < 8 in start_xmi...
Amit Kumar Salecha
[PATCHv3 NEXT 2/2] NET: Add Qlogic ethernet driver for CNA devices
openbsd-misc
:
Theo de Raadt
Re: Old IPSEC bug
Tomáš Bodžár
Problem with vpnc connection - check group password !
Insan Praja SW
Mandoc Compiling Error
Carl Roberso