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=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=no 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 EE84EC433E1 for ; Fri, 15 May 2020 18:10:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D575120657 for ; Fri, 15 May 2020 18:10:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726601AbgEOSKM (ORCPT ); Fri, 15 May 2020 14:10:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41250 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726144AbgEOSKL (ORCPT ); Fri, 15 May 2020 14:10:11 -0400 Received: from ms.lwn.net (ms.lwn.net [IPv6:2600:3c01:e000:3a1::42]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A9A1FC061A0C; Fri, 15 May 2020 11:10:11 -0700 (PDT) Received: from lwn.net (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id A0FC572D; Fri, 15 May 2020 18:10:09 +0000 (UTC) Date: Fri, 15 May 2020 12:10:08 -0600 From: Jonathan Corbet To: Mauro Carvalho Chehab Cc: Linux Doc Mailing List , linux-kernel@vger.kernel.org, David Airlie , Daniel Vetter , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , Andrew Morton , Andy Shevchenko , Sebastian Andrzej Siewior , Mike Rapoport , Peter Xu , Masahiro Yamada , Daniel Jordan , Peter Zijlstra , "Aneesh Kumar K.V" , Catalin Marinas , Ingo Molnar , Alexandre Ghiti , Arnd Bergmann , Thomas Gleixner , Peter Collingbourne , Frederic Weisbecker , Krzysztof Kozlowski , Will Deacon , "Steven Rostedt (VMware)" , Masami Hiramatsu , Tejun Heo , Patrick Bellasi , Dan Williams , "Eric W. Biederman" , "Joel Fernandes (Google)" , dri-devel@lists.freedesktop.org, linux-mm@kvack.org Subject: Re: [PATCH 11/14] docs: move other kAPI documents to core-api Message-ID: <20200515121008.4debe669@lwn.net> In-Reply-To: <70cca102282ccd36b107487c60346f414011c684.1588345503.git.mchehab+huawei@kernel.org> References: <70cca102282ccd36b107487c60346f414011c684.1588345503.git.mchehab+huawei@kernel.org> Organization: LWN.net MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 1 May 2020 17:37:55 +0200 Mauro Carvalho Chehab wrote: > There are a number of random documents that seem to be > describing some aspects of the core-api. Move them to such > directory, adding them at the core-api/index.rst file. > > Signed-off-by: Mauro Carvalho Chehab > --- > Documentation/admin-guide/sysctl/vm.rst | 2 +- > Documentation/core-api/index.rst | 6 ++++++ > Documentation/{mailbox.txt => core-api/mailbox.rst} | 0 > Documentation/{nommu-mmap.txt => core-api/nommu-mmap.rst} | 0 > .../{this_cpu_ops.txt => core-api/this_cpu_ops.rst} | 0 > .../unaligned-memory-access.rst} | 0 > Documentation/gpu/drm-mm.rst | 2 +- > arch/Kconfig | 2 +- > init/Kconfig | 2 +- > mm/Kconfig | 2 +- > mm/nommu.c | 2 +- > 11 files changed, 12 insertions(+), 6 deletions(-) > rename Documentation/{mailbox.txt => core-api/mailbox.rst} (100%) > rename Documentation/{nommu-mmap.txt => core-api/nommu-mmap.rst} (100%) > rename Documentation/{this_cpu_ops.txt => core-api/this_cpu_ops.rst} (100%) > rename Documentation/{unaligned-memory-access.txt => core-api/unaligned-memory-access.rst} (100%) This one doesn't apply for me. Beyond that, I'm not entirely convinced about a couple of the moves... - mailbox.txt seems like driver-api stuff to me? - nommu-mmap.txt is mostly (though not completely) about the semantic of mmap() options as seen by user space, so perhaps belongs in that manual...? Thanks, jon