From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 E711C3E63B7; Wed, 8 Jul 2026 09:07:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783501671; cv=none; b=ZwGw+K/cbBIyrbhvNSJPRDetXpUuN0rH9Kb78ZkeUzApXT/ju3Nq9AI+f+IusEArNOfvITK4RyZRqCOIEBPESh4vgNGBX0ljDdVmCHsGwqNWsZ7iXWIYepymgYRRMZMfYOZnm0mfqceuPPeMzqBPZiv8PodKAhCba9iRtmkZy4E= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783501671; c=relaxed/simple; bh=wzE+FAp3BrCgISI4I3CymC5NlO9a8yymBFM8U6HIjZc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=KNDpvH9mnX1EIltOBHIDuuRnfG0OiqsHA+edDkK5kyZYsV/KcAzODwst6UrgTzYpFSeIHciA3tH2c0XS2Ntp9gB/FsEdGOMFbmtX+BdmWU8lKa2j1qRe88YpxWTg4D0S+vn26UqFM1qojgArij5/jbYb2dfnn4cb6AdvD42LrII= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=fail (p=none dis=none) header.from=lst.de; spf=none smtp.mailfrom=bombadil.srs.infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=KYQ+prfQ; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=none dis=none) header.from=lst.de Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=bombadil.srs.infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="KYQ+prfQ" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Sender :Reply-To:Content-Type:Content-ID:Content-Description; bh=SPIDK1lNPJ3L8M+w5BYkGiyKSopV1niKiKKXPQ4evtc=; b=KYQ+prfQKJJRTvlmWGYjMuN1x2 +7pK6oggF0sVdNCf0zDVotfNrL3+Zx5fOAeD2WZnVUcB0/6nqr9hsuQlvDKhgUZdaQ14UwRSf/gEh nXfuOtZ95O6O6RIz8ah2dTF1tVsd+Du0LPFNTCTnrwdYX2sjWC5Y7Caj5RQrvloP3Pt97m68Oyj1j Fv6Hz2cIMN/4peU2hp2w9ZZ/8KOj+1MRsebut4RVNra905wW9dNlNCgQ4rXLDiFO1EF/6qHSsDB3a iR18x1ouvN81Bk+xSwsO15ksQujOaBaSUbiBuy+/3Jb1xqJS9J42Ry9klDD9n3NAdUFnKxKpAjDTI e+k7go/Q==; Received: from 213-147-165-125.nat.highway.webapn.at ([213.147.165.125] helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.99.1 #2 (Red Hat Linux)) id 1whOFw-0000000Gi7O-31ar; Wed, 08 Jul 2026 09:07:49 +0000 From: Christoph Hellwig To: Andrew Morton Cc: Eric Biggers , linux-raid@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/8] xor: enable lock context analysis Date: Wed, 8 Jul 2026 11:07:30 +0200 Message-ID: <20260708090740.1433685-2-hch@lst.de> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260708090740.1433685-1-hch@lst.de> References: <20260708090740.1433685-1-hch@lst.de> Precedence: bulk X-Mailing-List: linux-raid@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html The code doesn't have any locking, so this is trivial. Signed-off-by: Christoph Hellwig --- lib/raid/xor/Makefile | 2 ++ lib/raid/xor/tests/Makefile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/lib/raid/xor/Makefile b/lib/raid/xor/Makefile index e8ecec3c09f9..9b0fad459cdb 100644 --- a/lib/raid/xor/Makefile +++ b/lib/raid/xor/Makefile @@ -1,5 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 +CONTEXT_ANALYSIS := y + ccflags-y += -I $(src) obj-$(CONFIG_XOR_BLOCKS) += xor.o diff --git a/lib/raid/xor/tests/Makefile b/lib/raid/xor/tests/Makefile index 661e8f6ffd1f..1cce833cd7fd 100644 --- a/lib/raid/xor/tests/Makefile +++ b/lib/raid/xor/tests/Makefile @@ -1,3 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only +CONTEXT_ANALYSIS := y + obj-$(CONFIG_XOR_KUNIT_TEST) += xor_kunit.o -- 2.53.0