From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH] TCP: removal of unused label Date: Mon, 5 Jun 2006 16:02:40 -0700 Message-ID: <20060605160240.4951f7ad@dxpl.pdx.osdl.net> References: <20060605110331.0f058738@dxpl.pdx.osdl.net> <20060605195549.GA14942@electric-eye.fr.zoreil.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: "David S. Miller" , netdev@vger.kernel.org Return-path: Received: from smtp.osdl.org ([65.172.181.4]:64431 "EHLO smtp.osdl.org") by vger.kernel.org with ESMTP id S1750712AbWFEXCg (ORCPT ); Mon, 5 Jun 2006 19:02:36 -0400 To: Francois Romieu In-Reply-To: <20060605195549.GA14942@electric-eye.fr.zoreil.com> Sender: netdev-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Mon, 5 Jun 2006 21:55:49 +0200 Francois Romieu wrote: > > Signed-off-by: Francois Romieu > > diff --git a/net/ipv4/tcp_compound.c b/net/ipv4/tcp_compound.c > index bc54f7e..a3c36c0 100644 > --- a/net/ipv4/tcp_compound.c > +++ b/net/ipv4/tcp_compound.c > @@ -401,6 +401,7 @@ static void tcp_compound_cong_avoid(stru > static void tcp_compound_get_info(struct sock *sk, u32 ext, struct sk_buff *skb) > { > const struct compound *ca = inet_csk_ca(sk); > + > if (ext & (1 << (INET_DIAG_VEGASINFO - 1))) { > struct tcpvegas_info *info; > > @@ -411,7 +412,6 @@ static void tcp_compound_get_info(struct > info->tcpv_rttcnt = ca->cntRTT; > info->tcpv_rtt = ca->baseRTT; > info->tcpv_minrtt = ca->minRTT; > - rtattr_failure:; > } > } > rtattr_failure is used inside __RTA_PUT() macro. It's gross, but there are those who love it..