netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Pull request for mv643xx_eth 'for-2.6.27' branch
@ 2008-06-06 11:37 Lennert Buytenhek
  2008-06-10 22:15 ` Jeff Garzik
  2008-06-12  2:50 ` Jeff Garzik
  0 siblings, 2 replies; 6+ messages in thread
From: Lennert Buytenhek @ 2008-06-06 11:37 UTC (permalink / raw)
  To: jeff; +Cc: dale, netdev

Jeff,

Please pull the following mv643xx_eth patches for 2.6.27.  (They
were all ACKed by Dale, and I've agreed to take over mv643xx_eth
maintainership from him.)


thanks,
Lennert



The following changes since commit 39b945a37bac2b692773a470890c8ba301485b15:
  Linus Torvalds (1):
        Merge master.kernel.org:/home/rmk/linux-2.6-arm

are available in the git repository at:

  git://git.marvell.com/mv643xx_eth.git for-2.6.27

Dale Farnsworth (1):
      mv643xx_eth: new maintainer

Lennert Buytenhek (38):
      mv643xx_eth: reverse topological sort of functions
      mv643xx_eth: trim unnecessary includes
      mv643xx_eth: shorten reg names
      mv643xx_eth: get rid of individual port config register bit defines
      mv643xx_eth: get rid of individual port config extend register bit defines
      mv643xx_eth: delete unused SDMA config register bit defines
      mv643xx_eth: delete unused port serial control register bit defines
      mv643xx_eth: nuke port status register bit defines
      mv643xx_eth: remove unused DESC_SIZE define
      mv643xx_eth: clarify irq masking and unmasking
      mv643xx_eth: move PHY wait defines into callers
      mv643xx_eth: get rid of RX_BUF_OFFSET
      mv643xx_eth: move MIB offset defines into their only user
      mv643xx_eth: remove port serial status register bit defines
      mv643xx_eth: clean up rx/tx descriptor field defines
      mv643xx_eth: get rid of ETH_/ethernet_/eth_ prefixes
      mv643xx_eth: use 'mv643xx_eth_' prefix consistently
      mv643xx_eth: kill superfluous comments
      mv643xx_eth: kill ->rx_resource_err
      mv643xx_eth: get rid of hungarian variable naming
      mv643xx_eth: move port_receive() into its only caller
      mv643xx_eth: move rx_return_buff() into its only caller
      mv643xx_eth: kill FUNC_RET_STATUS/pkt_info
      mv643xx_eth: kill private unused instance of struct net_device_stats
      mv643xx_eth: massively simplify multicast address crc8 computation
      mv643xx_eth: split out rx queue state
      mv643xx_eth: split out tx queue state
      mv643xx_eth: remove write-only interrupt coalescing variables
      mv643xx_eth: general cleanup
      mv643xx_eth: add tx rate control
      mv643xx_eth: allow multiple RX queues
      mv643xx_eth: allow multiple TX queues
      mv643xx_eth: work around TX hang hardware issue
      mv643xx_eth: detect extended rx coal register field
      mv643xx_eth: detect alternate TX BW control register location
      mv643xx_eth: be more agressive about RX refill
      mv643xx_eth: add PHY-less mode
      mv643xx_eth: update driver version and author fields

 MAINTAINERS                 |    8 +-
 drivers/net/mv643xx_eth.c   | 4557 ++++++++++++++++++-------------------------
 include/linux/mv643xx_eth.h |   65 +-
 3 files changed, 1935 insertions(+), 2695 deletions(-)

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

* Re: Pull request for mv643xx_eth 'for-2.6.27' branch
  2008-06-06 11:37 Pull request for mv643xx_eth 'for-2.6.27' branch Lennert Buytenhek
