public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
* [patch net-next-2.6 00/22] vlan cleanup round1
@ 2011-07-15 21:33 Jiri Pirko
  2011-07-15 21:33 ` [patch net-next-2.6 01/21] nes: do vlan cleanup Jiri Pirko
                   ` (21 more replies)
  0 siblings, 22 replies; 25+ messages in thread
From: Jiri Pirko @ 2011-07-15 21:33 UTC (permalink / raw)
  To: netdev; +Cc: davem, shemminger, eric.dumazet, greearb, mirqus

This patchset converts several drivers to new vlan model.
Also kills several vlan helpers:
vlan_hwaccel_receive_skb,
lro_vlan_hwaccel_receive_frags,
lro_vlan_hwaccel_receive_skb

note gianfar patch is dependent on "[PATCH] gianfar: rx parser"

Jiri Pirko (22):
  gianfar: rx parser
  nes: do vlan cleanup
  ehea: unify vlan and nonvlan rx path
  kill lro_vlan_hwaccel_receive_skb
  amd8111e: do vlan cleanup
  atl1c: do vlan cleanup
  atl1e: do vlan cleanup
  bnad: do vlan cleanup
  chelsio: do vlan cleanup
  cxgb4vf: do vlan cleanup
  enic: do vlan cleanup
  gianfar: do vlan cleanup
  igbvf: do vlan cleanup
  jme: do vlan cleanup
  mlx4: do vlan cleanup
  qlge: do vlan cleanup
  s2io: do vlan cleanup
  spider_net: do not mention dying vlan_hwaccel_receive_skb
  tehuti: do vlan cleanup
  lro: unify vlan and nonvlan rx path
  lro: kill lro_vlan_hwaccel_receive_frags
  vlan: kill vlan_hwaccel_receive_skb

 drivers/infiniband/hw/nes/nes_hw.c  |   19 ++---
 drivers/infiniband/hw/nes/nes_hw.h  |    4 -
 drivers/infiniband/hw/nes/nes_nic.c |   42 +++------
 drivers/net/amd8111e.c              |   34 ++------
 drivers/net/amd8111e.h              |    3 -
 drivers/net/atl1c/atl1c.h           |    1 -
 drivers/net/atl1c/atl1c_main.c      |   51 ++----------
 drivers/net/atl1e/atl1e.h           |    1 -
 drivers/net/atl1e/atl1e_main.c      |   49 ++---------
 drivers/net/bna/bnad.c              |   55 ++++--------
 drivers/net/bna/bnad.h              |    3 +-
 drivers/net/chelsio/common.h        |    2 -
 drivers/net/chelsio/cxgb2.c         |   19 +----
 drivers/net/chelsio/sge.c           |   11 +--
 drivers/net/cxgb4vf/adapter.h       |    1 -
 drivers/net/cxgb4vf/cxgb4vf_main.c  |   18 +----
 drivers/net/cxgb4vf/sge.c           |   34 ++------
 drivers/net/ehea/ehea_main.c        |   22 ++---
 drivers/net/enic/enic.h             |    1 -
 drivers/net/enic/enic_main.c        |   32 ++------
 drivers/net/gianfar.c               |   77 ++++++++++-------
 drivers/net/gianfar.h               |    6 +-
 drivers/net/gianfar_ethtool.c       |    3 +
 drivers/net/igbvf/igbvf.h           |    4 +-
 drivers/net/igbvf/netdev.c          |   51 +++++------
 drivers/net/jme.c                   |   28 +-----
 drivers/net/jme.h                   |    4 -
 drivers/net/mlx4/en_netdev.c        |   49 +++--------
 drivers/net/mlx4/en_port.c          |   23 ++---
 drivers/net/mlx4/en_rx.c            |   24 +++---
 drivers/net/mlx4/mlx4_en.h          |    6 +-
 drivers/net/qlge/qlge.h             |    3 +-
 drivers/net/qlge/qlge_main.c        |  164 +++++++++++++++++++----------------
 drivers/net/s2io.c                  |   70 ++--------------
 drivers/net/s2io.h                  |    1 -
 drivers/net/spider_net.c            |    4 +-
 drivers/net/tehuti.c                |   37 ++-------
 drivers/net/tehuti.h                |    1 -
 include/linux/if_vlan.h             |   13 ---
 include/linux/inet_lro.h            |   17 ----
 net/ipv4/inet_lro.c                 |   54 +-----------
 41 files changed, 313 insertions(+), 728 deletions(-)

-- 
1.7.6


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

end of thread, other threads:[~2011-07-16 10:05 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-15 21:33 [patch net-next-2.6 00/22] vlan cleanup round1 Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 01/21] nes: do vlan cleanup Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 02/21] ehea: unify vlan and nonvlan rx path Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 03/21] kill lro_vlan_hwaccel_receive_skb Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 04/21] amd8111e: do vlan cleanup Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 05/21] atl1c: " Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 06/21] atl1e: " Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 07/21] bnad: " Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 08/21] chelsio: " Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 09/21] cxgb4vf: " Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 10/21] enic: " Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 11/21] gianfar: " Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 12/21] igbvf: " Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 13/21] jme: " Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 14/21] mlx4: " Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 15/21] qlge: " Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 16/21] s2io: " Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 17/21] spider_net: do not mention dying vlan_hwaccel_receive_skb Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 18/21] tehuti: do vlan cleanup Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 19/21] lro: unify vlan and nonvlan rx path Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 20/21] lro: kill lro_vlan_hwaccel_receive_frags Jiri Pirko
2011-07-15 21:33 ` [patch net-next-2.6 21/21] vlan: kill vlan_hwaccel_receive_skb Jiri Pirko
2011-07-15 22:15 ` [patch net-next-2.6 00/22] vlan cleanup round1 Michał Mirosław
2011-07-15 23:07   ` Jiri Pirko
2011-07-16 10:05     ` Jiri Pirko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox