From mboxrd@z Thu Jan 1 00:00:00 1970 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 3072BE748ED for ; Sun, 1 Oct 2023 13:08:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234973AbjJANIm (ORCPT ); Sun, 1 Oct 2023 09:08:42 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33614 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229716AbjJANIl (ORCPT ); Sun, 1 Oct 2023 09:08:41 -0400 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 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== Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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