From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id ABD73C00528 for ; Mon, 31 Jul 2023 18:40:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229543AbjGaSkz (ORCPT ); Mon, 31 Jul 2023 14:40:55 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60018 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231925AbjGaSkl (ORCPT ); Mon, 31 Jul 2023 14:40:41 -0400 Received: from smtp-fw-80009.amazon.com (smtp-fw-80009.amazon.com [99.78.197.220]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EA8FB9E; Mon, 31 Jul 2023 11:40:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=amazon.com; i=@amazon.com; q=dns/txt; s=amazon201209; t=1690828840; x=1722364840; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=RdX52nkveqrBNCZb7CBVWE1vKssTmJSxH9qrLsYuR7A=; b=hXKSspP9dwGa/timWXJZpFQfY9B/U5PpyQy0Oq5x5ytcKSjj4sh3JLQG yaBQuJFw+7HS8wpMIFm6XofdLemRfLxuiD56WhKjdazD8qsmhhf4ffOFN E8Bm0aGMGCF3uB18ioVMx0FRQb9FOjUGRLDopWxDd8Ceuf+930fdGs1Ck M=; X-IronPort-AV: E=Sophos;i="6.01,245,1684800000"; d="scan'208";a="19591887" Received: from pdx4-co-svc-p1-lb2-vlan3.amazon.com (HELO email-inbound-relay-pdx-2c-m6i4x-f7c754c9.us-west-2.amazon.com) ([10.25.36.214]) by smtp-border-fw-80009.pdx80.corp.amazon.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 Jul 2023 18:40:37 +0000 Received: from EX19MTAUWA002.ant.amazon.com (pdx1-ws-svc-p6-lb9-vlan2.pdx.amazon.com [10.236.137.194]) by email-inbound-relay-pdx-2c-m6i4x-f7c754c9.us-west-2.amazon.com (Postfix) with ESMTPS id EC5A840D45; Mon, 31 Jul 2023 18:40:36 +0000 (UTC) Received: from EX19D004ANA001.ant.amazon.com (10.37.240.138) by EX19MTAUWA002.ant.amazon.com (10.250.64.202) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1118.30; Mon, 31 Jul 2023 18:40:36 +0000 Received: from 88665a182662.ant.amazon.com (10.106.100.27) by EX19D004ANA001.ant.amazon.com (10.37.240.138) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1118.30; Mon, 31 Jul 2023 18:40:33 +0000 From: Kuniyuki Iwashima To: CC: , , , , , , Kuniyuki Iwashima Subject: Re: [PATCH net-next] inet6: Remove unused function declaration udpv6_connect() Date: Mon, 31 Jul 2023 11:40:24 -0700 Message-ID: <20230731184024.9011-1-kuniyu@amazon.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20230731140437.37056-1-yuehaibing@huawei.com> References: <20230731140437.37056-1-yuehaibing@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Originating-IP: [10.106.100.27] X-ClientProxiedBy: EX19D033UWC003.ant.amazon.com (10.13.139.217) To EX19D004ANA001.ant.amazon.com (10.37.240.138) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Yue Haibing Date: Mon, 31 Jul 2023 22:04:37 +0800 > This is never implemented since the beginning of git history. > > Signed-off-by: Yue Haibing Reviewed-by: Kuniyuki Iwashima > --- > include/net/transp_v6.h | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/include/net/transp_v6.h b/include/net/transp_v6.h > index d27b1caf3753..1a97e3f32029 100644 > --- a/include/net/transp_v6.h > +++ b/include/net/transp_v6.h > @@ -33,8 +33,6 @@ void udplitev6_exit(void); > int tcpv6_init(void); > void tcpv6_exit(void); > > -int udpv6_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len); > - > /* this does all the common and the specific ctl work */ > void ip6_datagram_recv_ctl(struct sock *sk, struct msghdr *msg, > struct sk_buff *skb); > -- > 2.34.1