Received: by 2002:a25:7ec1:0:0:0:0:0 with SMTP id z184csp3518826ybc; Mon, 18 Nov 2019 16:48:53 -0800 (PST) X-Google-Smtp-Source: APXvYqxOVkrjLTxT/4JWqr7G8qhVife0g+UObQH2CkfzFaCeJ/UfIunHRd0Zbfc47o8E+VqLqmAk X-Received: by 2002:a1c:3c43:: with SMTP id j64mr2384843wma.13.1574124533055; Mon, 18 Nov 2019 16:48:53 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1574124533; cv=none; d=google.com; s=arc-20160816; b=iRj7+oPi4tGXN9JHE19Dyg/ysUffYPgtdlP61mp/c/v+sb2OJS+AGtNcap8U+rCntV B71DpqAhIEfa+L+t6orfBhjTPWLKExEjo7xyYte/vRoFhlbqhWC8hFt7CIsPxBIIg/m8 QrG3xlOlC+uSuK0ltcXs+cffkupMZ9xm4dOQGQ5NYXyC3Lc6hYvV9P+7eAvMNPWoxcE5 7JnmP2GHCRgVxsE8fBAu1R2ME8E4iOZr5/1rIjPTWV1pvzxcp4myhyq401GGWC6fS3kw uPJuT8G7l9446c3GB5XTgMEiAog/9Gs5BzYxCrdZ1ObrrNTjufQjCgdfBefDKT5oBQ1Q gMAA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:from:subject:cc:to:message-id:date; bh=cvdWQFvMcjz1j8rvzIAvZTQZjsMo3TSd0BDvmaOPqiI=; b=VDYqSBpJayAIMhMTAUo+3Ux/jY6101PP/uNDxCoAwQdvERHxFIhRz2l5WdyoiJv6bp nwCNLKy7U71bcvIMx9vE8Bg8QROkXUQ1klpm3eg2OzoXaAQDFA1LAq0gXz2ovrPzRiYl HgphFMIxPvf5wV8V6UGLH0pqRvUzzZaZOc3tWPfyNHjROlGE2v6ZBS9+D8u7kirjPoVI OySiX3XehGgODYOda9ZZpakyTMsrcp1eSoHGIk0Rei1d5poDh7Jo7xmZXFJ9bl6egglY aMRHHRzPJZK/g05unrvfd7yjTMs66Lj1+/YQYNkpnTmE89AQz670DmXbHSMDV0B7jFw/ HaUw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id i19si7539434edg.248.2019.11.18.16.48.26; Mon, 18 Nov 2019 16:48:53 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727148AbfKSArP (ORCPT + 99 others); Mon, 18 Nov 2019 19:47:15 -0500 Received: from shards.monkeyblade.net ([23.128.96.9]:51764 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726809AbfKSArP (ORCPT ); Mon, 18 Nov 2019 19:47:15 -0500 Received: from localhost (unknown [IPv6:2601:601:9f00:1e2::3d5]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: davem-davemloft) by shards.monkeyblade.net (Postfix) with ESMTPSA id 9CA53150F7646; Mon, 18 Nov 2019 16:47:14 -0800 (PST) Date: Mon, 18 Nov 2019 16:47:12 -0800 (PST) Message-Id: <20191118.164712.488135429319455452.davem@davemloft.net> To: tdavies@darkphysics.net Cc: akpm@linux-foundation.org, julia.lawall@lip6.fr, kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 1/1] net: Fix comment block per style guide From: David Miller In-Reply-To: <20191118220609.GA23999@Cheese> References: <20191118220609.GA23999@Cheese> X-Mailer: Mew version 6.8 on Emacs 26.1 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.5.12 (shards.monkeyblade.net [149.20.54.216]); Mon, 18 Nov 2019 16:47:14 -0800 (PST) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Travis Davies Date: Mon, 18 Nov 2019 14:06:09 -0800 > This patch places /* and */ on separate lines for a > multiline block comment, in order to keep code style > consistant with majority of blocks throughout the file. > > This will prevent a checkpatch.pl warning: > 'Block comments use a trailing */ on a separate line' > > Signed-off-by: Travis Davies > --- > -v2: Fix commit description, and subject line as suggested by > Julie Lawall The comment style used here is so pervasive in the kernel networking, I'm really not thrilled to start seeing these picked away one by one. So much churn... Sorry I'm not applying this...