From: Patrick McHardy <kaber@trash.net>
To: davem@davemloft.net
Cc: netfilter-devel@lists.netfilter.org, Patrick McHardy <kaber@trash.net>
Subject: [NETFILTER 00/12]: Netfilter Update
Date: Thu, 6 Apr 2006 12:04:52 +0200 (MEST) [thread overview]
Message-ID: <20060406100452.17409.37120.sendpatchset@localhost.localdomain> (raw)
Hi Dave,
following are a couple of netfilter fixes and enhancements: a couple of
patches to fix the section mismatch warnings and clean up the netfilter
hook registration, checksumming consolidation with better HW checksum
error handling and some cleanup patches for the H.323 helper. The
diffstat is a bit misleading, there is a lot of noise from the renaming
of two large H.323 header files and a lot of reindentation of netfilter
structures, its not as bad as it looks :) If you think its too large
for -rc1 I can hold on to the checksumming patches, the others should
go in as they actually fix stuff. Thanks.
include/linux/netfilter.h | 42
include/linux/netfilter_ipv4.h | 2
include/linux/netfilter_ipv4/ip_conntrack_h323.h | 52
include/linux/netfilter_ipv4/ip_conntrack_helper_h323_asn1.h | 98 +
include/linux/netfilter_ipv4/ip_conntrack_helper_h323_types.h | 938 ++++++++++
include/linux/netfilter_ipv6.h | 3
net/ipv4/netfilter.c | 50
net/ipv4/netfilter/Kconfig | 1
net/ipv4/netfilter/arptable_filter.c | 19
net/ipv4/netfilter/ip_conntrack_helper_h323.c | 50
net/ipv4/netfilter/ip_conntrack_helper_h323_asn1.c | 2
net/ipv4/netfilter/ip_conntrack_helper_h323_asn1.h | 98 -
net/ipv4/netfilter/ip_conntrack_helper_h323_types.h | 938 ----------
net/ipv4/netfilter/ip_conntrack_proto_icmp.c | 23
net/ipv4/netfilter/ip_conntrack_proto_tcp.c | 7
net/ipv4/netfilter/ip_conntrack_proto_udp.c | 7
net/ipv4/netfilter/ip_conntrack_standalone.c | 270 +-
net/ipv4/netfilter/ip_nat_helper_h323.c | 58
net/ipv4/netfilter/ip_nat_standalone.c | 161 -
net/ipv4/netfilter/ip_queue.c | 31
net/ipv4/netfilter/ipt_CLUSTERIP.c | 40
net/ipv4/netfilter/ipt_REJECT.c | 9
net/ipv4/netfilter/iptable_filter.c | 21
net/ipv4/netfilter/iptable_mangle.c | 33
net/ipv4/netfilter/iptable_raw.c | 35
net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c | 227 --
net/ipv4/netfilter/nf_conntrack_proto_icmp.c | 20
net/ipv6/netfilter.c | 51
net/ipv6/netfilter/ip6_queue.c | 31
net/ipv6/netfilter/ip6table_filter.c | 21
net/ipv6/netfilter/ip6table_mangle.c | 33
net/ipv6/netfilter/ip6table_raw.c | 15
net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c | 181 -
net/ipv6/netfilter/nf_conntrack_proto_icmpv6.c | 12
net/netfilter/core.c | 51
net/netfilter/nf_conntrack_proto_tcp.c | 50
net/netfilter/nf_conntrack_proto_udp.c | 50
net/netfilter/nf_conntrack_standalone.c | 115 -
net/netfilter/nf_queue.c | 49
net/netfilter/nfnetlink_log.c | 25
net/netfilter/nfnetlink_queue.c | 27
41 files changed, 1799 insertions(+), 2147 deletions(-)
Jing Min Zhao:
[NETFILTER]: H.323 helper: move some function prototypes to ip_conntrack_h323.h
[NETFILTER]: H.323 helper: change EXPORT_SYMBOL to EXPORT_SYMBOL_GPL
[NETFILTER]: H.323 helper: make get_h245_addr() static
[NETFILTER]: H.323 helper: add parameter 'default_rrq_ttl'
[NETFILTER]: H.323 helper: update Changelog
Patrick McHardy:
[NETFILTER]: Add helper functions for mass hook registration/unregistration
[NETFILTER]: Clean up hook registration
[NETFILTER]: Fix section mismatch warnings
[NETFILTER]: Fix IP_NF_CONNTRACK_NETLINK dependency
[NETFILTER]: Introduce infrastructure for address family specific operations
[NETFILTER]: Add address family specific checksum helpers
[NETFILTER]: Convert conntrack/ipt_REJECT to new checksumming functions
next reply other threads:[~2006-04-06 10:04 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-04-06 10:04 Patrick McHardy [this message]
2006-04-06 10:04 ` [NETFILTER 01/12]: Add helper functions for mass hook registration/unregistration Patrick McHardy
2006-04-06 15:42 ` Jones Desougi
2006-04-06 16:10 ` Patrick McHardy
2006-04-06 21:11 ` David S. Miller
2006-04-06 10:04 ` [NETFILTER 02/12]: Clean up hook registration Patrick McHardy
2006-04-06 21:12 ` David S. Miller
2006-04-06 10:04 ` [NETFILTER 03/12]: Fix section mismatch warnings Patrick McHardy
2006-04-06 21:13 ` David S. Miller
2006-04-06 22:42 ` Patrick McHardy
2006-04-06 10:04 ` [NETFILTER 04/12]: H.323 helper: move some function prototypes to ip_conntrack_h323.h Patrick McHardy
2006-04-06 21:13 ` David S. Miller
2006-04-06 10:05 ` [NETFILTER 05/12]: H.323 helper: change EXPORT_SYMBOL to EXPORT_SYMBOL_GPL Patrick McHardy
2006-04-06 21:14 ` David S. Miller
2006-04-06 10:05 ` [NETFILTER 06/12]: H.323 helper: make get_h245_addr() static Patrick McHardy
2006-04-06 21:15 ` David S. Miller
2006-04-06 10:05 ` [NETFILTER 07/12]: H.323 helper: add parameter 'default_rrq_ttl' Patrick McHardy
2006-04-06 21:15 ` David S. Miller
2006-04-06 10:05 ` [NETFILTER 08/12]: H.323 helper: update Changelog Patrick McHardy
2006-04-06 21:17 ` David S. Miller
2006-04-06 22:36 ` Patrick McHardy
2006-04-06 10:05 ` [NETFILTER 09/12]: Fix IP_NF_CONNTRACK_NETLINK dependency Patrick McHardy
2006-04-06 21:17 ` David S. Miller
2006-04-06 10:05 ` [NETFILTER 10/12]: Introduce infrastructure for address family specific operations Patrick McHardy
2006-04-06 21:18 ` David S. Miller
2006-04-06 10:05 ` [NETFILTER 11/12]: Add address family specific checksum helpers Patrick McHardy
2006-04-06 21:18 ` David S. Miller
2006-04-06 10:05 ` [NETFILTER 12/12]: Convert conntrack/ipt_REJECT to new checksumming functions Patrick McHardy
2006-04-06 21:19 ` David S. 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=20060406100452.17409.37120.sendpatchset@localhost.localdomain \
--to=kaber@trash.net \
--cc=davem@davemloft.net \
--cc=netfilter-devel@lists.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 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.