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 3273AC761AF for ; Wed, 29 Mar 2023 16:40:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230181AbjC2QkI (ORCPT ); Wed, 29 Mar 2023 12:40:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46308 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230175AbjC2QkG (ORCPT ); Wed, 29 Mar 2023 12:40:06 -0400 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6269310F; Wed, 29 Mar 2023 09:40:05 -0700 (PDT) Received: from localhost (unknown [IPv6:2601:281:8300:73::5f6]) (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 9F7FD378; Wed, 29 Mar 2023 16:40:04 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 9F7FD378 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1680108004; bh=paGh1OeGW3r8EjzTZ/oNzuANG8Gctu13IsDhEUo9Lz0=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=Ai8x34f6qzOursoDarnQXytXyMVdCGws5ssISKVbIiqqkkM4QvqPyUZZQG8Xpj8Yr RC8Fp4XjE09jV9aeYx4udQHkL7h+cGIcQ8RBfw0YJ5N+GOUy72zhCqFV6M6Q6ifjwa 27fICtx0yA3vfb3C2PVos7XM3NenB5sDzC2pJ1T5hIluiiWxPJqCwcECLJNhFhRPLo Yiqzi4/M/SmalW8TUC+T9YmXFWSzhKcI9ktSSNpGLslZ+oxCN/y/ERQelb2qC3U9+u pA1sZuUW3J4xZttzkdFq/FkItKg2si2w1R2lZYI/wiljQ3JyQ+HodAwI1IC2bst2Zd t/zsmfcay7Y+w== From: Jonathan Corbet To: Alexey Dobriyan , akpm@linux-foundation.org Cc: linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, Randy Dunlap , Bagas Sanjaya Subject: Re: [PATCH v2] ELF: document some de-facto PT_* ABI quirks In-Reply-To: References: <2acb586c-08a9-42d9-a41e-7986cc1383ea@p183> Date: Wed, 29 Mar 2023 10:40:03 -0600 Message-ID: <87edp7jyu4.fsf@meer.lwn.net> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Alexey Dobriyan writes: > Turns out rules about PT_INTERP, PT_GNU_STACK and PT_GNU_PROPERTY > program headers are slightly different. > > Signed-off-by: Alexey Dobriyan > --- > > v2: integrate into documentation build system > > Documentation/ELF/ELF.rst | 32 ++++++++++++++++++++++++++++++++ > Documentation/ELF/index.rst | 10 ++++++++++ > Documentation/index.rst | 1 + > 3 files changed, 43 insertions(+) I really don't want to add another top-level directory for a single short file ... I'm trying to have fewer of those directories, not more. This is essentially use-space ABI information; I think you should really just drop a file into Documentation/userspace-api/. Thanks, jon