Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5BAC1C636D3 for ; Thu, 2 Feb 2023 19:02:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229915AbjBBTCb (ORCPT ); Thu, 2 Feb 2023 14:02:31 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42022 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231482AbjBBTC2 (ORCPT ); Thu, 2 Feb 2023 14:02:28 -0500 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3B48135244; Thu, 2 Feb 2023 11:02:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:In-Reply-To:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=vonOtX4sHm5ySoollrrfaJlJdeuhvAtW4yhIzUNYhfs=; b=2ybRYd+M2k3pb8DfZm/IfwHhme oIE+a+KMPLzwq503uM0vBk+iaUmOs+f4c80MDQfyCgSQkDxhGuhF3xJtKwehRtnt5pMrZFmbbfBl2 xkWSJr2IPa3DjntOHYTETpmbnNU/3j8aTJ2KLWha3W7U7WElG7L6A0c+4EVITGpMYnVy4APPh86DT eD6G5X4rKErlIkJFHFbJPK5trXjJ4iUvr4Au2fD3jnb/at9LlXCy/rbtgTOiB6hpm+1L5Im24T2o9 BFHtlMzw+LA1YnPJyggrJmLXA+hdIHW/YEdeBtFwmnOsUyTBw4tHY+etCLrVhrJOzBA9QYSUac91Y PhKD6rLg==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1pNeqp-00H1gw-KD; Thu, 02 Feb 2023 19:02:27 +0000 Date: Thu, 2 Feb 2023 11:02:27 -0800 From: Luis Chamberlain To: Marcos Paulo de Souza Cc: linux-modules@vger.kernel.org, linux-kernel@vger.kernel.org, live-patching@vger.kernel.org Subject: Re: [PATCH] module.h: Document klp_modinfo struct members Message-ID: References: <20230202182950.10471-1-mpdesouza@suse.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230202182950.10471-1-mpdesouza@suse.com> Sender: Luis Chamberlain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Feb 02, 2023 at 03:29:50PM -0300, Marcos Paulo de Souza wrote: > The struct members description can be found on > Documentation/livepatch/module-elf-format.rst, but for a developer it's > easier to search for such information looking at the struct definition. > > Signed-off-by: Marcos Paulo de Souza Why not just embrace kdoc and then refer to it in the rst files? Luis