All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] bna: Brocade 10Gb Ethernet device driver
@ 2010-08-11  4:18 Rasesh Mody
  2010-08-18 13:03 ` Simon Horman
  0 siblings, 1 reply; 8+ messages in thread
From: Rasesh Mody @ 2010-08-11  4:18 UTC (permalink / raw)
  To: netdev; +Cc: adapter_linux_open_src_team

From: Rasesh Mody <rmody@brocade.com>

This is patch 0/6 which contains the summary of changes we've
done in this particular submission for Brocade's BR1010/BR1020
10Gb CEE capable ethernet adapter. Source is based against
net-next-2.6.

The changes are as follows:

- Minimized the scope of some APIs as per the comments

- Converted spin_lock _irq()/spin_unlock_irq() to safer spin_lock_irqsave()/spin_lock_irqrestore() respectively

We wish these patches to be considered for inclusion in net-next-2.6.

Signed-off-by: Rasesh Mody <rmody@brocade.com>
---
 0 files changed



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 0/6] bna: Brocade 10Gb Ethernet device driver
  2010-08-11  4:18 [PATCH 0/6] bna: Brocade 10Gb Ethernet device driver Rasesh Mody
@ 2010-08-18 13:03 ` Simon Horman
  2010-08-19 16:36   ` Debashis Dutt
  0 siblings, 1 reply; 8+ messages in thread
From: Simon Horman @ 2010-08-18 13:03 UTC (permalink / raw)
  To: Rasesh Mody; +Cc: netdev, adapter_linux_open_src_team

Hi Rasesh,

it would be helpful if all six patches in your series
didn't feature the same subject and each had unique
description that described them in a little more detail.

Thanks

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH 0/6] bna: Brocade 10Gb Ethernet device driver
  2010-08-18 13:03 ` Simon Horman
@ 2010-08-19 16:36   ` Debashis Dutt
  0 siblings, 0 replies; 8+ messages in thread
From: Debashis Dutt @ 2010-08-19 16:36 UTC (permalink / raw)
  To: Simon Horman, Rasesh Mody; +Cc: netdev

Hi Simon, 

Thanks for your feedback. 
The only reason that we did not put a separate subject line
for each of the patches is because this is a whole new driver
submission, waiting for acceptance. So these are not really logically
separate entities (unlike other patches adding features / bug fixes).

If you still think that we should try to logically separate the patches
please let me know.

Thanks
--Debashis
Brocade Linux Driver Team.



-----Original Message-----
From: Simon Horman [mailto:horms@verge.net.au] 
Sent: Wednesday, August 18, 2010 6:03 AM
To: Rasesh Mody
Cc: netdev@vger.kernel.org; Adapter Linux Open SRC Team
Subject: Re: [PATCH 0/6] bna: Brocade 10Gb Ethernet device driver

Hi Rasesh,

it would be helpful if all six patches in your series
didn't feature the same subject and each had unique
description that described them in a little more detail.

Thanks

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH 0/6] bna: Brocade 10Gb Ethernet device driver
  2010-08-24  3:35 ` David Miller
  2010-08-24  6:15   ` Debashis Dutt
@ 2010-08-24  6:27   ` Rasesh Mody
  1 sibling, 0 replies; 8+ messages in thread
From: Rasesh Mody @ 2010-08-24  6:27 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, Akshay Mathur, Debashis Dutt, Jing Huang

David,

Thanks for reviewing the patches and applying it to net-next-2.6.

Regards,
Rasesh

-----Original Message-----
From: David Miller [mailto:davem@davemloft.net] 
Sent: Monday, August 23, 2010 8:36 PM
To: Rasesh Mody
Cc: netdev@vger.kernel.org; Akshay Mathur; Debashis Dutt; Jing Huang
Subject: Re: [PATCH 0/6] bna: Brocade 10Gb Ethernet device driver

From: Rasesh Mody <rmody@brocade.com>
Date: Mon, 23 Aug 2010 14:23:24 -0700

> From: Rasesh Mody <rmody@brocade.com>
> 
> This is patch 0/6 which contains the summary of changes we've
> done in this particular submission for Brocade's BR1010/BR1020
> 10Gb CEE capable ethernet adapter. Source is based against
> net-next-2.6.
> 
> The changes are as follows:
> 
> - Removed unused variables and misc cleanup
> 
> We wish these patches to be considered for inclusion in net-next-2.6.
> 
> Signed-off-by: Debashis Dutt <ddutt@brocade.com>
> Signed-off-by: Rasesh Mody <rmody@brocade.com>

Applied to net-next-2.6, but I had to apply the following bug
fix.  Do you even look at the warnings generated by the build
of the code you submit?

--------------------
bna: Delete get_flags and set_flags ethtool methods.

