All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch net-next-2.6 0/8] mostly bonding rx path changes
@ 2011-03-05 10:29 Jiri Pirko
  2011-03-05 10:29 ` [patch net-next-2.6 1/8] af_packet: use skb->skb_iif instead of orig_dev->ifindex Jiri Pirko
                   ` (7 more replies)
  0 siblings, 8 replies; 74+ messages in thread
From: Jiri Pirko @ 2011-03-05 10:29 UTC (permalink / raw)
  To: netdev
  Cc: davem, shemminger, kaber, fubar, eric.dumazet, nicolas.2p.debian,
	andy

This patchset focuses mainly bonding rx path changes.

Depends on "fcoe: correct checking for bonding"

Jiri Pirko (8):
  af_packet: use skb->skb_iif instead of orig_dev->ifindex
  bonding: register slave pointer for rx_handler
  net: get rid of multiple bond-related netdevice->priv_flags
  bonding: wrap slave state work
  bonding: get rid of IFF_SLAVE_INACTIVE netdev->priv_flag
  bonding: move processing of recv handlers into handle_frame()
  net: introduce rx_handler results and logic around that
  net: get rid of orig_dev parameter of packet handlers

 drivers/block/aoe/aoenet.c       |    2 +-
 drivers/net/bonding/bond_3ad.c   |   31 +-----
 drivers/net/bonding/bond_3ad.h   |    4 +-
 drivers/net/bonding/bond_alb.c   |   46 ++------
 drivers/net/bonding/bond_alb.h   |    1 -
 drivers/net/bonding/bond_main.c  |  217 ++++++++++++-------------------------
 drivers/net/bonding/bond_sysfs.c |   20 +---
 drivers/net/bonding/bonding.h    |   64 ++++++-----
 drivers/net/hamradio/bpqether.c  |    4 +-
 drivers/net/macvlan.c            |   11 +-
 drivers/net/pppoe.c              |    4 +-
 drivers/net/wan/hdlc.c           |    2 +-
 drivers/net/wan/lapbether.c      |    2 +-
 drivers/scsi/fcoe/fcoe.c         |   12 +--
 include/linux/if.h               |   23 ++---
 include/linux/netdevice.h        |   12 ++-
 include/linux/skbuff.h           |    5 +-
 include/net/ax25.h               |    3 +-
 include/net/datalink.h           |    2 +-
 include/net/ip.h                 |    2 +-
 include/net/ipv6.h               |    3 +-
 include/net/irda/irda.h          |    3 +-
 include/net/llc.h                |    8 +-
 include/net/p8022.h              |    3 +-
 include/net/psnap.h              |    3 +-
 include/net/x25.h                |    2 +-
 net/802/p8022.c                  |    3 +-
 net/802/psnap.c                  |    7 +-
 net/802/stp.c                    |    2 +-
 net/8021q/vlan.h                 |    2 +-
 net/8021q/vlan_dev.c             |    2 +-
 net/appletalk/aarp.c             |    2 +-
 net/appletalk/ddp.c              |    6 +-
 net/ax25/ax25_in.c               |    2 +-
 net/batman-adv/hard-interface.c  |    6 +-
 net/bridge/br_input.c            |   25 +++--
 net/bridge/br_private.h          |    2 +-
 net/caif/caif_dev.c              |    2 +-
 net/can/af_can.c                 |    2 +-
 net/core/dev.c                   |   45 ++++----
 net/core/skbuff.c                |    1 -
 net/decnet/af_decnet.c           |    2 +-
 net/decnet/dn_route.c            |    2 +-
 net/dsa/tag_dsa.c                |    2 +-
 net/dsa/tag_edsa.c               |    2 +-
 net/dsa/tag_trailer.c            |    2 +-
 net/econet/af_econet.c           |    2 +-
 net/ieee802154/af_ieee802154.c   |    2 +-
 net/ipv4/arp.c                   |    2 +-
 net/ipv4/ip_input.c              |    2 +-
 net/ipv4/ipconfig.c              |   13 ++-
 net/ipv6/ip6_input.c             |    3 +-
 net/ipx/af_ipx.c                 |    3 +-
 net/irda/irlap_frame.c           |    2 +-
 net/llc/llc_core.c               |    3 +-
 net/llc/llc_input.c              |    8 +-
 net/packet/af_packet.c           |   10 +-
 net/phonet/af_phonet.c           |    3 +-
 net/tipc/eth_media.c             |    2 +-
 net/x25/x25_dev.c                |    2 +-
 60 files changed, 268 insertions(+), 397 deletions(-)

-- 
1.7.4


