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 7D9B11D040F; Wed, 2 Oct 2024 13:52:39 +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=1727877159; cv=none; b=N87O0CPqVuASNSEsLk5vM5Uc95z660lJzuxvvPE37EUuUG10bJSzyMdDlKTqTWQa0UiWmn93i8pw+mXf//BdOYA9KM2ZSbte649/LhbGuWBa75nkbKt3ChIUDOVPoZZjPX2Miwu112lNavTnzaCeXyulaor7Oijx3dxCAhHeJWY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727877159; c=relaxed/simple; bh=UC7+9xyNdqeNK7NcLPvgQTBtxB1aHMY3O6qbtg3GfYc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=A0GrjlrBF6wH3u2JPtYzRCHisankfR7Ybp4Q2tv18YSmmMeXEKS2j8Ogw1EJgmG0UBoLOJ1Qjh62n++zLbothg40FxpGqvUNtVELDXrjR95FG/RU+ik5rVJ/8oxSxLGqX7YPeQvhMhOTMVWFo/SOZERNhpVPDgD3x6mXeHJbP14= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=zZPuSS/J; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="zZPuSS/J" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 06C61C4CEC2; Wed, 2 Oct 2024 13:52:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1727877159; bh=UC7+9xyNdqeNK7NcLPvgQTBtxB1aHMY3O6qbtg3GfYc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=zZPuSS/J9j13Ky/P1bJ8Ik+NsxfmCUJ6PulOmg7W/l1SQXSYyPx4XjWZL0FBuxUjk MvUTcB9w2m1O+N/w+Cibga4AFK+rrtNffrELN6GEsl+SjHAIjp7ogTKEWZlzRfe4OS aw8T5orSURKgy8NZVD75x9yhrMZZqN/+tvTvCzfk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Dmitry Vyukov , Thomas Gleixner , Alexander Potapenko , Marco Elver , Andrey Konovalov Subject: [PATCH 6.11 684/695] module: Fix KCOV-ignored file name Date: Wed, 2 Oct 2024 15:01:22 +0200 Message-ID: <20241002125849.824319685@linuxfoundation.org> X-Mailer: git-send-email 2.46.2 In-Reply-To: <20241002125822.467776898@linuxfoundation.org> References: <20241002125822.467776898@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.11-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dmitry Vyukov commit f34d086fb7102fec895fd58b9e816b981b284c17 upstream. module.c was renamed to main.c, but the Makefile directive was copy-pasted verbatim with the old file name. Fix up the file name. Fixes: cfc1d277891e ("module: Move all into module/") Signed-off-by: Dmitry Vyukov Signed-off-by: Thomas Gleixner Reviewed-by: Alexander Potapenko Reviewed-by: Marco Elver Reviewed-by: Andrey Konovalov Cc: stable@vger.kernel.org Link: https://lore.kernel.org/all/bc0cf790b4839c5e38e2fafc64271f620568a39e.1718092070.git.dvyukov@google.com Signed-off-by: Greg Kroah-Hartman --- kernel/module/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/kernel/module/Makefile +++ b/kernel/module/Makefile @@ -5,7 +5,7 @@ # These are called from save_stack_trace() on slub debug path, # and produce insane amounts of uninteresting coverage. -KCOV_INSTRUMENT_module.o := n +KCOV_INSTRUMENT_main.o := n obj-y += main.o obj-y += strict_rwx.o