From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lindbergh.monkeyblade.net (lindbergh.monkeyblade.net [23.128.96.19]) (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 96BF59CA61 for ; Sun, 1 Oct 2023 13:08:39 +0000 (UTC) X-Greylist: delayed 66 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Sun, 01 Oct 2023 06:08:36 PDT Received: from mail.sakamoto.pl (mail.sakamoto.pl [185.236.240.130]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 63633AC; Sun, 1 Oct 2023 06:08:36 -0700 (PDT) Authentication-Results: mail.sakamoto.pl; auth=pass (plain) Received: from ungoogled-chromebook.pub.zentralwerk.org ([2a0f:5382:acab:1403:df7a:1afe:5a62:f4ea]) by mail.sakamoto.pl (Haraka/2.8.28) with ESMTPSA id 60621AFF-99C3-45A5-A313-4DC9D3876F09.1 envelope-from tls TLS_AES_256_GCM_SHA384 (authenticated bits=0); Sun, 01 Oct 2023 15:07:27 +0200 From: April John To: aprl@acab.dev Cc: April John , Peter Zijlstra , Ingo Molnar , Arnaldo Carvalho de Melo , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , Ian Rogers , Adrian Hunter , linux-perf-users@vger.kernel.org (open list:PERFORMANCE EVENTS SUBSYSTEM), linux-kernel@vger.kernel.org (open list:PERFORMANCE EVENTS SUBSYSTEM) Subject: Date: Sun, 1 Oct 2023 15:04:52 +0200 Message-ID: <20231001130537.15038-3-april@acab.dev> X-Mailer: git-send-email 2.42.0 Precedence: bulk X-Mailing-List: linux-perf-users@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Haraka-GeoIP: DE X-Haraka-GeoIP-Received: 2a0f:5382:acab:1403:df7a:1afe:5a62:f4ea:DE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=acab.dev; s=s20220914329; h=from:date:message-id:to:cc:mime-version; bh=cL5BvNrnjDap5bK++GVy7L1DpwjaT1Jeu1v7F7sdHXc=; b=QZV4p99Tnr2E0DQibDcjBr9bNrSBQeMB6W7zBjXqaojj9uuE9gXtdCGw0czseIM4yoKyiFdDqU 1APDcfkocIzbNjflcssn0SLKiiRL2gX6aThmYBsd+JCwrKqTD3RAkYNvM8NZ3GFLpSwHv5lIxDCP qhDoxWWK/4m7iZlIhxnw9KFYGA7rHbhyJHswMvCQb5veVKXC3E7Zxohjhm2NucvdBCosI5i8gqxy Mb15/6FB4kbkfdZvK9G0hPevQoXUSWr2x5b88pOOzW0ZPnfbIpHERjIKqYA7SMZr5SNCNQ8buMtS ruuycOTeH+VxcYichpZFOAG2oIaEnEOhoOF6SP2g== X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on lindbergh.monkeyblade.net Subject: [PATCH] /bin/dmesg to dmesg Path To: linux-kernel@vger.kernel.org Dmesg is not in every distro at /bin/dmesg, in NixOS for example, this fails, but the path should in most cases contain dmesg. This follows the example of replacing /bin/bash with bash Path in the codebase. Signed-off-by: April John