^ permalink raw reply	[flat|nested] 74+ messages in thread
* [patch net-next-2.6 0/8] mostly bonding rx path changes
@ 2011-03-05  8:29 Jiri Pirko
  2011-03-05  8:29 ` [patch net-next-2.6 8/8] net: get rid of orig_dev parameter of packet handlers Jiri Pirko
  0 siblings, 1 reply; 74+ messages in thread
From: Jiri Pirko @ 2011-03-05  8:29 UTC (permalink / raw)
  To: netdev
  Cc: davem, shemminger, kaber, fubar, eric.dumazet, nicolas.2p.debian,
	andy

This patchset focuses mainly bonding rx path changes.

Depends on "fcoe: correct checking for bonding"

Jiri Pirko (8):
  af_packet: use skb->skb_iif instead of orig_dev->ifindex
  bonding: register slave pointer for rx_handler
  net: get rid of multiple bond-related netdevice->priv_flags
  bonding: wrap slave state work
  bonding: get rid of IFF_SLAVE_INACTIVE netdev->priv_flag
  bonding: move processing of recv handlers into handle_frame()
  net: introduce rx_handler results and logic around that
  net: get rid of orig_dev parameter of packet handlers

 drivers/block/aoe/aoenet.c       |    2 +-
 drivers/net/bonding/bond_3ad.c   |   31 +-----
 drivers/net/bonding/bond_3ad.h   |    4 +-
 drivers/net/bonding/bond_alb.c   |   46 ++------
 drivers/net/bonding/bond_alb.h   |    1 -
 drivers/net/bonding/bond_main.c  |  217 ++++++++++++-------------------------
 drivers/net/bonding/bond_sysfs.c |   20 +---
 drivers/net/bonding/bonding.h    |   64 ++++++-----
 drivers/net/hamradio/bpqether.c  |    4 +-
 drivers/net/macvlan.c            |   11 +-
 drivers/net/pppoe.c              |    4 +-
 drivers/net/wan/hdlc.c           |    2 +-
 drivers/net/wan/lapbether.c      |    2 +-
 drivers/scsi/fcoe/fcoe.c         |   12 +--
 include/linux/if.h               |   23 ++---
 include/linux/netdevice.h        |   12 ++-
 include/linux/skbuff.h           |    5 +-
 include/net/ax25.h               |    3 +-
 include/net/datalink.h           |    2 +-
 include/net/ip.h                 |    2 +-
 include/net/ipv6.h               |    3 +-
 include/net/irda/irda.h          |    3 +-
 include/net/llc.h                |    8 +-
 include/net/p8022.h              |    3 +-
 include/net/psnap.h              |    3 +-
 include/net/x25.h                |    2 +-
 net/802/p8022.c                  |    3 +-
 net/802/psnap.c                  |    7 +-
 net/802/stp.c                    |    2 +-
 net/8021q/vlan.h                 |    2 +-
 net/8021q/vlan_dev.c             |    2 +-
 net/appletalk/aarp.c             |    2 +-
 net/appletalk/ddp.c              |    6 +-
 net/ax25/ax25_in.c               |    2 +-
 net/batman-adv/hard-interface.c  |    6 +-
 net/bridge/br_input.c            |   25 +++--
 net/bridge/br_private.h          |    2 +-
 net/caif/caif_dev.c              |    2 +-
 net/can/af_can.c                 |    2 +-
 net/core/dev.c                   |   45 ++++----
 net/core/skbuff.c                |    1 -
 net/decnet/af_decnet.c           |    2 +-
 net/decnet/dn_route.c            |    2 +-
 net/dsa/tag_dsa.c                |    2 +-
 net/dsa/tag_edsa.c               |    2 +-
 net/dsa/tag_trailer.c            |    2 +-
 net/econet/af_econet.c           |    2 +-
 net/ieee802154/af_ieee802154.c   |    2 +-
 net/ipv4/arp.c                   |    2 +-
 net/ipv4/ip_input.c              |    2 +-
 net/ipv4/ipconfig.c              |   13 ++-
 net/ipv6/ip6_input.c             |    3 +-
 net/ipx/af_ipx.c                 |    3 +-
 net/irda/irlap_frame.c           |    2 +-
 net/llc/llc_core.c               |    3 +-
 net/llc/llc_input.c              |    8 +-
 net/packet/af_packet.c           |   10 +-
 net/phonet/af_phonet.c           |    3 +-
 net/tipc/eth_media.c             |    2 +-
 net/x25/x25_dev.c                |    2 +-
 60 files changed, 268 insertions(+), 397 deletions(-)

-- 
1.7.4


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

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

Thread overview: 74+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-05 10:29 [patch net-next-2.6 0/8] mostly bonding rx path changes Jiri Pirko
2011-03-05 10:29 ` [patch net-next-2.6 1/8] af_packet: use skb->skb_iif instead of orig_dev->ifindex Jiri Pirko
2011-03-05 14:03   ` Nicolas de Pesloüan
2011-03-05 10:29 ` [patch net-next-2.6 2/8] bonding: register slave pointer for rx_handler Jiri Pirko
2011-03-05 14:06   ` Nicolas de Pesloüan
2011-03-05 14:27     ` Jiri Pirko
2011-03-05 14:38       ` Nicolas de Pesloüan
2011-03-05 10:29 ` [patch net-next-2.6 3/8] net: get rid of multiple bond-related netdevice->priv_flags Jiri Pirko
2011-03-05 14:14   ` Nicolas de Pesloüan
2011-03-05 14:37     ` Ben Hutchings
2011-03-05 14:46       ` Nicolas de Pesloüan
2011-03-05 10:29 ` [patch net-next-2.6 4/8] bonding: wrap slave state work Jiri Pirko
2011-03-05 15:21   ` Nicolas de Pesloüan
2011-03-07  9:58     ` Jiri Pirko
2011-03-07 19:55       ` Nicolas de Pesloüan
2011-03-08  7:18         ` Jiri Pirko
2011-03-08 21:23           ` Nicolas de Pesloüan
2011-03-05 10:29 ` [patch net-next-2.6 5/8] bonding: get rid of IFF_SLAVE_INACTIVE netdev->priv_flag Jiri Pirko
2011-03-05 14:18   ` Nicolas de Pesloüan
2011-03-05 10:29 ` [patch net-next-2.6 6/8] bonding: move processing of recv handlers into handle_frame() Jiri Pirko
2011-03-05 14:33   ` Nicolas de Pesloüan
2011-03-05 14:43     ` Jiri Pirko
2011-03-05 14:50       ` Nicolas de Pesloüan
2011-03-06 12:24         ` Nicolas de Pesloüan
2011-03-06 13:34           ` Jiri Pirko
2011-03-06 14:25             ` Nicolas de Pesloüan
2011-03-06 16:32               ` Michał Mirosław
2011-03-06 17:37                 ` Nicolas de Pesloüan
2011-03-07 12:51             ` [patch net-next-2.6] net: reinject arps into bonding slave instead of master Jiri Pirko
2011-03-07 14:32               ` Andy Gospodarek
2011-03-07 20:12                 ` Nicolas de Pesloüan
2011-03-07 21:19                   ` Jiri Pirko
2011-03-07 21:30                     ` Nicolas de Pesloüan
2011-03-07 22:43               ` Andy Gospodarek
2011-03-07 23:09                 ` Nicolas de Pesloüan
2011-03-08  2:43                   ` Andy Gospodarek
2011-03-08 21:34                     ` Nicolas de Pesloüan
2011-03-08  7:13                 ` Jiri Pirko
2011-03-08 13:42                   ` Andy Gospodarek
2011-03-08 21:44                     ` Nicolas de Pesloüan
2011-03-09  7:45                       ` Jiri Pirko
2011-03-09 14:49                         ` Nicolas de Pesloüan
2011-03-09 15:09                           ` Jiri Pirko
2011-03-09 15:28                             ` Nicolas de Pesloüan
2011-03-09 17:11                               ` Jiri Pirko
2011-03-09 22:18                                 ` Nicolas de Pesloüan
2011-03-10  6:48                                   ` Jiri Pirko
2011-03-10 20:44                                     ` Nicolas de Pesloüan
2011-03-10 20:52                                       ` Jiri Pirko
2011-03-10 21:05                                       ` Jiri Pirko
2011-03-09 20:51                         ` Jiri Pirko
2011-03-09 13:33                       ` Neil Horman
2011-03-05 10:29 ` [patch net-next-2.6 7/8] net: introduce rx_handler results and logic around that Jiri Pirko
2011-03-05 12:48   ` Ben Hutchings
2011-03-05 14:52     ` Nicolas de Pesloüan
2011-03-05 14:54       ` Jiri Pirko
2011-03-05 15:06         ` Nicolas de Pesloüan
2011-03-05 15:13     ` [patch net-next-2.6] net: comment rx_handler results Jiri Pirko
2011-03-05 15:27       ` Nicolas de Pesloüan
2011-03-05 15:37         ` Jiri Pirko
2011-03-05 15:50           ` Nicolas de Pesloüan
2011-03-06 20:00             ` [PATCH net-next-2.6] net: enhance the documentation for rx_handler Nicolas de Pesloüan
2011-03-07  9:54               ` Jiri Pirko
2011-03-07 16:36               ` Stephen Hemminger
2011-03-07 20:01                 ` [PATCH net-next-2.6 V2] " Nicolas de Pesloüan
2011-03-05 15:31   ` [patch net-next-2.6 7/8 v2] net: introduce rx_handler results and logic around that Jiri Pirko
2011-03-05 10:29 ` [patch net-next-2.6 8/8] net: get rid of orig_dev parameter of packet handlers Jiri Pirko
2011-03-05 15:05   ` Nicolas de Pesloüan
2011-03-05 15:15     ` Jiri Pirko
2011-03-05 15:32   ` [patch net-next-2.6 8/8 v2] " Jiri Pirko
2011-03-05 16:56     ` Nicolas de Pesloüan
2011-03-05 22:07       ` Jiri Pirko
2011-03-05 22:18         ` Nicolas de Pesloüan
  -- strict thread matches above, loose matches on Subject: below --
2011-03-05  8:29 [patch net-next-2.6 0/8] mostly bonding rx path changes Jiri Pirko
2011-03-05  8:29 ` [patch net-next-2.6 8/8] net: get rid of orig_dev parameter of packet handlers Jiri Pirko

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.