[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1289147499.3090.138.camel@Dan>
Date: Sun, 07 Nov 2010 11:31:39 -0500
From: Dan Rosenberg <drosenberg@...curity.com>
To: chas@....nrl.navy.mil, davem@...emloft.net, kuznet@....inr.ac.ru,
pekkas@...core.fi, jmorris@...ei.org, yoshfuji@...ux-ipv6.org,
kaber@...sh.net, remi.denis-courmont@...ia.com
Cc: netdev@...r.kernel.org, security@...nel.org, stable@...nel.org
Subject: [PATCH 1/9] Fix leaking of kernel heap addresses in net/
Signed-off-by: Dan Rosenberg <drosenberg@...curity.com>
diff -urp linux-2.6.37-rc1.orig/net/atm/proc.c linux-2.6.37-rc1/net/atm/proc.c
--- linux-2.6.37-rc1.orig/net/atm/proc.c 2010-11-01 07:54:12.000000000 -0400
+++ linux-2.6.37-rc1/net/atm/proc.c 2010-11-07 10:22:40.000000000 -0500
@@ -191,7 +191,7 @@ static void vcc_info(struct seq_file *se
{
struct sock *sk = sk_atm(vcc);
- seq_printf(seq, "%p ", vcc);
+ seq_printf(seq, "%lu ", sock_i_ino(sk));
if (!vcc->dev)
seq_printf(seq, "Unassigned ");
else
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists