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 EA657C6FD1D for ; Wed, 22 Mar 2023 00:36:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229629AbjCVAgY (ORCPT ); Tue, 21 Mar 2023 20:36:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55716 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229487AbjCVAgY (ORCPT ); Tue, 21 Mar 2023 20:36:24 -0400 Received: from out-14.mta0.migadu.com (out-14.mta0.migadu.com [IPv6:2001:41d0:1004:224b::e]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1C13D57D0A for ; Tue, 21 Mar 2023 17:36:23 -0700 (PDT) Message-ID: <73eafb52-76e2-81b3-93ad-a80379ba6100@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1679445381; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=RhIxpNyiWDog8xM6DOtT92OUwTy3yfz8bCZ1hnWt0y8=; b=K9SE9MTWid2tiUElHj02MtYArNqOdDwxOkL5oq8VEWKpXGUUE95nVI7mtDSkMI5H6akp+z HneAZSDP34g5zevPrabhTVxf7HSxNs6ieOjUN4GDl+YYvceP0gW7KyWwpXUN+dsdlGAd0n mFJvZYUr0qV+uqMed31iy4CRUVdXitQ= Date: Tue, 21 Mar 2023 17:36:19 -0700 MIME-Version: 1.0 Subject: Re: [PATCH v3 bpf-next 2/5] bpf: Add bpf_sock_destroy kfunc Content-Language: en-US To: Aditi Ghag Cc: kafai@fb.com, Stanislav Fomichev , edumazet@google.com, bpf@vger.kernel.org References: <20230321184541.1857363-1-aditi.ghag@isovalent.com> <20230321184541.1857363-3-aditi.ghag@isovalent.com> <181130C0-6EC6-49EB-BF16-DC23F36AF254@isovalent.com> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Martin KaFai Lau In-Reply-To: <181130C0-6EC6-49EB-BF16-DC23F36AF254@isovalent.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: bpf@vger.kernel.org On 3/21/23 5:00 PM, Aditi Ghag wrote: >> n Mar 21, 2023, at 4:43 PM, Martin KaFai Lau wrote: >> >> On 3/21/23 11:45 AM, Aditi Ghag wrote: >>> diff --git a/include/net/udp.h b/include/net/udp.h >>> index de4b528522bb..d2999447d3f2 100644 >>> --- a/include/net/udp.h >>> +++ b/include/net/udp.h >>> @@ -437,6 +437,7 @@ struct udp_seq_afinfo { >>> struct udp_iter_state { >>> struct seq_net_private p; >>> int bucket; >>> + int offset; >> All offset change is easier to review with patch 1 together, so please move them to patch 1. > Thanks for the quick review! > > Oh boy... Absolutely! Looks like I misplaced the changes during interactive rebase. Can I fix this up in this patch itself instead of creating a new patch series? That way, I can batch things up in the next revision. > Instead of re-posting a single patch, it will be easier to batch up all the changes in one set in the next revision after the review comments in v3.