From: Kirill Tkhai <ktkhai@virtuozzo.com>
To: davem@davemloft.net, pablo@netfilter.org,
kadlec@blackhole.kfki.hu, fw@strlen.de, netdev@vger.kernel.org,
kvalo@codeaurora.org, davem@davemloft.net, edumazet@google.com,
jhs@mojatatu.com, xiyou.wangcong@gmail.com, jiri@resnulli.us,
mostrows@earthlink.net, alex.aring@gmail.com,
stefan@osg.samsung.com, avagin@virtuozzo.com,
ktkhai@virtuozzo.com
Subject: [PATCH net-next 00/28] Converting pernet_operations (part #3)
Date: Mon, 26 Feb 2018 15:59:10 +0300 [thread overview]
Message-ID: <151964991129.28549.5478247975928036472.stgit@localhost.localdomain> (raw)
This patchset continues to review and to convert pernet_operations
to async. Where it is possible, they are grouped by type of actions
init/exit methods ([1/28], for example). I hope this will make
the review a little bit easier. The changes are tree-wide: in net, fs,
drivers and security.
Thanks,
Kirill
---
Kirill Tkhai (28):
net: Convert /proc creating and destroying pernet_operations
net: Convert hashlimit_net_ops and recent_net_ops
net: Convert synproxy_net_ops
net: Convert nfs_net_ops
net: Convert simple pernet_operations
net: Convert cma_pernet_operations
net: Convert sysctl creating and destroying pernet_operations
net: Convert tc_action_net_init() and tc_action_net_exit() based pernet_operations
net: Convert bond_net_ops
net: Convert geneve_net_ops
net: Convert gtp_net_ops
net: Convert ppp_net_ops
net: Convert vxlan_net_ops
net: Convert br_net_ops
net: Convert ipgre_net_ops, ipgre_tap_net_ops, erspan_net_ops, vti_net_ops and ipip_net_ops
net: Convert ip6gre_net_ops
net: Convert ip6_tnl_net_ops
net: Convert vti6_net_ops
net: Convert sit_net_ops
net: Convert cfg802154_pernet_ops
net: Convert ipvlan_net_ops
net: Convert brnf_net_ops
net: Convert clusterip_net_ops
net: Convert defrag4_net_ops
net: Convert ila_net_ops
net: Convert defrag6_net_ops
net: Convert selinux_net_ops
net: Convert smack_net_ops
drivers/infiniband/core/cma.c | 1 +
drivers/net/bonding/bond_main.c | 1 +
drivers/net/geneve.c | 1 +
drivers/net/gtp.c | 1 +
drivers/net/ipvlan/ipvlan_main.c | 1 +
drivers/net/ppp/ppp_generic.c | 1 +
drivers/net/ppp/pppoe.c | 1 +
drivers/net/vrf.c | 1 +
drivers/net/vxlan.c | 1 +
fs/lockd/svc.c | 1 +
fs/nfs/inode.c | 1 +
fs/nfs_common/grace.c | 1 +
net/8021q/vlan.c | 1 +
net/bridge/br.c | 1 +
net/bridge/br_netfilter_hooks.c | 1 +
net/can/bcm.c | 1 +
net/ieee802154/core.c | 1 +
net/ipv4/ip_gre.c | 3 +++
net/ipv4/ip_vti.c | 1 +
net/ipv4/ipip.c | 1 +
net/ipv4/netfilter/ipt_CLUSTERIP.c | 1 +
net/ipv4/netfilter/nf_defrag_ipv4.c | 1 +
net/ipv6/ila/ila_xlat.c | 1 +
net/ipv6/ip6_gre.c | 1 +
net/ipv6/ip6_tunnel.c | 1 +
net/ipv6/ip6_vti.c | 1 +
net/ipv6/netfilter/nf_defrag_ipv6_hooks.c | 1 +
net/ipv6/sit.c | 1 +
net/ipv6/xfrm6_tunnel.c | 1 +
net/kcm/kcmproc.c | 1 +
net/kcm/kcmsock.c | 1 +
net/key/af_key.c | 1 +
net/l2tp/l2tp_ppp.c | 1 +
net/netfilter/ipvs/ip_vs_lblc.c | 1 +
net/netfilter/ipvs/ip_vs_lblcr.c | 1 +
net/netfilter/nf_synproxy_core.c | 1 +
net/netfilter/xt_hashlimit.c | 1 +
net/netfilter/xt_recent.c | 1 +
net/phonet/pn_dev.c | 1 +
net/sched/act_bpf.c | 1 +
net/sched/act_connmark.c | 1 +
net/sched/act_csum.c | 1 +
net/sched/act_gact.c | 1 +
net/sched/act_ife.c | 1 +
net/sched/act_ipt.c | 2 ++
net/sched/act_mirred.c | 1 +
net/sched/act_nat.c | 1 +
net/sched/act_pedit.c | 1 +
net/sched/act_police.c | 1 +
net/sched/act_sample.c | 1 +
net/sched/act_simple.c | 1 +
net/sched/act_skbedit.c | 1 +
net/sched/act_skbmod.c | 1 +
net/sched/act_tunnel_key.c | 1 +
net/sched/act_vlan.c | 1 +
net/sched/cls_api.c | 1 +
security/selinux/hooks.c | 1 +
security/smack/smack_netfilter.c | 1 +
58 files changed, 61 insertions(+)
--
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
next reply other threads:[~2018-02-26 12:59 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-26 12:59 Kirill Tkhai [this message]
2018-02-26 12:59 ` [PATCH net-next 01/28] net: Convert /proc creating and destroying pernet_operations Kirill Tkhai
2018-02-26 12:59 ` [PATCH net-next 02/28] net: Convert hashlimit_net_ops and recent_net_ops Kirill Tkhai
2018-02-26 12:59 ` [PATCH net-next 03/28] net: Convert synproxy_net_ops Kirill Tkhai
2018-02-26 12:59 ` [PATCH net-next 04/28] net: Convert nfs_net_ops Kirill Tkhai
2018-02-26 12:59 ` [PATCH net-next 05/28] net: Convert simple pernet_operations Kirill Tkhai
2018-02-26 13:00 ` [PATCH net-next 06/28] net: Convert cma_pernet_operations Kirill Tkhai
2018-02-26 13:00 ` [PATCH net-next 07/28] net: Convert sysctl creating and destroying pernet_operations Kirill Tkhai
2018-02-26 13:00 ` [PATCH net-next 08/28] net: Convert tc_action_net_init() and tc_action_net_exit() based pernet_operations Kirill Tkhai
2018-02-26 13:00 ` [PATCH net-next 09/28] net: Convert bond_net_ops Kirill Tkhai
2018-02-26 13:00 ` [PATCH net-next 10/28] net: Convert geneve_net_ops Kirill Tkhai
2018-02-26 13:01 ` [PATCH net-next 11/28] net: Convert gtp_net_ops Kirill Tkhai
2018-02-26 13:01 ` [PATCH net-next 12/28] net: Convert ppp_net_ops Kirill Tkhai
2018-02-26 13:01 ` [PATCH net-next 13/28] net: Convert vxlan_net_ops Kirill Tkhai
2018-02-26 13:01 ` [PATCH net-next 14/28] net: Convert br_net_ops Kirill Tkhai
2018-02-26 13:01 ` [PATCH net-next 15/28] net: Convert ipgre_net_ops, ipgre_tap_net_ops, erspan_net_ops, vti_net_ops and ipip_net_ops Kirill Tkhai
2018-02-26 13:02 ` [PATCH net-next 16/28] net: Convert ip6gre_net_ops Kirill Tkhai
2018-02-26 13:02 ` [PATCH net-next 17/28] net: Convert ip6_tnl_net_ops Kirill Tkhai
2018-02-26 13:02 ` [PATCH net-next 18/28] net: Convert vti6_net_ops Kirill Tkhai
2018-02-26 13:02 ` [PATCH net-next 19/28] net: Convert sit_net_ops Kirill Tkhai
2018-02-26 13:02 ` [PATCH net-next 20/28] net: Convert cfg802154_pernet_ops Kirill Tkhai
2018-02-27 10:24 ` Stefan Schmidt
2018-02-26 13:02 ` [PATCH net-next 21/28] net: Convert ipvlan_net_ops Kirill Tkhai
2018-02-26 13:02 ` [PATCH net-next 22/28] net: Convert brnf_net_ops Kirill Tkhai
2018-02-26 13:03 ` [PATCH net-next 23/28] net: Convert clusterip_net_ops Kirill Tkhai
2018-02-26 13:03 ` [PATCH net-next 24/28] net: Convert defrag4_net_ops Kirill Tkhai
2018-02-26 13:03 ` [PATCH net-next 25/28] net: Convert ila_net_ops Kirill Tkhai
2018-02-26 13:03 ` [PATCH net-next 26/28] net: Convert defrag6_net_ops Kirill Tkhai
2018-02-26 13:03 ` [PATCH net-next 27/28] net: Convert selinux_net_ops Kirill Tkhai
2018-02-26 13:04 ` [PATCH net-next 28/28] net: Convert smack_net_ops Kirill Tkhai
2018-02-27 16:08 ` [PATCH net-next 00/28] Converting pernet_operations (part #3) David Miller
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=151964991129.28549.5478247975928036472.stgit@localhost.localdomain \
--to=ktkhai@virtuozzo.com \
--cc=alex.aring@gmail.com \
--cc=avagin@virtuozzo.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=fw@strlen.de \
--cc=jhs@mojatatu.com \
--cc=jiri@resnulli.us \
--cc=kadlec@blackhole.kfki.hu \
--cc=kvalo@codeaurora.org \
--cc=mostrows@earthlink.net \
--cc=netdev@vger.kernel.org \
--cc=pablo@netfilter.org \
--cc=stefan@osg.samsung.com \
--cc=xiyou.wangcong@gmail.com \
/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