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 X-Spam-Level: X-Spam-Status: No, score=-13.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4EB9AC56202 for ; Wed, 21 Oct 2020 12:17:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E7230223C7 for ; Wed, 21 Oct 2020 12:17:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603282653; bh=8mKeoT70W2C80dpgS/0uhSrxkN5L//sEcSOYWAnufuI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=Fi8BDlEh4YzpPPSz8xty93tvXLJEvDsG8P83sXV/kEaqoMuqbgBFHBG8OSa6uCxEY R5y4rBZpvGy/qfTi/5Av+R0t6aoT+LmV6Mf/pl/Z90Zbv+kEmPZ5M8x+AA655ccc+u wDCpRQgml3rtCiM1s9MfhUcnIUvbEk0efA2IUjr8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2442263AbgJUMRc (ORCPT ); Wed, 21 Oct 2020 08:17:32 -0400 Received: from mail.kernel.org ([198.145.29.99]:59084 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2411465AbgJUMRb (ORCPT ); Wed, 21 Oct 2020 08:17:31 -0400 Received: from mail.kernel.org (ip5f5ad5a8.dynamic.kabel-deutschland.de [95.90.213.168]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id BB6C22224B; Wed, 21 Oct 2020 12:17:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603282650; bh=8mKeoT70W2C80dpgS/0uhSrxkN5L//sEcSOYWAnufuI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=2Zo/zOlOzUxTV6fY0xDyQRg6scPQrOVwn4rcsKAWMKvMIP/kKb9sA5IACgoiMQx8x xbm2L0QUelhmru//nBYzokq2SUnAMVhroaBO4oxl0VYfIZ5XXPvezXJ9j4NxZGGljM x9U9lpXKEOJ/bgwpx1tKJE3NIioD4CV2vUYPv0ds= Received: from mchehab by mail.kernel.org with local (Exim 4.94) (envelope-from ) id 1kVD3Y-001U2j-Hj; Wed, 21 Oct 2020 14:17:28 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , "Jonathan Corbet" , David Sterba , Goldwyn Rodrigues , Johannes Thumshirn , Josef Bacik , Nikolay Borisov , linux-kernel@vger.kernel.org Subject: [PATCH v3 6/6] docs: fs: api-summary.rst: get rid of kernel-doc include Date: Wed, 21 Oct 2020 14:17:27 +0200 Message-Id: <6db2c1901e5a7061de9507c8be1d2a1deae382d2.1603282193.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The direct-io.c file used to have just two exported symbols: - dio_end_io() - __blockdev_direct_IO() The first one was removed by changeset c33fe275b530 ("fs: remove no longer used dio_end_io()") And the last one is used on most places indirectly, via the inline macro blockdev_direct_IO() provided by fs.h. Yet, neither the macro or the function have kernel-doc markups. So, drop the inclusion of fs/direct-io.c at the docs. Fixes: c33fe275b530 ("fs: remove no longer used dio_end_io()") Signed-off-by: Mauro Carvalho Chehab --- Documentation/filesystems/api-summary.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/Documentation/filesystems/api-summary.rst b/Documentation/filesystems/api-summary.rst index bbb0c1c0e5cf..a94f17d9b836 100644 --- a/Documentation/filesystems/api-summary.rst +++ b/Documentation/filesystems/api-summary.rst @@ -86,9 +86,6 @@ Other Functions .. kernel-doc:: fs/dax.c :export: -.. kernel-doc:: fs/direct-io.c - :export: - .. kernel-doc:: fs/libfs.c :export: -- 2.26.2