From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 54D73374E68 for ; Tue, 3 Mar 2026 02:15:34 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772504134; cv=none; b=LZ216vjZob2D7bZ/I2WLci2T8S568MJNdeHpRxHp/amJak0G8v7XqJPPfrKOjm2xq7OAmBvoQPxecl2QcyfrjIhx8EERrOI3NIEYxj6cpbcLDFpkikMfGiZO1bZbztSY9K3eEPM0LpYrk5G2LV79jTfRlihzXWI9Nihh6kTWSKQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772504134; c=relaxed/simple; bh=WuH4t/GYL+HXd8z3ZDGH/Sobx8VYlSHN9ZCgpL2pkOk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=WD4ofVnyNRqJPSaRhTWDBjTt5Kb8a3w9NaLDZb1142sI7/frZ9QW2wvdhDoWou3RWUqlEixgvD+p4reQVZTQbtOkEnpRr6Rd6PR2xyioeJkbwr5VQDDLkp1B78L1cAbS6e8MCwMW1Wi8/rrJN/hckin/75cQlmX8Ba4tSoYYIY0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=jsr4FGkS; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="jsr4FGkS" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 21189C19423; Tue, 3 Mar 2026 02:15:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1772504134; bh=WuH4t/GYL+HXd8z3ZDGH/Sobx8VYlSHN9ZCgpL2pkOk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jsr4FGkS5LGU+LMmjfRHKunU/VePTR48JT3MsBxJFOKnk1pmaGNIEyRg62SYn3b3G AkcqRYwXFAsxp5ZxkqKmDD2Y7ToTxWXJtxQP733A9dOSfpvblHNP2lfY2MW31wAcd5 XcymWgH8kdmt5L7XSLuTn+c40zOpwK3hZopdAYBtkaYbZVOLnCYWgyV8ByIQhkUcwI 2oHh/v0sAE25xsEcYPrtZMIEqDHCHHS1kgAJRYpUgxmdrOmc2BlsPtXp59F9E3CF2G ekpKVL8/tOFnqW5jz0pWCZ3jlWC+WZLZsOUvY/hLHyrhHKGJxi5MeFL2ESkCSuOT0a +8WzZvtKJyDGw== From: SeongJae Park To: Randy Dunlap Cc: SeongJae Park , linux-kernel@vger.kernel.org, Andrew Morton Subject: Re: [PATCH] build_bug.h: correct function parameters names in kernel-doc Date: Mon, 2 Mar 2026 18:15:31 -0800 Message-ID: <20260303021532.119606-1-sj@kernel.org> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260302005144.3467019-1-rdunlap@infradead.org> References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit On Sun, 1 Mar 2026 16:51:44 -0800 Randy Dunlap wrote: > Use the correct function (or macro) names to avoid kernel-doc > warnings: > > Warning: include/linux/build_bug.h:38 function parameter 'cond' not > described in 'BUILD_BUG_ON_MSG' > Warning: include/linux/build_bug.h:38 function parameter 'msg' not > described in 'BUILD_BUG_ON_MSG' > Warning: include/linux/build_bug.h:76 function parameter 'expr' not > described in 'static_assert' > > Signed-off-by: Randy Dunlap Reviewed-by: SeongJae Park Thanks, SJ [...]