nf_conntrack-fix-incorrect-classification-of-ipv6-fragments-as-established.patch
nfnetlink_log-zero-terminate-prefix.patch
nfnetlink_log-fix-crash-on-bridged-packet.patch
-nfnetlink_log-fix-reference-counting.patch
fix-bug-7994-sleeping-function-called-from-invalid-context.patch
bcm43xx-fix-problem-with-1-gb-ram.patch
fix-compat_getsockopt.patch
+++ /dev/null
-From stable-bounces@linux.kernel.org Wed Mar 7 13:37:14 2007
-From: Michal Miroslaw <mirq-linux@rere.qmqm.pl>
-Date: Wed, 7 Mar 2007 22:34:39 +0100 (MET)
-Subject: nfnetlink_log: fix reference counting
-To: stable@kernel.org
-Cc: netfilter-devel@lists.netfilter.org, Patrick McHardy <kaber@trash.net>, <davem@davemloft.net>
-Message-ID: <20070307213359.22306.49771.sendpatchset@localhost.localdomain>
-
-From: Michal Miroslaw <mirq-linux@rere.qmqm.pl>
-
-[NETFILTER]: nfnetlink_log: fix reference counting
-
-Fix reference counting (memory leak) problem in __nfulnl_send() and callers
-related to packet queueing.
-
-Signed-off-by: Michal Miroslaw <mirq-linux@rere.qmqm.pl>
-Signed-off-by: Patrick McHardy <kaber@trash.net>
-Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-
----
- net/netfilter/nfnetlink_log.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
---- a/net/netfilter/nfnetlink_log.c
-+++ b/net/netfilter/nfnetlink_log.c
-@@ -220,7 +220,8 @@ _instance_destroy2(struct nfulnl_instanc
- /* timer "holds" one reference (we have one more) */
- if (timer_pending(&inst->timer)) {
- del_timer(&inst->timer);
-- instance_put(inst);
-+
-+instance_put(inst);
- }
- if (inst->qlen)
- __nfulnl_send(inst);