All of lore.kernel.org
 help / color / mirror / Atom feed
* Pull request for Stomping Static Data
@ 2009-08-10 19:19 Jan Engelhardt
  2009-08-10 19:19 ` [PATCH 1/6] netfilter: xtables: consolidate table hook functions Jan Engelhardt
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Jan Engelhardt @ 2009-08-10 19:19 UTC (permalink / raw)
  To: kaber; +Cc: netfilter-devel


Summary:
	In this 6-patch set, large quantities of static data are
	eliminated and replaced by generate-at-runtime structures
	(memory savings outside of the initialization phase).


The following changes since commit e2fe35c17fed62d4ab5038fa9bc489e967ff8416:
  Jan Engelhardt (1):
        netfilter: xtables: check for standard verdicts in policies

are available in the git repository at:

  git://dev.medozas.de/linux master

Jan Engelhardt (6):
      netfilter: xtables: consolidate table hook functions
      netfilter: xtables: compact table hook functions
      netfilter: xtables: generate nf_hook_ops on-demand
      netfilter: xtables: mark initial tables constant
      netfilter: xtables: use xt_table for hook instantiation
      netfilter: xtables: generate initial table on-demand

 include/linux/netfilter/x_tables.h        |    7 +-
 include/linux/netfilter_arp/arp_tables.h  |    2 +-
 include/linux/netfilter_bridge/ebtables.h |    2 +-
 include/linux/netfilter_ipv4/ip_tables.h  |    2 +-
 include/linux/netfilter_ipv6/ip6_tables.h |    2 +-
 net/bridge/netfilter/ebtable_broute.c     |    2 +-
 net/bridge/netfilter/ebtable_filter.c     |    2 +-
 net/bridge/netfilter/ebtables.c           |   13 ++-
 net/ipv4/netfilter/arp_tables.c           |    3 +-
 net/ipv4/netfilter/arptable_filter.c      |   91 ++++-------------
 net/ipv4/netfilter/ip_tables.c            |    3 +-
 net/ipv4/netfilter/iptable_filter.c       |  118 +++++-----------------
 net/ipv4/netfilter/iptable_mangle.c       |  157 ++++++-----------------------
 net/ipv4/netfilter/iptable_raw.c          |   90 ++++------------
 net/ipv4/netfilter/iptable_security.c     |  110 ++++----------------
 net/ipv4/netfilter/nf_nat_rule.c          |   40 ++------
 net/ipv6/netfilter/ip6_tables.c           |    3 +-
 net/ipv6/netfilter/ip6table_filter.c      |  108 ++++----------------
 net/ipv6/netfilter/ip6table_mangle.c      |  134 ++++++-------------------
 net/ipv6/netfilter/ip6table_raw.c         |   81 ++++------------
 net/ipv6/netfilter/ip6table_security.c    |  103 ++++----------------
 net/netfilter/x_tables.c                  |  125 ++++++++++++++++++++++-
 22 files changed, 365 insertions(+), 833 deletions(-)

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

end of thread, other threads:[~2009-08-26 12:53 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-10 19:19 Pull request for Stomping Static Data Jan Engelhardt
2009-08-10 19:19 ` [PATCH 1/6] netfilter: xtables: consolidate table hook functions Jan Engelhardt
2009-08-10 20:12   ` Jan Engelhardt
2009-08-24 12:53   ` Patrick McHardy
2009-08-25 15:50     ` Jan Engelhardt
2009-08-26 12:53       ` Patrick McHardy
2009-08-10 19:19 ` [PATCH 2/6] netfilter: xtables: compact " Jan Engelhardt
2009-08-10 19:19 ` [PATCH 3/6] netfilter: xtables: generate nf_hook_ops on-demand Jan Engelhardt
2009-08-10 19:19 ` [PATCH 4/6] netfilter: xtables: mark initial tables constant Jan Engelhardt
2009-08-24 12:57   ` Patrick McHardy
2009-08-10 19:19 ` [PATCH 5/6] netfilter: xtables: use xt_table for hook instantiation Jan Engelhardt
2009-08-10 19:19 ` [PATCH 6/6] netfilter: xtables: generate initial table on-demand Jan Engelhardt
2009-08-24 13:12   ` Patrick McHardy
2009-08-16 10:19 ` Pull request for Stomping Static Data Jan Engelhardt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.