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 2A7223A9600; Wed, 21 Jan 2026 18:31:02 +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=1769020262; cv=none; b=TaFb3Ik5YVfri0DJLcEmCu7wLSVdwDsya4zx7Hm4t99MeH4p/UIELTyLErRBJlKuRtJmClenGzyjKTB820SFdTPm8mH5ReyEEMSpp7/YTSCYiNIjpa3uyC8r4F1aeBoCPJgdz/JhCa8ghAwHM5PwCTsLPobJx5ugl0woAgutAo4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769020262; c=relaxed/simple; bh=efQU8uSlOMfJSLQjkz6JgC1zb6SnxN0NNHFjYfS+tzE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=c2xMaFtfXluzW1/oV5lmYZdpSylWT4JgVitb6wfyuA76JJjKnLyiyilOSNt7wb++VsOXW7UHQOHKMqKVNMtv/9m8ih6G3iu5we03WIeLow446HUs+OsrcoFCm5CxwyKyXVU2r8mxjCFwwvnrcJqxrQ1PUJ4bNJiMxzgUJ5fTbXw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=eRKFqcwx; 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="eRKFqcwx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8E920C19425; Wed, 21 Jan 2026 18:31:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1769020262; bh=efQU8uSlOMfJSLQjkz6JgC1zb6SnxN0NNHFjYfS+tzE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=eRKFqcwxH63664dT2Gnr4YUpQZRqj6+YOQtM7/sVmGjCdpA1f8uxHSGPidsg2X+2s a40ZsE1zj4fhDTa7VlM0ymiTAK93RnClE9dTdJfG4UxSOzEJivtccR9mnObWP8AmF+ va1wrNDoeLPNVwq4lIvHLNo3iojjDlEU3IOkVFAs= 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.18 064/198] textsearch: describe @list member in ts_ops search Date: Wed, 21 Jan 2026 19:14:52 +0100 Message-ID: <20260121181420.861314827@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260121181418.537774329@linuxfoundation.org> References: <20260121181418.537774329@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.18-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