@ 2008-06-10 22:15 ` Jeff Garzik
  2008-06-10 22:25   ` Lennert Buytenhek
  2008-06-12  2:50 ` Jeff Garzik
  1 sibling, 1 reply; 6+ messages in thread
From: Jeff Garzik @ 2008-06-10 22:15 UTC (permalink / raw)
  To: Lennert Buytenhek; +Cc: dale, netdev

Lennert Buytenhek wrote:
> Jeff,
> 
> Please pull the following mv643xx_eth patches for 2.6.27.  (They
> were all ACKed by Dale, and I've agreed to take over mv643xx_eth
> maintainership from him.)
> 
> 
> thanks,
> Lennert
> 
> 
> 
> The following changes since commit 39b945a37bac2b692773a470890c8ba301485b15:
>   Linus Torvalds (1):
>         Merge master.kernel.org:/home/rmk/linux-2.6-arm
> 
> are available in the git repository at:
> 
>   git://git.marvell.com/mv643xx_eth.git for-2.6.27
> 
> Dale Farnsworth (1):
>       mv643xx_eth: new maintainer
> 
> Lennert Buytenhek (38):
>       mv643xx_eth: reverse topological sort of functions
>       mv643xx_eth: trim unnecessary includes
>       mv643xx_eth: shorten reg names
>       mv643xx_eth: get rid of individual port config register bit defines
>       mv643xx_eth: get rid of individual port config extend register bit defines
>       mv643xx_eth: delete unused SDMA config register bit defines
>       mv643xx_eth: delete unused port serial control register bit defines
>       mv643xx_eth: nuke port status register bit defines
>       mv643xx_eth: remove unused DESC_SIZE define
>       mv643xx_eth: clarify irq masking and unmasking
>       mv643xx_eth: move PHY wait defines into callers
>       mv643xx_eth: get rid of RX_BUF_OFFSET
>       mv643xx_eth: move MIB offset defines into their only user
>       mv643xx_eth: remove port serial status register bit defines
>       mv643xx_eth: clean up rx/tx descriptor field defines
>       mv643xx_eth: get rid of ETH_/ethernet_/eth_ prefixes
>       mv643xx_eth: use 'mv643xx_eth_' prefix consistently
>       mv643xx_eth: kill superfluous comments
>       mv643xx_eth: kill ->rx_resource_err
>       mv643xx_eth: get rid of hungarian variable naming
>       mv643xx_eth: move port_receive() into its only caller
>       mv643xx_eth: move rx_return_buff() into its only caller
>       mv643xx_eth: kill FUNC_RET_STATUS/pkt_info
>       mv643xx_eth: kill private unused instance of struct net_device_stats
>       mv643xx_eth: massively simplify multicast address crc8 computation
>       mv643xx_eth: split out rx queue state
>       mv643xx_eth: split out tx queue state
>       mv643xx_eth: remove write-only interrupt coalescing variables
>       mv643xx_eth: general cleanup
>       mv643xx_eth: add tx rate control
>       mv643xx_eth: allow multiple RX queues
>       mv643xx_eth: allow multiple TX queues
>       mv643xx_eth: work around TX hang hardware issue
>       mv643xx_eth: detect extended rx coal register field
>       mv643xx_eth: detect alternate TX BW control register location
>       mv643xx_eth: be more agressive about RX refill
>       mv643xx_eth: add PHY-less mode
>       mv643xx_eth: update driver version and author fields

ignore my last email... is this current?  or is there more?

	Jeff



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

* Re: Pull request for mv643xx_eth 'for-2.6.27' branch
  2008-06-10 22:15 ` Jeff Garzik
