[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1369161377.3301.246.camel@edumazet-glaptop>
Date: Tue, 21 May 2013 11:36:17 -0700
From: Eric Dumazet <eric.dumazet@...il.com>
To: jorge@...2.net
Cc: netdev@...r.kernel.org, linux-ppp@...r.kernel.org
Subject: Re: [RFC PATCH v2 2/4] ppp_mppe: check coherency counter for
out-of-order sequencing
On Tue, 2013-05-21 at 20:18 +0200, Jorge Boncompte [DTI2] wrote:
> From: "Jorge Boncompte [DTI2]" <jorge@...2.net>
> if (!state->stateful) {
> + if (mppe_cmp_ccount(ccount, state->ccount) < 0) {
> + if (net_ratelimit())
> + printk(KERN_WARNING "%s[%d]: Dropping out-of-order "
> + "packet with ccount %u, "
> + "expecting %u!\n", __func__,
> + state->unit, ccount, state->ccount);
> + return DECOMP_DROPERROR;
> + }
You did not address my review, thats too bad.
WARNING: networking block comments don't use an empty /* line, use /* Comment...
#107: FILE: drivers/net/ppp/ppp_mppe.c:483:
+
+/*
WARNING: Prefer netdev_warn(netdev, ... then dev_warn(dev, ... then pr_warn(... to printk(KERN_WARNING ...
#117: FILE: drivers/net/ppp/ppp_mppe.c:564:
+ printk(KERN_WARNING "%s[%d]: Dropping out-of-order "
WARNING: quoted string split across lines
#118: FILE: drivers/net/ppp/ppp_mppe.c:565:
+ printk(KERN_WARNING "%s[%d]: Dropping out-of-order "
+ "packet with ccount %u, "
--
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