Netdev List
 help / color / mirror / Atom feed
From: Kirill Tkhai <ktkhai@virtuozzo.com>
To: davem@davemloft.net, pablo@netfilter.org,
	kadlec@blackhole.kfki.hu, fw@strlen.de, netdev@vger.kernel.org,
	ktkhai@virtuozzo.com
Subject: [PATCH net-next 00/16] Converting pernet_operations (part #5)
Date: Wed, 07 Mar 2018 12:38:57 +0300	[thread overview]
Message-ID: <152041531893.11627.15708076126889316570.stgit@localhost.localdomain> (raw)

Hi,

this series continues to review and to convert pernet_operations
to make them possible to be executed in parallel for several
net namespaces in the same time. There are mostly netfilter
operations (and they should be the last netfilter's), also
there are two patches touching pktgen and xfrm.

Thanks,
Kirill
---

Kirill Tkhai (16):
      net: Convert ip6 tables pernet_operations
      net: Convert xfrm_user_net_ops
      net: Convert nf_tables_net_ops
      net: Convert nfnetlink_net_ops
      net: Convert nfnl_acct_ops
      net: Convert cttimeout_ops
      net: Convert nfnl_log_net_ops
      net: Convert nfnl_queue_net_ops
      net: Convert pg_net_ops
      net: Convert arptable_filter_net_ops
      net: Convert iptable_mangle_net_ops
      net: Convert iptable_nat_net_ops
      net: Convert iptable_raw_net_ops
      net: Convert iptable_security_net_ops
      net: Convert ipv4_net_ops
      net: Convet ipv6_net_ops


 net/core/pktgen.c                              |    1 +
 net/ipv4/netfilter/arptable_filter.c           |    1 +
 net/ipv4/netfilter/iptable_mangle.c            |    1 +
 net/ipv4/netfilter/iptable_nat.c               |    1 +
 net/ipv4/netfilter/iptable_raw.c               |    1 +
 net/ipv4/netfilter/iptable_security.c          |    1 +
 net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c |    1 +
 net/ipv6/netfilter/ip6table_filter.c           |    1 +
 net/ipv6/netfilter/ip6table_mangle.c           |    1 +
 net/ipv6/netfilter/ip6table_nat.c              |    1 +
 net/ipv6/netfilter/ip6table_raw.c              |    1 +
 net/ipv6/netfilter/ip6table_security.c         |    1 +
 net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c |    1 +
 net/netfilter/nf_tables_api.c                  |    1 +
 net/netfilter/nfnetlink.c                      |    1 +
 net/netfilter/nfnetlink_acct.c                 |    1 +
 net/netfilter/nfnetlink_cttimeout.c            |    1 +
 net/netfilter/nfnetlink_log.c                  |    1 +
 net/netfilter/nfnetlink_queue.c                |    1 +
 net/xfrm/xfrm_user.c                           |    1 +
 20 files changed, 20 insertions(+)

--
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>

             reply	other threads:[~2018-03-07  9:39 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-07  9:38 Kirill Tkhai [this message]
2018-03-07  9:39 ` [PATCH net-next 01/16] net: Convert ip6 tables pernet_operations Kirill Tkhai
2018-03-07  9:39 ` [PATCH net-next 02/16] net: Convert xfrm_user_net_ops Kirill Tkhai
2018-03-07  9:39 ` [PATCH net-next 03/16] net: Convert nf_tables_net_ops Kirill Tkhai
2018-03-07  9:39 ` [PATCH net-next 04/16] net: Convert nfnetlink_net_ops Kirill Tkhai
2018-03-07  9:39 ` [PATCH net-next 05/16] net: Convert nfnl_acct_ops Kirill Tkhai
2018-03-07  9:39 ` [PATCH net-next 06/16] net: Convert cttimeout_ops Kirill Tkhai
2018-03-07  9:40 ` [PATCH net-next 07/16] net: Convert nfnl_log_net_ops Kirill Tkhai
2018-03-07  9:40 ` [PATCH net-next 08/16] net: Convert nfnl_queue_net_ops Kirill Tkhai
2018-03-07  9:40 ` [PATCH net-next 09/16] net: Convert pg_net_ops Kirill Tkhai
2018-03-07  9:40 ` [PATCH net-next 10/16] net: Convert arptable_filter_net_ops Kirill Tkhai
2018-03-07  9:40 ` [PATCH net-next 11/16] net: Convert iptable_mangle_net_ops Kirill Tkhai
2018-03-07  9:40 ` [PATCH net-next 12/16] net: Convert iptable_nat_net_ops Kirill Tkhai
2018-03-07  9:40 ` [PATCH net-next 13/16] net: Convert iptable_raw_net_ops Kirill Tkhai
2018-03-07  9:41 ` [PATCH net-next 14/16] net: Convert iptable_security_net_ops Kirill Tkhai
2018-03-07  9:41 ` [PATCH net-next 15/16] net: Convert ipv4_net_ops Kirill Tkhai
2018-03-07  9:41 ` [PATCH net-next 16/16] net: Convet ipv6_net_ops Kirill Tkhai
2018-03-08 17:40 ` [PATCH net-next 00/16] Converting pernet_operations (part #5) 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=152041531893.11627.15708076126889316570.stgit@localhost.localdomain \
    --to=ktkhai@virtuozzo.com \
    --cc=davem@davemloft.net \
    --cc=fw@strlen.de \
    --cc=kadlec@blackhole.kfki.hu \
    --cc=netdev@vger.kernel.org \
    --cc=pablo@netfilter.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