@ 2008-06-10 22:25   ` Lennert Buytenhek
  0 siblings, 0 replies; 6+ messages in thread
From: Lennert Buytenhek @ 2008-06-10 22:25 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: dale, netdev

On Tue, Jun 10, 2008 at 06:15:15PM -0400, Jeff Garzik wrote:

> >Please pull the following mv643xx_eth patches for 2.6.27.  (They
> >were all ACKed by Dale, and I've agreed to take over mv643xx_eth
> >maintainership from him.)
> >
> >
> >thanks,
> >Lennert
> >
> >
> >
> >The following changes since commit 
> >39b945a37bac2b692773a470890c8ba301485b15:
> >  Linus Torvalds (1):
> >        Merge master.kernel.org:/home/rmk/linux-2.6-arm
> >
> >are available in the git repository at:
> >
> >  git://git.marvell.com/mv643xx_eth.git for-2.6.27
> >
> >Dale Farnsworth (1):
> >      mv643xx_eth: new maintainer
> >
> >Lennert Buytenhek (38):
> >      mv643xx_eth: reverse topological sort of functions
> >      mv643xx_eth: trim unnecessary includes
> >      mv643xx_eth: shorten reg names
> >      mv643xx_eth: get rid of individual port config register bit defines
> >      mv643xx_eth: get rid of individual port config extend register bit 
> >      defines
> >      mv643xx_eth: delete unused SDMA config register bit defines
> >      mv643xx_eth: delete unused port serial control register bit defines
> >      mv643xx_eth: nuke port status register bit defines
> >      mv643xx_eth: remove unused DESC_SIZE define
> >      mv643xx_eth: clarify irq masking and unmasking
> >      mv643xx_eth: move PHY wait defines into callers
> >      mv643xx_eth: get rid of RX_BUF_OFFSET
> >      mv643xx_eth: move MIB offset defines into their only user
> >      mv643xx_eth: remove port serial status register bit defines
> >      mv643xx_eth: clean up rx/tx descriptor field defines
> >      mv643xx_eth: get rid of ETH_/ethernet_/eth_ prefixes
> >      mv643xx_eth: use 'mv643xx_eth_' prefix consistently
> >      mv643xx_eth: kill superfluous comments
> >      mv643xx_eth: kill ->rx_resource_err
> >      mv643xx_eth: get rid of hungarian variable naming
> >      mv643xx_eth: move port_receive() into its only caller
> >      mv643xx_eth: move rx_return_buff() into its only caller
> >      mv643xx_eth: kill FUNC_RET_STATUS/pkt_info
> >      mv643xx_eth: kill private unused instance of struct net_device_stats
> >      mv643xx_eth: massively simplify multicast address crc8 computation
> >      mv643xx_eth: split out rx queue state
> >      mv643xx_eth: split out tx queue state
> >      mv643xx_eth: remove write-only interrupt coalescing variables
> >      mv643xx_eth: general cleanup
> >      mv643xx_eth: add tx rate control
> >      mv643xx_eth: allow multiple RX queues
> >      mv643xx_eth: allow multiple TX queues
> >      mv643xx_eth: work around TX hang hardware issue
> >      mv643xx_eth: detect extended rx coal register field
> >      mv643xx_eth: detect alternate TX BW control register location
> >      mv643xx_eth: be more agressive about RX refill
> >      mv643xx_eth: add PHY-less mode
> >      mv643xx_eth: update driver version and author fields
> 
> ignore my last email... is this current?  or is there more?

This is current and complete -- I don't have anything else queued
up at this point.

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

* Re: Pull request for mv643xx_eth 'for-2.6.27' branch
  2008-06-06 11:37 Pull request for mv643xx_eth 'for-2.6.27' branch Lennert Buytenhek
  2008-06-10 22:15 ` Jeff Garzik
@ 2008-06-12  2:50 ` Jeff Garzik
  2008-06-12  6:50   ` Lennert Buytenhek
  1 sibling, 1 reply; 6+ messages in thread
From: Jeff Garzik @ 2008-06-12  2:50 UTC (permalink / raw)
  To: Lennert Buytenhek; +Cc: dale, netdev

Lennert Buytenhek wrote:
> Jeff,
> 
> Please pull the following mv643xx_eth patches for 2.6.27.  (They
> were all ACKed by Dale, and I've agreed to take over mv643xx_eth
> maintainership from him.)
> 
> 
> thanks,
> Lennert
> 
> 
> 
> The following changes since commit 39b945a37bac2b692773a470890c8ba301485b15:
>   Linus Torvalds (1):
>         Merge master.kernel.org:/home/rmk/linux-2.6-arm
> 
> are available in the git repository at:
> 
>   git://git.marvell.com/mv643xx_eth.git for-2.6.27

