netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 00/28] Converting pernet_operations (part #3)
@ 2018-02-26 12:59 Kirill Tkhai
  2018-02-26 12:59 ` [PATCH net-next 01/28] net: Convert /proc creating and destroying pernet_operations Kirill Tkhai
                   ` (28 more replies)
  0 siblings, 29 replies; 31+ messages in thread
From: Kirill Tkhai @ 2018-02-26 12:59 UTC (permalink / raw)
  To: davem, pablo, kadlec, fw, netdev, kvalo, davem, edumazet, jhs,
	xiyou.wangcong, jiri, mostrows, alex.aring, stefan, avagin,
	ktkhai

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>

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

end of thread, other threads:[~2018-02-27 16:08 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-26 12:59 [PATCH net-next 00/28] Converting pernet_operations (part #3) Kirill Tkhai
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

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).