Received: by 10.223.185.116 with SMTP id b49csp1037155wrg; Fri, 16 Feb 2018 11:14:33 -0800 (PST) X-Google-Smtp-Source: AH8x224cqgSqHKkPvr6ZhYzw/TSj26QqCE1PdUKUBkA6aKroJE4oxkzLbdule14T642U49RA2Qth X-Received: by 10.98.75.206 with SMTP id d75mr7032259pfj.77.1518808473686; Fri, 16 Feb 2018 11:14:33 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1518808473; cv=none; d=google.com; s=arc-20160816; b=tV+cvp6uSwHSVDMtaUCgsAwd2fegSwsiCb8KW70OcAIiF5ZN6a5DYM1klDsab8+EZQ fcWMsBFr93BERlQh7MQqebx7b76OdXDK4Uc6WvB2/RbhlBQcLkEJatETJ0bMaGu2xP/b zYumxrfHWPUC8Z+7PlvIXyvReaFMKT4iXJOyF1sn+ISoLKWJXuWvcFp0oYPcsV7N8qN2 0j7TJIPW9RzyFEYDHWXAgwovg+cxt7EQF/t0UIMF+pg+i0Ov2bXKk/QwBTQdqZd8SBzF TBteDyT6dBFEfXHCfxIQaTAl4cODN1m/qGj0AjdShro+DhDzLT/cn9We1UInfTaIxPvd w6uQ== 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 :organization:references:in-reply-to:message-id:subject:cc:to:from :date:arc-authentication-results; bh=92yLMhz3lCM5dh5xz1Ihlwl/OAoOEst0vsRN433NhMs=; b=hgfmg6Zouol3O4FxC4lI5MHMNfKVZbYDAHMCX0VYCfVAYYpyetbqXBWnriFeKOkQPC rm8ewTXer30AW2LMyb4VGeHPIOPNlKjUkpYlCkc9p1Iejd7vZ+91vY+VvQjaJ/JLYwEe EU/YpjYMCTLto5ZUk70y978j0vi0ndZhT8rHx4Xl3wdAqKid29tja9xkPr2iGsoUZc0z iNM1GwhMmKLX3mA9HfjAaOqMPQCoAlAY+F6moF31hnoFO2JuMu1UfTYB/LrYRIwdEbG6 tJJiOD7ajSjdbsvVVl7cBGuAOy2U3s2WRqTR+VuZqugNoh615sOvXs00ZG1pGngXhtkn ca7A== 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 e190si4788950pfe.4.2018.02.16.11.14.19; Fri, 16 Feb 2018 11:14:33 -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 S1034599AbeBPO4q (ORCPT + 99 others); Fri, 16 Feb 2018 09:56:46 -0500 Received: from ms.lwn.net ([45.79.88.28]:44110 "EHLO ms.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1033485AbeBPO4p (ORCPT ); Fri, 16 Feb 2018 09:56:45 -0500 Received: from localhost.localdomain (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 6A8CF537; Fri, 16 Feb 2018 14:56:44 +0000 (UTC) Date: Fri, 16 Feb 2018 07:56:42 -0700 From: Jonathan Corbet To: Mike Rapoport Cc: linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] scripts: kernel_doc: fixup reporting of function identifiers Message-ID: <20180216075642.2e56eb51@lwn.net> In-Reply-To: <1518521506-6770-1-git-send-email-rppt@linux.vnet.ibm.com> References: <1518521506-6770-1-git-send-email-rppt@linux.vnet.ibm.com> Organization: LWN.net X-Mailer: Claws Mail 3.15.1-dirty (GTK+ 2.24.32; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 13 Feb 2018 13:31:46 +0200 Mike Rapoport wrote: > When function description includes brackets after the function name as > suggested by Documentation/doc-guide/kernel-doc, the kernel-doc script > omits the function name from "Scanning doc for" report. > Extending match for identifier name with optional brackets fixes this > issue. So let me channel akpm here and ask: what are the user-visible effects of this problem? I ask because applying it doesn't make any difference in the "make htmldocs" output here. So I don't understand why you're wanting to make this change. Thanks, jon