From mboxrd@z Thu Jan 1 00:00:00 1970 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 5DE43C76195 for ; Fri, 24 Mar 2023 18:15:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231866AbjCXSPM (ORCPT ); Fri, 24 Mar 2023 14:15:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39988 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231933AbjCXSPL (ORCPT ); Fri, 24 Mar 2023 14:15:11 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 18FBF1CAF2; Fri, 24 Mar 2023 11:14:58 -0700 (PDT) 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=q91sWKJ5qM0W+8Z2LcDEZ6Jbw6upCOB7ZMAE+jGPJwg=; b=RWNXTpRzFjxpwU3DSt34RoSEbL wUW/vnyRFYpzVs/qOQG0jHZgLSNLcK7YnRj5XRQ1aOdstvpcW3FPiwOwskz307W80fTRJNhiMiyQr euUyyTt9fSFEA2Z5+zwoVJv/vfY3Dvtiup92aqr/W4ppGQXBvMx+mSXiPLJbE2ScAdphRuNExEG5P sP5JgWInutm2BxiqVmox+LRFZiZA4boxD5qVQFsVOIAX+fIpSN3QBhXCvUKK7eB1VcgbKAdxuQ0Bz 5wFW0/Zj78sZIER4CxLDmBj9bHwNdEYwkSDQv14aOZJJxptIypEOKqKKsi2Uj2ejYDoInHgymcgUH FfviE01A==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.96 #2 (Red Hat Linux)) id 1pflwD-005GZI-3C; Fri, 24 Mar 2023 18:14:53 +0000 Date: Fri, 24 Mar 2023 11:14:53 -0700 From: Luis Chamberlain To: Bagas Sanjaya Cc: Linux Documentation , Linux Kernel Build System , Linux Kernel Mailing List , Jonathan Corbet , Alex Shi , Yanteng Si , Kees Cook , Akira Yokosawa , Masahiro Yamada , Liam Beguin , Wu XiangCheng , Binbin Zhou , Stephen Rothwell Subject: Re: [PATCH] Documentation: core-api: update kernel-doc reference to kmod.c Message-ID: References: <20230324085310.20571-1-bagasdotme@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230324085310.20571-1-bagasdotme@gmail.com> Sender: Luis Chamberlain Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org On Fri, Mar 24, 2023 at 03:53:10PM +0700, Bagas Sanjaya wrote: > Commit d6f819908f8aac ("module: fold usermode helper kmod into modules > directory") moves kmod helper implementation (kmod.c) to kernel/module/ > directory but forgets to update its reference on kernel api doc, hence: > > WARNING: kernel-doc './scripts/kernel-doc -rst -enable-lineno -sphinx-version 2.4.4 -export ./kernel/kmod.c' failed with return code 2 > > Update the reference. > > Fixes: d6f819908f8aac ("module: fold usermode helper kmod into modules directory") > Reported-by: Stephen Rothwell > Link: https://lore.kernel.org/linux-next/20230324154413.19cc78be@canb.auug.org.au/ > Signed-off-by: Bagas Sanjaya > --- Thanks, queued onto modules-next. Luis