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 20EAD41B357; Wed, 4 Feb 2026 15:04:43 +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=1770217484; cv=none; b=a7s8Ld8Jk06PbFbJmb28oN1K+yU+h9ZvczTkq2rSFTBUOzGp6CRaNXGYrwRLl/J7rsm2x3+Ey1ElzDjtxyem3Dn0yr4Aj/JWCZ8dvWYLjC45mT8I6NZxvlweKKO+F5MvR3+9La9nFzUmjeeAQaWSQviZOKFD5fDMFSREKCLGsok= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770217484; c=relaxed/simple; bh=UGabwtwBUgOXxuqkwwMDqc0A0Kl/4mpemoAP11FUdWc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=gBDF6Oiz9eJj9TkPxuFX9NFPSzwSbg+UUMoYPVvPt9YSf7GzxafRs6V3VDEda5ZnfzPaj2V2RYGQcqqC5cTx6xKWjpDf6ZgFgSsFTvxbEZDQFWGKKUn2l43VNbgwmJqYzsz0FOD0piasa2snczfkWGlYkvQRQ+wRIiZWqF7pmVo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=plsfismU; 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="plsfismU" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 31407C4CEF7; Wed, 4 Feb 2026 15:04:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770217483; bh=UGabwtwBUgOXxuqkwwMDqc0A0Kl/4mpemoAP11FUdWc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=plsfismUiCwpl3NKEO+QXG3fM5Uj6oPS4rSQkMNhRdvjvfDZ40ThjnkX1Kwi5QVv+ Pe8lt0l2aDuoEa/BFRui0ml1NmUW8kDiEO5WlU8iJV1zz4r9Od44i6WSUlKRrmF8ZO jPagofHolPJxlKjutH59pUqyXsu5ci07gAnfEdHE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Bagas Sanjaya , Thomas Graf , "David S. Miller" , Andrew Morton , Sasha Levin Subject: [PATCH 6.1 029/280] textsearch: describe @list member in ts_ops search Date: Wed, 4 Feb 2026 15:36:43 +0100 Message-ID: <20260204143910.686302760@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260204143909.614719725@linuxfoundation.org> References: <20260204143909.614719725@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Bagas Sanjaya [ Upstream commit f26528478bb102c28e7ac0cbfc8ec8185afdafc7 ] Sphinx reports kernel-doc warning: WARNING: ./include/linux/textsearch.h:49 struct member 'list' not described in 'ts_ops' Describe @list member to fix it. Link: https://lkml.kernel.org/r/20251219014006.16328-4-bagasdotme@gmail.com Fixes: 2de4ff7bd658 ("[LIB]: Textsearch infrastructure.") Signed-off-by: Bagas Sanjaya Cc: Thomas Graf Cc: "David S. Miller" Signed-off-by: Andrew Morton Signed-off-by: Sasha Levin --- include/linux/textsearch.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/textsearch.h b/include/linux/textsearch.h index 6673e4d4ac2e1..4933777404d61 100644 --- a/include/linux/textsearch.h +++ b/include/linux/textsearch.h @@ -35,6 +35,7 @@ struct ts_state * @get_pattern: return head of pattern * @get_pattern_len: return length of pattern * @owner: module reference to algorithm + * @list: list to search */ struct ts_ops { -- 2.51.0