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 AF04B45BD78 for ; Tue, 30 Jun 2026 19:08:54 +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=1782846535; cv=none; b=r3cj021otIs1IVQ2P0g1faFuMm26K49jCqYLL//YqvBgsc98L8fZon12ODY3WlwE68B6BHAYcTjieQSFg8GwPnZCdQOBolgKcJt042yxLCfVVShZvTaDge0kAVv7v+VteEe6+GAFMsftczsGLijb1FftSYvQ3NJbPy7mGeF4/Q8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782846535; c=relaxed/simple; bh=X4MSNCiMX2uQFQg/ni1LRQ5BS72KYqtrOVt3pr7LeHg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=er9Il9XdH93Dyq6+wdCZmLge9QJyUU97H7zs7g/wKWim3fMag+pMEtEKzZJMLXhrt5Isc8FmetecMX6qV30IoaFtBg6TGa5rm0CQNDJ8uQ8AQUaFy2doP48J2SYRQp4c7/MdPkbiISaW8nHEh1J3OBGDXy/KoblALpnyr7vDWog= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=pass smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=ihv+3f+C; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="ihv+3f+C" 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=bme1R0KydCT471vE89SzSzHkPBH2aH3edsvHBOUIvRE=; b=ihv+3f+Cr97F5QYNZudldtY9bc L1QX35N7kfQIchhMQJupTYWfIBcxhyKFosTfuu2f2LDwclXpD0ER/7dOW671c74sWdrVTYROb/v0J namy5xUL5CIEqSqhZjP7Q6UjJ7yzC0XEQZ5S3xQ/jseRHasY1BFKjcGrebbxoKqfoMY36S2z/iOkQ wR0aYKY/3T7o2lx/D+9gE9ZGe6YNN4w77w65WndiXkJ3YuP1oDeYHhBIiJ2fIoUELOnz8Y38sKWCb IzzfMECCzNninqXw/WAsWowRVqOOiLNLhMdPDtLVYuz/QN1bnx7IBKVOAb3ceNsMNA3RzDKC23VNt ygZwxFvw==; Received: from [38.23.173.23] (helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.99.1 #2 (Red Hat Linux)) id 1wedpF-000000005q0-1EXy; Tue, 30 Jun 2026 19:08:54 +0000 From: "Liam R. Howlett (Oracle)" To: Andrew Morton Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, maple-tree@lists.infradead.org, "Liam R. Howlett (Oracle)" Subject: [PATCH v2 04/19] maple_tree: Documentation fix Date: Tue, 30 Jun 2026 15:08:28 -0400 Message-ID: <20260630190843.3563858-5-liam@infradead.org> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260630190843.3563858-1-liam@infradead.org> References: <20260630190843.3563858-1-liam@infradead.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Don't include the word flag in the quotes with the actual flag. Signed-off-by: Liam R. Howlett (Oracle) --- Documentation/core-api/maple_tree.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/core-api/maple_tree.rst b/Documentation/core-api/maple_tree.rst index ccdd1615cf974..34964ec88d179 100644 --- a/Documentation/core-api/maple_tree.rst +++ b/Documentation/core-api/maple_tree.rst @@ -211,7 +211,7 @@ Advanced Locking The maple tree uses a spinlock by default, but external locks can be used for tree updates as well. To use an external lock, the tree must be initialized -with the ``MT_FLAGS_LOCK_EXTERN flag``, this is usually done with the +with the ``MT_FLAGS_LOCK_EXTERN`` flag, this is usually done with the MTREE_INIT_EXT() #define, which takes an external lock as an argument. Functions and structures -- 2.47.3