From mboxrd@z Thu Jan 1 00:00:00 1970 From: Florian Westphal Subject: Re: [PATCH 1/2] net: add and use skb_gso_transport_seglen() Date: Sun, 26 Jan 2014 10:19:48 +0100 Message-ID: <20140126091948.GE24041@breakpoint.cc> References: <1390690127-559-1-git-send-email-fw@strlen.de> <1390690127-559-2-git-send-email-fw@strlen.de> <1390699688.27806.66.camel@edumazet-glaptop2.roam.corp.google.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Florian Westphal , netdev@vger.kernel.org To: Eric Dumazet Return-path: Received: from Chamillionaire.breakpoint.cc ([80.244.247.6]:34115 "EHLO Chamillionaire.breakpoint.cc" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750987AbaAZJTw (ORCPT ); Sun, 26 Jan 2014 04:19:52 -0500 Content-Disposition: inline In-Reply-To: <1390699688.27806.66.camel@edumazet-glaptop2.roam.corp.google.com> Sender: netdev-owner@vger.kernel.org List-ID: Eric Dumazet wrote: > On Sat, 2014-01-25 at 23:48 +0100, Florian Westphal wrote: > > --- a/net/core/skbuff.c > > +++ b/net/core/skbuff.c > > @@ -45,6 +45,7 @@ > > #include > > #include > > #include > > +#include > > #include > > #include > > #include > > @@ -71,6 +72,8 @@ > > #include > > #include > > > > +#include > > > Normally you should not use uapi/ I added this include to ensure sizeof(struct udphdr) works. I'll change it to linux/udp.h > > diff --git a/net/sched/sch_tbf.c b/net/sched/sch_tbf.c > > index 887e672..837a61b 100644 > > --- a/net/sched/sch_tbf.c > > +++ b/net/sched/sch_tbf.c > > It seems you forgot to remove from this file this include : > > #include Indeed, thanks for spotting this. > Otherwise, this seems good, thanks ! Thanks for reviewing Eric!