From: Jiri Pirko <jiri@resnulli.us>
To: netdev@vger.kernel.org
Cc: davem@davemloft.net, eric.dumazet@gmail.com, timo.teras@iki.fi,
kuznet@ms2.inr.ac.ru, jmorris@namei.org, yoshfuji@linux-ipv6.org,
kaber@trash.net, bhutchings@solarflare.com
Subject: [patch net-next 0/3] net: extend netdevice notifier and use it for flags change
Date: Tue, 28 May 2013 10:10:52 +0200 [thread overview]
Message-ID: <1369728655-26649-1-git-send-email-jiri@resnulli.us> (raw)
Jiri Pirko (2):
net: pass info struct via netdevice notifier
net: pass changed flags along with NETDEV_CHANGE event
Timo Teräs (1):
arp: flush arp cache on IFF_NOARP change
arch/ia64/hp/sim/simeth.c | 2 +-
arch/mips/txx9/generic/setup_tx4939.c | 3 +-
drivers/infiniband/core/cma.c | 4 +-
drivers/infiniband/hw/mlx4/main.c | 2 +-
drivers/net/bonding/bond_main.c | 2 +-
drivers/net/can/led.c | 4 +-
drivers/net/ethernet/broadcom/cnic.c | 2 +-
drivers/net/ethernet/marvell/skge.c | 2 +-
drivers/net/ethernet/marvell/sky2.c | 2 +-
.../net/ethernet/qlogic/netxen/netxen_nic_main.c | 2 +-
drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c | 2 +-
drivers/net/ethernet/sfc/efx.c | 2 +-
drivers/net/hamradio/bpqether.c | 7 ++-
drivers/net/macvlan.c | 2 +-
drivers/net/macvtap.c | 2 +-
drivers/net/netconsole.c | 5 +-
drivers/net/ppp/pppoe.c | 2 +-
drivers/net/team/team.c | 2 +-
drivers/net/wan/dlci.c | 2 +-
drivers/net/wan/hdlc.c | 2 +-
drivers/net/wan/lapbether.c | 2 +-
drivers/scsi/fcoe/fcoe.c | 2 +-
drivers/scsi/fcoe/fcoe_transport.c | 2 +-
drivers/staging/csr/netdev.c | 2 +-
drivers/staging/ft1000/ft1000-pcmcia/ft1000_proc.c | 2 +-
drivers/staging/ft1000/ft1000-usb/ft1000_proc.c | 2 +-
drivers/staging/silicom/bpctl_mod.c | 2 +-
include/linux/netdevice.h | 18 ++++++
net/8021q/vlan.c | 2 +-
net/appletalk/aarp.c | 2 +-
net/appletalk/ddp.c | 2 +-
net/atm/clip.c | 4 +-
net/atm/mpc.c | 6 +-
net/ax25/af_ax25.c | 6 +-
net/batman-adv/hard-interface.c | 2 +-
net/bridge/br_notify.c | 2 +-
net/caif/caif_dev.c | 4 +-
net/caif/caif_usb.c | 4 +-
net/can/af_can.c | 4 +-
net/can/bcm.c | 4 +-
net/can/gw.c | 4 +-
net/can/raw.c | 4 +-
net/core/dev.c | 65 ++++++++++++++++++----
net/core/drop_monitor.c | 4 +-
net/core/dst.c | 2 +-
net/core/fib_rules.c | 4 +-
net/core/netprio_cgroup.c | 2 +-
net/core/pktgen.c | 2 +-
net/core/rtnetlink.c | 2 +-
net/decnet/af_decnet.c | 4 +-
net/ieee802154/6lowpan.c | 5 +-
net/ipv4/arp.c | 8 ++-
net/ipv4/devinet.c | 2 +-
net/ipv4/fib_frontend.c | 2 +-
net/ipv4/ipmr.c | 2 +-
net/ipv4/netfilter/ipt_MASQUERADE.c | 2 +-
net/ipv6/addrconf.c | 4 +-
net/ipv6/ip6mr.c | 2 +-
net/ipv6/ndisc.c | 2 +-
net/ipv6/netfilter/ip6t_MASQUERADE.c | 2 +-
net/ipv6/route.c | 4 +-
net/ipx/af_ipx.c | 2 +-
net/iucv/af_iucv.c | 2 +-
net/mac80211/iface.c | 5 +-
net/netfilter/ipvs/ip_vs_ctl.c | 4 +-
net/netfilter/nfnetlink_queue_core.c | 2 +-
net/netfilter/xt_TEE.c | 2 +-
net/netlabel/netlabel_unlabeled.c | 7 +--
net/netrom/af_netrom.c | 2 +-
net/openvswitch/dp_notify.c | 2 +-
net/packet/af_packet.c | 5 +-
net/phonet/pn_dev.c | 4 +-
net/rose/af_rose.c | 6 +-
net/sched/act_mirred.c | 2 +-
net/tipc/eth_media.c | 4 +-
net/tipc/ib_media.c | 4 +-
net/wireless/core.c | 5 +-
net/x25/af_x25.c | 2 +-
net/xfrm/xfrm_policy.c | 2 +-
security/selinux/netif.c | 2 +-
80 files changed, 190 insertions(+), 129 deletions(-)
--
1.7.11.7
next reply other threads:[~2013-05-28 8:11 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-28 8:10 Jiri Pirko [this message]
2013-05-28 8:10 ` [patch net-next 1/3] net: pass info struct via netdevice notifier Jiri Pirko
2013-05-28 8:22 ` Jiri Pirko
2013-05-28 8:10 ` [patch net-next 2/3] net: pass changed flags along with NETDEV_CHANGE event Jiri Pirko
2013-05-28 8:10 ` [patch net-next 3/3] arp: flush arp cache on IFF_NOARP change 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=1369728655-26649-1-git-send-email-jiri@resnulli.us \
--to=jiri@resnulli.us \
--cc=bhutchings@solarflare.com \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=jmorris@namei.org \
--cc=kaber@trash.net \
--cc=kuznet@ms2.inr.ac.ru \
--cc=netdev@vger.kernel.org \
--cc=timo.teras@iki.fi \
--cc=yoshfuji@linux-ipv6.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).