this pulls in a metric boatload of stuff into net-next, so I cannot pull
it :(




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

* Re: Pull request for mv643xx_eth 'for-2.6.27' branch
  2008-06-12  2:50 ` Jeff Garzik
@ 2008-06-12  6:50   ` Lennert Buytenhek
  2008-06-18  3:24     ` Jeff Garzik
  0 siblings, 1 reply; 6+ messages in thread
From: Lennert Buytenhek @ 2008-06-12  6:50 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: dale, netdev

On Wed, Jun 11, 2008 at 10:50:51PM -0400, Jeff Garzik wrote:

> >Please pull the following mv643xx_eth patches for 2.6.27.  (They
> >were all ACKed by Dale, and I've agreed to take over mv643xx_eth
> >maintainership from him.)
> >
> >
> >thanks,
> >Lennert
> >
> >
> >
> >The following changes since commit 
> >39b945a37bac2b692773a470890c8ba301485b15:
> >  Linus Torvalds (1):
> >        Merge master.kernel.org:/home/rmk/linux-2.6-arm
> >
> >are available in the git repository at:
> >
> >  git://git.marvell.com/mv643xx_eth.git for-2.6.27
> 
> this pulls in a metric boatload of stuff into net-next, so I cannot pull
> it :(

I've rebased the changes onto net-next-2.6.  Does this work
better for you?



The following changes since commit d4c3c0753594adaafbcb77a086f013f1d847b3f0:
  Adrian Bunk (1):
        irda: remove CVS keywords

are available in the git repository at:

  git://git.marvell.com/mv643xx_eth.git for-2.6.27

Dale Farnsworth (1):
      mv643xx_eth: new maintainer

Lennert Buytenhek (38):
      mv643xx_eth: reverse topological sort of functions
      mv643xx_eth: trim unnecessary includes
      mv643xx_eth: shorten reg names
      mv643xx_eth: get rid of individual port config register bit defines
      mv643xx_eth: get rid of individual port config extend register bit defines
      mv643xx_eth: delete unused SDMA config register bit defines
      mv643xx_eth: delete unused port serial control register bit defines
      mv643xx_eth: nuke port status register bit defines
      mv643xx_eth: remove unused DESC_SIZE define
      mv643xx_eth: clarify irq masking and unmasking
      mv643xx_eth: move PHY wait defines into callers
      mv643xx_eth: get rid of RX_BUF_OFFSET
      mv643xx_eth: move MIB offset defines into their only user
      mv643xx_eth: remove port serial status register bit defines
      mv643xx_eth: clean up rx/tx descriptor field defines
      mv643xx_eth: get rid of ETH_/ethernet_/eth_ prefixes
      mv643xx_eth: use 'mv643xx_eth_' prefix consistently
      mv643xx_eth: kill superfluous comments
      mv643xx_eth: kill ->rx_resource_err
      mv643xx_eth: get rid of hungarian variable naming
      mv643xx_eth: move port_receive() into its only caller
      mv643xx_eth: move rx_return_buff() into its only caller
      mv643xx_eth: kill FUNC_RET_STATUS/pkt_info
      mv643xx_eth: kill private unused instance of struct net_device_stats
      mv643xx_eth: massively simplify multicast address crc8 computation
      mv643xx_eth: split out rx queue state
      mv643xx_eth: split out tx queue state
      mv643xx_eth: remove write-only interrupt coalescing variables
      mv643xx_eth: general cleanup
      mv643xx_eth: add tx rate control
      mv643xx_eth: allow multiple RX queues
      mv643xx_eth: allow multiple TX queues
      mv643xx_eth: work around TX hang hardware issue
      mv643xx_eth: detect extended rx coal register field
      mv643xx_eth: detect alternate TX BW control register location
      mv643xx_eth: be more agressive about RX refill
      mv643xx_eth: add PHY-less mode
      mv643xx_eth: update driver version and author fields

 MAINTAINERS                 |    8 +-
 drivers/net/mv643xx_eth.c   | 4557 ++++++++++++++++++-------------------------
 include/linux/mv643xx_eth.h |   65 +-
 3 files changed, 1935 insertions(+), 2695 deletions(-)

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

* Re: Pull request for mv643xx_eth 'for-2.6.27' branch
  2008-06-12  6:50   ` Lennert Buytenhek
@ 2008-06-18  3:24     ` Jeff Garzik
  0 siblings, 0 replies; 6+ messages in thread
From: Jeff Garzik @ 2008-06-18  3:24 UTC (permalink / raw)
  To: Lennert Buytenhek; +Cc: dale, netdev

Lennert Buytenhek wrote:
> On Wed, Jun 11, 2008 at 10:50:51PM -0400, Jeff Garzik wrote:
> 
>>> Please pull the following mv643xx_eth patches for 2.6.27.  (They
>>> were all ACKed by Dale, and I've agreed to take over mv643xx_eth
>>> maintainership from him.)
>>>
>>>
>>> thanks,
>>> Lennert
>>>
>>>
>>>
>>> The following changes since commit 
>>> 39b945a37bac2b692773a470890c8ba301485b15:
>>>  Linus Torvalds (1):
>>>        Merge master.kernel.org:/home/rmk/linux-2.6-arm
>>>
>>> are available in the git repository at:
>>>
>>>  git://git.marvell.com/mv643xx_eth.git for-2.6.27
>> this pulls in a metric boatload of stuff into net-next, so I cannot pull
>> it :(
> 
> I've rebased the changes onto net-next-2.6.  Does this work
> better for you?
> 
> 
> 
> The following changes since commit d4c3c0753594adaafbcb77a086f013f1d847b3f0:
>   Adrian Bunk (1):
>         irda: remove CVS keywords
> 
> are available in the git repository at:
> 
>   git://git.marvell.com/mv643xx_eth.git for-2.6.27

pulled, thanks!



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

end of thread, other threads:[~2008-06-18  3:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-06 11:37 Pull request for mv643xx_eth 'for-2.6.27' branch Lennert Buytenhek
2008-06-10 22:15 ` Jeff Garzik
2008-06-10 22:25   ` Lennert Buytenhek
2008-06-12  2:50 ` Jeff Garzik
2008-06-12  6:50   ` Lennert Buytenhek
2008-06-18  3:24     ` Jeff Garzik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).