* Re: cxgb4i submission
[not found] <1270728855-20951-1-git-send-email-rakesh@chelsio.com>
@ 2010-04-08 12:18 ` David Miller
2010-04-08 12:41 ` Rakesh Ranjan
[not found] ` <1270728855-20951-2-git-send-email-rakesh@chelsio.com>
1 sibling, 1 reply; 5+ messages in thread
From: David Miller @ 2010-04-08 12:18 UTC (permalink / raw)
To: rakesh
Cc: netdev, linux-scsi, open-iscsi, linux-kernel, kxie,
James.Bottomley, michaelc
From: Rakesh Ranjan <rakesh@chelsio.com>
Date: Thu, 8 Apr 2010 17:44:12 +0530
> This driver depends upon cxgb4 driver, posted recently on netdev and
> now part of net-next repo.
It went into the net-2.6 repo, not net-next-2.6
And it is even in Linus's tree now.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: cxgb4i submission
2010-04-08 12:18 ` cxgb4i submission David Miller
@ 2010-04-08 12:41 ` Rakesh Ranjan
0 siblings, 0 replies; 5+ messages in thread
From: Rakesh Ranjan @ 2010-04-08 12:41 UTC (permalink / raw)
To: David Miller
Cc: netdev, linux-scsi, open-iscsi, linux-kernel, kxie,
James.Bottomley, michaelc
[-- Attachment #1: Type: text/plain, Size: 429 bytes --]
On 04/08/2010 05:48 PM, David Miller wrote:
> From: Rakesh Ranjan <rakesh@chelsio.com>
> Date: Thu, 8 Apr 2010 17:44:12 +0530
>
>> This driver depends upon cxgb4 driver, posted recently on netdev and
>> now part of net-next repo.
>
> It went into the net-2.6 repo, not net-next-2.6
>
> And it is even in Linus's tree now.
Hi Dave,
Thanks for updates, somehow I missed that part.
Regards
Rakesh Ranjan
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 899 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 3/3] cxgb4i: iscsi and pdu processing part
[not found] ` <1270728855-20951-4-git-send-email-rakesh@chelsio.com>
@ 2010-04-08 19:15 ` Mike Christie
0 siblings, 0 replies; 5+ messages in thread
From: Mike Christie @ 2010-04-08 19:15 UTC (permalink / raw)
To: open-iscsi
Cc: Rakesh Ranjan, netdev, linux-scsi, linux-kernel, kxie, davem,
James.Bottomley
On 04/08/2010 07:14 AM, Rakesh Ranjan wrote:
> From: Rakesh Ranjan<rakesh@chelsio.com>
>
>
> Signed-off-by: Rakesh Ranjan<rakesh@chelsio.com>
> ---
> drivers/scsi/cxgb4i/cxgb4i_iscsi.c | 715 ++++++++++++++++++++++++++++++++++++
> drivers/scsi/cxgb4i/cxgb4i_pdu.c | 475 ++++++++++++++++++++++++
> drivers/scsi/cxgb4i/cxgb4i_pdu.h | 61 +++
> 3 files changed, 1251 insertions(+), 0 deletions(-)
> create mode 100644 drivers/scsi/cxgb4i/cxgb4i_iscsi.c
> create mode 100644 drivers/scsi/cxgb4i/cxgb4i_pdu.c
> create mode 100644 drivers/scsi/cxgb4i/cxgb4i_pdu.h
>
The code in these files looks like the code is the cxgb3i iscsi and pdu
code. Can you just make a common cxgb3i iscsi/pdu layer and add some
callouts?
Something similar to what qla2xxx or lpfc has done to support multiple
cards. In their case they have common fc and driver stuff and then
callouts for hw specifics?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/3] cxgb4i: main driver files
[not found] ` <1270728855-20951-3-git-send-email-rakesh@chelsio.com>
[not found] ` <1270728855-20951-4-git-send-email-rakesh@chelsio.com>
@ 2010-04-13 20:41 ` Mike Christie
2010-04-13 21:41 ` Karen Xie
1 sibling, 1 reply; 5+ messages in thread
From: Mike Christie @ 2010-04-13 20:41 UTC (permalink / raw)
To: open-iscsi
Cc: Rakesh Ranjan, netdev, linux-scsi, linux-kernel, kxie, davem,
James.Bottomley
On 04/08/2010 07:14 AM, Rakesh Ranjan wrote:
> +static inline int cxgb4i_ddp_gl_map(struct pci_dev *pdev,
> + struct cxgb4i_gather_list *gl)
> +{
> + int i;
> +
> + for (i = 0; i< gl->nelem; i++) {
> + gl->phys_addr[i] = pci_map_page(pdev, gl->pages[i], 0,
> + PAGE_SIZE,
Hey Rakesh,
I guess we are trying to move away from the pci mapping functions move
to the dma ones. On your next submission, could you fix those up too?
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH 2/3] cxgb4i: main driver files
2010-04-13 20:41 ` [PATCH 2/3] cxgb4i: main driver files Mike Christie
@ 2010-04-13 21:41 ` Karen Xie
0 siblings, 0 replies; 5+ messages in thread
From: Karen Xie @ 2010-04-13 21:41 UTC (permalink / raw)
To: Mike Christie, open-iscsi
Cc: Rakesh Ranjan, netdev, linux-scsi, linux-kernel, davem,
James.Bottomley
Hi, Mike,
Yes, will do that for the next submission.
Thanks,
Karen
-----Original Message-----
From: Mike Christie [mailto:michaelc@cs.wisc.edu]
Sent: Tuesday, April 13, 2010 1:42 PM
To: open-iscsi@googlegroups.com
Cc: Rakesh Ranjan; netdev@vger.kernel.org; linux-scsi@vger.kernel.org;
linux-kernel@vger.kernel.org; Karen Xie; davem@davemloft.net;
James.Bottomley@hansenpartnership.com
Subject: Re: [PATCH 2/3] cxgb4i: main driver files
On 04/08/2010 07:14 AM, Rakesh Ranjan wrote:
> +static inline int cxgb4i_ddp_gl_map(struct pci_dev *pdev,
> + struct cxgb4i_gather_list *gl)
> +{
> + int i;
> +
> + for (i = 0; i< gl->nelem; i++) {
> + gl->phys_addr[i] = pci_map_page(pdev, gl->pages[i], 0,
> + PAGE_SIZE,
Hey Rakesh,
I guess we are trying to move away from the pci mapping functions move
to the dma ones. On your next submission, could you fix those up too?
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-04-13 21:41 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1270728855-20951-1-git-send-email-rakesh@chelsio.com>
2010-04-08 12:18 ` cxgb4i submission David Miller
2010-04-08 12:41 ` Rakesh Ranjan
[not found] ` <1270728855-20951-2-git-send-email-rakesh@chelsio.com>
[not found] ` <1270728855-20951-3-git-send-email-rakesh@chelsio.com>
[not found] ` <1270728855-20951-4-git-send-email-rakesh@chelsio.com>
2010-04-08 19:15 ` [PATCH 3/3] cxgb4i: iscsi and pdu processing part Mike Christie
2010-04-13 20:41 ` [PATCH 2/3] cxgb4i: main driver files Mike Christie
2010-04-13 21:41 ` Karen Xie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox