All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] Series short description
@ 2011-06-17 21:16 John Fastabend
  2011-06-17 21:16 ` [PATCH 1/7] dcb: Add DCBX capabilities bitmask to the get_ieee response John Fastabend
                   ` (7 more replies)
  0 siblings, 8 replies; 17+ messages in thread
From: John Fastabend @ 2011-06-17 21:16 UTC (permalink / raw)
  To: davem; +Cc: netdev, shmulikr

The following series implements improvements to the DCB netlink
interface. This work was done to improve Application handling
and support firmware based LLDP agents.

This adds a multicast group for DCB currently user space has
trouble keeping in sync across multiple applications and with
firmware agents making DCB attribute changes in the driver.

To help support the recently ratified IEEE802.1Qaz extension
which supports multiple APP data entries for the same
selector and protocol fields a series of ieee set and delete
routines were improved and in the delete case added.

Finally the patches 5 and 6 are fixes to currently existing
code.

Please consider for net-next-2.6 inclusion.

---

John Fastabend (7):
      dcb: Add missing error check in dcb_ieee_set()
      dcb: fix return type on dcb_setapp()
      dcb: Add dcb_ieee_getapp_mask() for drivers to query APP settings
      dcb: Add ieee_dcb_delapp() and dcb op to delete app entry
      dcb: Add ieee_dcb_setapp() to be used for IEEE 802.1Qaz APP data
      net: dcbnl, add multicast group for DCB
      dcb: Add DCBX capabilities bitmask to the get_ieee response


 include/linux/dcbnl.h     |    2 
 include/linux/rtnetlink.h |    2 
 include/net/dcbnl.h       |    6 +
 net/dcb/dcbnl.c           |  414 +++++++++++++++++++++++++++++++++++----------
 4 files changed, 334 insertions(+), 90 deletions(-)

-- 
Signature

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH 0/7] Series short description
@ 2012-04-24  0:08 ` Tony Lindgren
  0 siblings, 0 replies; 17+ messages in thread
From: Tony Lindgren @ 2012-04-24  0:08 UTC (permalink / raw)
  To: linux-arm-kernel; +Cc: linux-omap

Hi all,

Here are some patches to almost remove plat-omap/devices.c
as omap2+ is using hwmod to initialize most things.

The only driver remaining in plat-omap/devices.c is the
rng driver.

This also changes omap1 and 2420 specific mmc driver to
pass DMA request lines via platform_data as requested by
Russell.

Regards,

Tony

---

Tony Lindgren (7):
      ARM: OMAP1: Move omap_init_audio() to keep the devices in alphabetical order
      ARM: OMAP1: Move omap_init_uwire to mach-omap1
      ARM: OMAP2+: Move omap_dsp_reserve_sdram_memblock() to mach-omap2
      ARM: OMAP2: Add MMC hwmod data for 2420
      ARM: OMAP2: Use hwmod to initialize mmc for 2420
      ARM: OMAP: Move omap_mmc_add() to mach-omap1
      ARM: OMAP1: Pass dma request lines in platform data to MMC driver


 arch/arm/mach-omap1/devices.c              |  121 +++++++++++++++++++++++++---
 arch/arm/mach-omap2/devices.c              |   19 ++++
 arch/arm/mach-omap2/dsp.c                  |   27 ++++++
 arch/arm/mach-omap2/omap_hwmod_2420_data.c |   63 ++++++++++++++
 arch/arm/plat-omap/devices.c               |  122 ----------------------------
 arch/arm/plat-omap/include/plat/mmc.h      |    9 --
 6 files changed, 214 insertions(+), 147 deletions(-)

-- 
Signature

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH 0/7] Series short description
@ 2011-06-17 21:08 John Fastabend
  0 siblings, 0 replies; 17+ messages in thread
From: John Fastabend @ 2011-06-17 21:08 UTC (permalink / raw)
  To: davem; +Cc: netdev, shmulikr

The following series implements...

---

John Fastabend (7):
      dcb: Add missing error check in dcb_ieee_set()
      dcb: fix return type on dcb_setapp()
      dcb: Add dcb_ieee_getapp_mask() for drivers to query APP settings
      dcb: Add ieee_dcb_delapp() and dcb op to delete app entry
      dcbnl: Add ieee_dcb_setapp() to be used for IEEE 802.1Qaz APP data
      net: dcbnl, add multicast group for DCB
      Add DCBX capabilities bitmask to the get_ieee response.


 include/linux/dcbnl.h     |    2 
 include/linux/rtnetlink.h |    2 
 include/net/dcbnl.h       |    6 +
 net/dcb/dcbnl.c           |  414 +++++++++++++++++++++++++++++++++++----------
 4 files changed, 334 insertions(+), 90 deletions(-)

-- 
Signature

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH 0/7] Series short description
@ 2007-01-27 17:04 Yann Dirson
  2007-01-27 17:17 ` Yann Dirson
  0 siblings, 1 reply; 17+ messages in thread
From: Yann Dirson @ 2007-01-27 17:04 UTC (permalink / raw)
  To: Catalin Marinas; +Cc: git

The following series implements...

-- 
Yann Dirson    <ydirson@altern.org> |
Debian-related: <dirson@debian.org> |   Support Debian GNU/Linux:
                                    |  Freedom, Power, Stability, Gratis
     http://ydirson.free.fr/        | Check <http://www.debian.org/>

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

end of thread, other threads:[~2012-04-24  0:08 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-17 21:16 [PATCH 0/7] Series short description John Fastabend
2011-06-17 21:16 ` [PATCH 1/7] dcb: Add DCBX capabilities bitmask to the get_ieee response John Fastabend
2011-06-17 21:16 ` [PATCH 2/7] net: dcbnl, add multicast group for DCB John Fastabend
2011-06-19 18:14   ` Shmulik Ravid
2011-06-20 16:16     ` John Fastabend
2011-06-17 21:16 ` [PATCH 3/7] dcb: Add ieee_dcb_setapp() to be used for IEEE 802.1Qaz APP data John Fastabend
2011-06-17 21:16 ` [PATCH 4/7] dcb: Add ieee_dcb_delapp() and dcb op to delete app entry John Fastabend
2011-06-17 21:16 ` [PATCH 5/7] dcb: Add dcb_ieee_getapp_mask() for drivers to query APP settings John Fastabend
2011-06-17 21:16 ` [PATCH 6/7] dcb: fix return type on dcb_setapp() John Fastabend
2011-06-17 21:16 ` [PATCH 7/7] dcb: Add missing error check in dcb_ieee_set() John Fastabend
2011-06-19 17:58 ` [PATCH 0/7] Series short description Shmulik Ravid
2011-06-20 16:05   ` John Fastabend
  -- strict thread matches above, loose matches on Subject: below --
2012-04-24  0:08 Tony Lindgren
2012-04-24  0:08 ` Tony Lindgren
2011-06-17 21:08 John Fastabend
2007-01-27 17:04 Yann Dirson
2007-01-27 17:17 ` Yann Dirson

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.