From patchwork Wed Jan 18 03:52:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Thomas_Wei=C3=9Fschuh?= X-Patchwork-Id: 643918 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 DE060C678DB for ; Wed, 18 Jan 2023 03:53:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229674AbjARDw7 (ORCPT ); Tue, 17 Jan 2023 22:52:59 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34496 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229580AbjARDw4 (ORCPT ); Tue, 17 Jan 2023 22:52:56 -0500 Received: from todd.t-8ch.de (todd.t-8ch.de [IPv6:2a01:4f8:c010:41de::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4AE6B53E75; Tue, 17 Jan 2023 19:52:55 -0800 (PST) From: Thomas =?utf-8?q?Wei=C3=9Fschuh?= DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=weissschuh.net; s=mail; t=1674013973; bh=KpYnQTE7Q4vLwsdxk/CiqAMvN8ld8VPSFFsnhjdwuic=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=iEqeZkH/XiKYxvb2LtOoBlTVvjZA737gnaycON7XLqEdz55zqLSs1JwreM83YeQOB KVEmyLCjrYx/+tY0PEpz3bDvxM2BAuAp9//Kg6KIbsQeyJG/4P5LXtT9WcQnPfLkl+ TCCZ0cfMsiM/RzE/LhzJgSW4irYaW4G9hnOmPoug= Date: Wed, 18 Jan 2023 03:52:19 +0000 Subject: [PATCH 2/3] bpf: iterators: align kbuild messages to standard MIME-Version: 1.0 Message-Id: <20230118-kbuild-alignment-v1-2-eb5e9fd55c92@weissschuh.net> References: <20230118-kbuild-alignment-v1-0-eb5e9fd55c92@weissschuh.net> In-Reply-To: <20230118-kbuild-alignment-v1-0-eb5e9fd55c92@weissschuh.net> To: Alexei Starovoitov , Daniel Borkmann , Andrii Nakryiko , Martin KaFai Lau , Song Liu , Yonghong Song , John Fastabend , KP Singh , Stanislav Fomichev , Hao Luo , Jiri Olsa , Mykola Lysenko , Shuah Khan , Masahiro Yamada Cc: bpf@vger.kernel.org, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org, linux-kbuild@vger.kernel.org, Thomas =?utf-8?q?Wei=C3=9Fschuh?= X-Mailer: b4 0.11.2 X-Developer-Signature: v=1; a=ed25519-sha256; t=1674013966; l=976; i=linux@weissschuh.net; s=20221212; h=from:subject:message-id; bh=KpYnQTE7Q4vLwsdxk/CiqAMvN8ld8VPSFFsnhjdwuic=; b=ub6o/8GBy8+Ikdjoq2W3KoUA+ZWNBi74hbqLchtpOsuWFSbxoJLYgi3sROXhZpJZq+b2HBhXFeHx 4UsNeBpsBDKBPvTVpDR9YpaGW1LPntvNhJxIHIrggghl7AB3A6Ck X-Developer-Key: i=linux@weissschuh.net; a=ed25519; pk=KcycQgFPX2wGR5azS7RhpBqedglOZVgRPfdFSPB1LNw= Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org The common layout for kbuild messages is as follows: - 2 spaces - 7 or more characters for the action - 1 space - name of the file being built/generated The custom message formatting included an additional space in the action part, which leads to misalignments with the rest of kbuild. Signed-off-by: Thomas Weißschuh --- kernel/bpf/preload/iterators/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/bpf/preload/iterators/Makefile b/kernel/bpf/preload/iterators/Makefile index 6762b1260f2f..7c6bb9d010ca 100644 --- a/kernel/bpf/preload/iterators/Makefile +++ b/kernel/bpf/preload/iterators/Makefile @@ -26,7 +26,7 @@ Q = msg = else Q = @ -msg = @printf ' %-8s %s%s\n' "$(1)" "$(notdir $(2))" "$(if $(3), $(3))"; +msg = @printf ' %-7s %s%s\n' "$(1)" "$(notdir $(2))" "$(if $(3), $(3))"; MAKEFLAGS += --no-print-directory submake_extras := feature_display=0 endif