netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jiri Pirko <jpirko@redhat.com>
To: netdev@vger.kernel.org
Cc: davem@davemloft.net, shemminger@linux-foundation.org,
	kaber@trash.net, fubar@us.ibm.com, eric.dumazet@gmail.com,
	nicolas.2p.debian@gmail.com, andy@greyhouse.net
Subject: Re: [patch net-next-2.6 0/8] mostly bonding rx path changes
Date: Sat, 5 Mar 2011 11:30:24 +0100	[thread overview]
Message-ID: <20110305103024.GA7799@psychotron.redhat.com> (raw)
In-Reply-To: <1299313794-5218-1-git-send-email-jpirko@redhat.com>

Resubmitted with more text. Sorry for annoyance :(

Sat, Mar 05, 2011 at 09:29:46AM CET, jpirko@redhat.com wrote:
>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
>

  parent reply	other threads:[~2011-03-05 10:30 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 1/8] af_packet: use skb->skb_iif instead of orig_dev->ifindex Jiri Pirko
2011-03-05 16:34   ` Changli Gao
2011-03-05  8:29 ` [patch net-next-2.6 2/8] bonding: register slave pointer for rx_handler Jiri Pirko
2011-03-05  8:29 ` [patch net-next-2.6 3/8] net: get rid of multiple bond-related netdevice->priv_flags Jiri Pirko
2011-03-05  8:29 ` [patch net-next-2.6 4/8] bonding: wrap slave state work Jiri Pirko
2011-03-05  8:29 ` [patch net-next-2.6 5/8] bonding: get rid of IFF_SLAVE_INACTIVE netdev->priv_flag Jiri Pirko
2011-03-05  8:29 ` [patch net-next-2.6 6/8] bonding: move processing of recv handlers into handle_frame() Jiri Pirko
2011-03-05  8:29 ` [patch net-next-2.6 7/8] net: introduce rx_handler results and logic around that Jiri Pirko
2011-03-05 16:45   ` Changli Gao
2011-03-05  8:29 ` [patch net-next-2.6 8/8] net: get rid of orig_dev parameter of packet handlers Jiri Pirko
2011-03-05  9:12 ` [patch net-next-2.6 0/8] mostly bonding rx path changes Eric Dumazet
2011-03-05  9:35   ` Jiri Pirko
2011-03-05 10:30 ` Jiri Pirko [this message]
  -- strict thread matches above, loose matches on Subject: below --
2011-03-05 10:29 Jiri Pirko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110305103024.GA7799@psychotron.redhat.com \
    --to=jpirko@redhat.com \
    --cc=andy@greyhouse.net \
    --cc=davem@davemloft.net \
    --cc=eric.dumazet@gmail.com \
    --cc=fubar@us.ibm.com \
    --cc=kaber@trash.net \
    --cc=netdev@vger.kernel.org \
    --cc=nicolas.2p.debian@gmail.com \
    --cc=shemminger@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).