From patchwork Mon Jan 3 15:25:10 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: FX Le Bail X-Patchwork-Id: 77285 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 93499B70AF for ; Tue, 4 Jan 2011 02:31:57 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755385Ab1ACPbw (ORCPT ); Mon, 3 Jan 2011 10:31:52 -0500 Received: from web62502.mail.re1.yahoo.com ([69.147.75.94]:35145 "HELO web62502.mail.re1.yahoo.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1755270Ab1ACPbv convert rfc822-to-8bit (ORCPT ); Mon, 3 Jan 2011 10:31:51 -0500 X-Greylist: delayed 400 seconds by postgrey-1.27 at vger.kernel.org; Mon, 03 Jan 2011 10:31:51 EST Received: (qmail 54712 invoked by uid 60001); 3 Jan 2011 15:25:10 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1294068310; bh=92a1w5TyolLZz+Ljh0Yu31QQlgv9u0Gou11PzTX2bSI=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=oLnpaXDvnVyuy2QrKwcEJXAQntuA7gHAaHXbP9QgnZL/vjYIbNGo2rajXfAFkZ3BMjibN/9Fp/ykplQcx3JapFhZM0lxWcJwnVrUq3qDKTpsfBj7qZKI4adiUm2YF6JU7tptN0Xzv/SFurueO2Y/QcfxK7ILZB1hLzOGHQJe6J4= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=5w2RK3ds6+zii0dDEk06SOkpnH1QpagCNsoh+CcpbZmFsRCf5EQ9UlCPiN2BTz8bRaBSSpOEyo6GuPWl3dMuz1Jh2VSkCezWHnXNRGAxz+3OZiGV5nuD4JYGf31zB7QxDPxq2pp3q8u2MMButS/mMS8ZzI2ALmKVaTwKEybc7uw=; Message-ID: <868172.46833.qm@web62502.mail.re1.yahoo.com> X-YMail-OSG: 4VivTVQVM1kFvhbMKwoWj8hk7rYaq010FA.03PBuvtfjSzx 9ZP6q2gUlr2hzDMo52dmORG5zcPqIE3bpdSbTFoQdntO4H7iCMrOL_2I72ZG XTaDtUpcO1Tu9dz_laUVLYeN8.kdu84kkiBQ.L5SZaF3g8Z.rmILiax6voi3 jFJTqa49LJHz6.GEGmxX1UxCZbe2NqPPCRJ72E.4CsTyZT3D8Vz4cazUTRIP YRHRCozUOu0UKDhrBHmmgBs_Ch1497v4R3EDswxax6tpPARa1AXk5nIT6cE3 .iTyMqLzhgcqzHd58w4uGkljMvCy.T3Po8PhJF5mMrE3AmR2rNcg3aZSEBEv ueeceJsY0A.hMlhhMR59PlzZB.hhAM79cICEipw9Ebk7KTPRh3kg7Zg-- Received: from [193.49.124.107] by web62502.mail.re1.yahoo.com via HTTP; Mon, 03 Jan 2011 07:25:10 PST X-Mailer: YahooMailClassic/11.4.20 YahooMailWebService/0.8.107.285259 Date: Mon, 3 Jan 2011 07:25:10 -0800 (PST) From: =?iso-8859-1?Q?Fran=E7ois-Xavier_Le_Bail?= Subject: [PATCH] Typo in comments in include/linux/igmp.h To: netdev@vger.kernel.org MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Hello, There is a typo in comments in include/linux/igmp.h: 83 #define IGMP_HOST_MEMBERSHIP_QUERY      0x11    /* From RFC1112 */ 84 #define IGMP_HOST_MEMBERSHIP_REPORT     0x12    /* Ditto */ 85 #define IGMP_DVMRP                      0x13    /* DVMRP routing */ 86 #define IGMP_PIM                        0x14    /* PIM routing */ 87 #define IGMP_TRACE                      0x15 88 #define IGMPV2_HOST_MEMBERSHIP_REPORT   0x16    /* V2 version of 0x11 */ 89 #define IGMP_HOST_LEAVE_MESSAGE         0x17 90 #define IGMPV3_HOST_MEMBERSHIP_REPORT   0x22    /* V3 version of 0x11 */ The line 88 and 90 are about REPORT messages. The IGMP_HOST_MEMBERSHIP_REPORT value is 0x12. So the comment on line 88 must be /* V2 version of 0x12 */, and the comment on line 90 must be /* V3 version of 0x12 */. Here is a patch. Thank you, Francois-Xavier Le Bail ------------------------------------ --- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff -ru a/include/linux/igmp.h b/include/linux/igmp.h --- a/include/linux/igmp.h    2010-08-27 01:47:12.000000000 +0200 +++ b/include/linux/igmp.h    2010-12-15 09:50:47.808363144 +0100 @@ -85,9 +85,9 @@ #define IGMP_DVMRP            0x13    /* DVMRP routing */ #define IGMP_PIM            0x14    /* PIM routing */ #define IGMP_TRACE            0x15 -#define IGMPV2_HOST_MEMBERSHIP_REPORT    0x16    /* V2 version of 0x11 */ +#define IGMPV2_HOST_MEMBERSHIP_REPORT    0x16    /* V2 version of 0x12 */ #define IGMP_HOST_LEAVE_MESSAGE     0x17 -#define IGMPV3_HOST_MEMBERSHIP_REPORT    0x22    /* V3 version of 0x11 */ +#define IGMPV3_HOST_MEMBERSHIP_REPORT    0x22    /* V3 version of 0x12 */ #define IGMP_MTRACE_RESP        0x1e #define IGMP_MTRACE            0x1f