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 7FDFDC6FD18 for ; Thu, 20 Apr 2023 01:20:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231681AbjDTBUF (ORCPT ); Wed, 19 Apr 2023 21:20:05 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37150 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230335AbjDTBUE (ORCPT ); Wed, 19 Apr 2023 21:20:04 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A476B49C4; Wed, 19 Apr 2023 18:20:03 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 32D5163BBE; Thu, 20 Apr 2023 01:20:03 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4AECCC433D2; Thu, 20 Apr 2023 01:20:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1681953602; bh=AAD1RNUoCDTsOM9AZWqShakrG5fkFpKVZkDdmRFoae4=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=ZClINHvv3DYhwAZg+qL9fQSYNdIdqAIx1TG9Nz41Hm5J52gEMCjX2tP3hcSt8LgKr lwRaWVURc5dVq2YQIjunvSSMcOkXA0HKOQL8siILioVGHmS2jq6dqpa9XFKlFYvppP Mz9Ymhq/h0nbC0eh0ZErcSWIY4GsDPB4a04gYg0MUcZA2RyA3oPfgisJlcwgV8HZql M5lzL9vOkT6rhmbtkBPQKqQITtyb0GaiQhHBvpCAjf2BRQJapTxD4zoZhysKO+CLH9 rNRyRcDovqjVL2280iS2jfXjAa+eGXDBCMm7g9sSl310Rkw9VQd6n55ZCpgs1eegAV SX4baLuMq+UIw== Date: Wed, 19 Apr 2023 18:20:01 -0700 From: Jakub Kicinski To: Stephen Hemminger Cc: Xin Long , network dev , linux-sctp@vger.kernel.org, davem@davemloft.net, Eric Dumazet , Paolo Abeni , Marcelo Ricardo Leitner Subject: Re: [PATCH net-next 2/6] sctp: delete the nested flexible array skip Message-ID: <20230419182001.7fe64d29@kernel.org> In-Reply-To: <20230419083125.308b8732@hermes.local> References: <48a8d405dd4d81f7be75b7f39685e090867d858b.1681917361.git.lucien.xin@gmail.com> <20230419083125.308b8732@hermes.local> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-sctp@vger.kernel.org On Wed, 19 Apr 2023 08:31:25 -0700 Stephen Hemminger wrote: > > struct sctp_fwdtsn_hdr { > > __be32 new_cum_tsn; > > - struct sctp_fwdtsn_skip skip[]; > > + /* struct sctp_fwdtsn_skip skip[]; */ > > }; > > > > Why leave the old structure in comments. > Remove unused code and data structures please. Did you see the note in the cover letter? Is there any reason why this is not an acceptable way of documenting what follows?