The patch titled Uninitialized variable in drivers/net/wan/syncppp.c has been added to the -mm tree. Its filename is uninitialized-variable-in-drivers-net-wan-syncpppc.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Uninitialized variable in drivers/net/wan/syncppp.c From: Eric Sesterhenn <snakebyte@xxxxxx> For len equal to 4, we never call sppp_lcp_conf_parse_options(), therefore rmagic does not get initialized. Signed-off-by: Eric Sesterhenn <snakebyte@xxxxxx> Acked-by: Paul Fulghum <paulkf@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/wan/syncppp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/wan/syncppp.c~uninitialized-variable-in-drivers-net-wan-syncpppc drivers/net/wan/syncppp.c --- a/drivers/net/wan/syncppp.c~uninitialized-variable-in-drivers-net-wan-syncpppc +++ a/drivers/net/wan/syncppp.c @@ -469,7 +469,7 @@ static void sppp_lcp_input (struct sppp struct net_device *dev = sp->pp_if; int len = skb->len; u8 *p, opt[6]; - u32 rmagic; + u32 rmagic = 0; if (!pskb_may_pull(skb, sizeof(struct lcp_header))) { if (sp->pp_flags & PP_DEBUG) _ Patches currently in -mm which might be from snakebyte@xxxxxx are git-gfs2.patch git-intelfb.patch signedness-issue-in-drivers-net-phy-phy_devicec.patch signedness-issue-in-drivers-scsi-iprc.patch signedness-issue-in-drivers-scsi-osstc.patch uninitialized-variable-in-drivers-net-wan-syncpppc.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html