This driver doesn't support LRO, NTUPLE, or the RXHASH
features.  So it should not set these ethtool operations.

This also fixes the warning:

drivers/net/bna/bnad_ethtool.c:1272: warning: initialization from incompatible pointer type

Signed-off-by: David S. Miller <davem@davemloft.net>
---
 drivers/net/bna/bnad_ethtool.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/drivers/net/bna/bnad_ethtool.c b/drivers/net/bna/bnad_ethtool.c
index e982785..7e630f5 100644
--- a/drivers/net/bna/bnad_ethtool.c
+++ b/drivers/net/bna/bnad_ethtool.c
@@ -1268,8 +1268,6 @@ static struct ethtool_ops bnad_ethtool_ops = {
 	.set_sg = ethtool_op_set_sg,
 	.get_tso = ethtool_op_get_tso,
 	.set_tso = bnad_set_tso,
-	.get_flags = ethtool_op_get_flags,
-	.set_flags = ethtool_op_set_flags,
 	.get_strings = bnad_get_strings,
 	.get_ethtool_stats = bnad_get_ethtool_stats,
 	.get_sset_count = bnad_get_sset_count
-- 
1.7.2.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* RE: [PATCH 0/6] bna: Brocade 10Gb Ethernet device driver
  2010-08-24  3:35 ` David Miller
@ 2010-08-24  6:15   ` Debashis Dutt
  2010-08-24  6:27   ` Rasesh Mody
  1 sibling, 0 replies; 8+ messages in thread
From: Debashis Dutt @ 2010-08-24  6:15 UTC (permalink / raw)
  To: David Miller, Rasesh Mody; +Cc: netdev, Akshay Mathur, Jing Huang

David, 

Thanks for accepting the driver patch into net-next-2.6. 

--Debashis

-----Original Message-----
From: David Miller [mailto:davem@davemloft.net] 
Sent: Monday, August 23, 2010 8:36 PM
To: Rasesh Mody
Cc: netdev@vger.kernel.org; Akshay Mathur; Debashis Dutt; Jing Huang
Subject: Re: [PATCH 0/6] bna: Brocade 10Gb Ethernet device driver

From: Rasesh Mody <rmody@brocade.com>
Date: Mon, 23 Aug 2010 14:23:24 -0700

> From: Rasesh Mody <rmody@brocade.com>
> 
> This is patch 0/6 which contains the summary of changes we've
> done in this particular submission for Brocade's BR1010/BR1020
> 10Gb CEE capable ethernet adapter. Source is based against
> net-next-2.6.
> 
> The changes are as follows:
> 
> - Removed unused variables and misc cleanup
> 
> We wish these patches to be considered for inclusion in net-next-2.6.
> 
> Signed-off-by: Debashis Dutt <ddutt@brocade.com>
> Signed-off-by: Rasesh Mody <rmody@brocade.com>

Applied to net-next-2.6, but I had to apply the following bug
fix.  Do you even look at the warnings generated by the build
of the code you submit?

--------------------
bna: Delete get_flags and set_flags ethtool methods.

This driver doesn't support LRO, NTUPLE, or the RXHASH
features.  So it should not set these ethtool operations.

This also fixes the warning:

drivers/net/bna/bnad_ethtool.c:1272: warning: initialization from incompatible pointer type

Signed-off-by: David S. Miller <davem@davemloft.net>
---
 drivers/net/bna/bnad_ethtool.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/drivers/net/bna/bnad_ethtool.c b/drivers/net/bna/bnad_ethtool.c
index e982785..7e630f5 100644
--- a/drivers/net/bna/bnad_ethtool.c
+++ b/drivers/net/bna/bnad_ethtool.c
@@ -1268,8 +1268,6 @@ static struct ethtool_ops bnad_ethtool_ops = {
 	.set_sg = ethtool_op_set_sg,
 	.get_tso = ethtool_op_get_tso,
 	.set_tso = bnad_set_tso,
-	.get_flags = ethtool_op_get_flags,
-	.set_flags = ethtool_op_set_flags,
 	.get_strings = bnad_get_strings,
 	.get_ethtool_stats = bnad_get_ethtool_stats,
 	.get_sset_count = bnad_get_sset_count
-- 
1.7.2.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH 0/6] bna: Brocade 10Gb Ethernet device driver
  2010-08-23 21:23 Rasesh Mody
@ 2010-08-24  3:35 ` David Miller
  2010-08-24  6:15   ` Debashis Dutt
  2010-08-24  6:27   ` Rasesh Mody
  0 siblings, 2 replies; 8+ messages in thread
From: David Miller @ 2010-08-24  3:35 UTC (permalink / raw)
  To: rmody; +Cc: netdev, amathur, ddutt, huangj

From: Rasesh Mody <rmody@brocade.com>
Date: Mon, 23 Aug 2010 14:23:24 -0700

> From: Rasesh Mody <rmody@brocade.com>
> 
> This is patch 0/6 which contains the summary of changes we've
> done in this particular submission for Brocade's BR1010/BR1020
> 10Gb CEE capable ethernet adapter. Source is based against
> net-next-2.6.
> 
> The changes are as follows:
> 
> - Removed unused variables and misc cleanup
> 
> We wish these patches to be considered for inclusion in net-next-2.6.
> 
> Signed-off-by: Debashis Dutt <ddutt@brocade.com>
> Signed-off-by: Rasesh Mody <rmody@brocade.com>

Applied to net-next-2.6, but I had to apply the following bug
fix.  Do you even look at the warnings generated by the build
of the code you submit?

--------------------
bna: Delete get_flags and set_flags ethtool methods.

This driver doesn't support LRO, NTUPLE, or the RXHASH
features.  So it should not set these ethtool operations.

This also fixes the warning:

drivers/net/bna/bnad_ethtool.c:1272: warning: initialization from incompatible pointer type

Signed-off-by: David S. Miller <davem@davemloft.net>
---
 drivers/net/bna/bnad_ethtool.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/drivers/net/bna/bnad_ethtool.c b/drivers/net/bna/bnad_ethtool.c
index e982785..7e630f5 100644
--- a/drivers/net/bna/bnad_ethtool.c
+++ b/drivers/net/bna/bnad_ethtool.c
@@ -1268,8 +1268,6 @@ static struct ethtool_ops bnad_ethtool_ops = {
 	.set_sg = ethtool_op_set_sg,
 	.get_tso = ethtool_op_get_tso,
 	.set_tso = bnad_set_tso,
-	.get_flags = ethtool_op_get_flags,
-	.set_flags = ethtool_op_set_flags,
 	.get_strings = bnad_get_strings,
 	.get_ethtool_stats = bnad_get_ethtool_stats,
 	.get_sset_count = bnad_get_sset_count
-- 
1.7.2.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 0/6] bna: Brocade 10Gb Ethernet device driver
@ 2010-08-23 21:23 Rasesh Mody
  2010-08-24  3:35 ` David Miller
  0 siblings, 1 reply; 8+ messages in thread
From: Rasesh Mody @ 2010-08-23 21:23 UTC (permalink / raw)
  To: netdev; +Cc: amathur, ddutt, huangj, rmody

From: Rasesh Mody <rmody@brocade.com>

This is patch 0/6 which contains the summary of changes we've
done in this particular submission for Brocade's BR1010/BR1020
10Gb CEE capable ethernet adapter. Source is based against
net-next-2.6.

The changes are as follows:

- Removed unused variables and misc cleanup

We wish these patches to be considered for inclusion in net-next-2.6.

Signed-off-by: Debashis Dutt <ddutt@brocade.com>
Signed-off-by: Rasesh Mody <rmody@brocade.com>
---
 0 files changed



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 0/6] bna: Brocade 10Gb Ethernet device driver
@ 2010-08-04  3:00 Rasesh Mody
  0 siblings, 0 replies; 8+ messages in thread
From: Rasesh Mody @ 2010-08-04  3:00 UTC (permalink / raw)
  To: netdev; +Cc: ddutt, huangj, rmody

From: Rasesh Mody <rmody@brocade.com>

This is patch 0/6 which contains the summary of changes we've
done in this particular submission for Brocade's BR1010/BR1020
10Gb CEE capable ethernet adapter. Source is based against
net-next-2.6.

The changes are as follows:

1) Addressed comments received so far.

- Added GRO support and removed LRO completely

- Used OS primitives in place of abstractions wherever possible

- Removed duplication of PCI_DEVICE_IDs

- Corrected bnad_netpoll implementation

- Eliminated firmware image copy

- Reduced module parameters to only 2

- Return type of bnad_xmit_start() changed to netdev_tx_t

- Removed unnecessary comments in the code

- Flattened the directory structure and reduced the number of files (form ~45 to 25)

2) Added support for new hardware (e.g. IBM/Dell Mezzanine cards)

We wish this patch to be considered for inclusion in net-next-2.6.

Signed-off-by: Rasesh Mody <rmody@brocade.com>
---
 0 files changed



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2010-08-24  6:28 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-11  4:18 [PATCH 0/6] bna: Brocade 10Gb Ethernet device driver Rasesh Mody
2010-08-18 13:03 ` Simon Horman
2010-08-19 16:36   ` Debashis Dutt
  -- strict thread matches above, loose matches on Subject: below --
2010-08-23 21:23 Rasesh Mody
2010-08-24  3:35 ` David Miller
2010-08-24  6:15   ` Debashis Dutt
2010-08-24  6:27   ` Rasesh Mody
2010-08-04  3:00 Rasesh Mody

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.