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=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,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 1473BC4332D for ; Fri, 20 Mar 2020 15:43:21 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E4F0020752 for ; Fri, 20 Mar 2020 15:43:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727113AbgCTPnU (ORCPT ); Fri, 20 Mar 2020 11:43:20 -0400 Received: from ms.lwn.net ([45.79.88.28]:42314 "EHLO ms.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727002AbgCTPnU (ORCPT ); Fri, 20 Mar 2020 11:43:20 -0400 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 7CE382E4; Fri, 20 Mar 2020 15:43:19 +0000 (UTC) Date: Fri, 20 Mar 2020 09:43:18 -0600 From: Jonathan Corbet To: Thomas Gleixner Cc: Mauro Carvalho Chehab , Linux Doc Mailing List , linux-kernel@vger.kernel.org, Ingo Molnar , Peter Zijlstra , Darren Hart Subject: Re: [PATCH 04/17] kernel: futex.c: get rid of a docs build warning Message-ID: <20200320094318.7390e5e5@lwn.net> In-Reply-To: <87h7yj59m0.fsf@nanos.tec.linutronix.de> References: <87h7yj59m0.fsf@nanos.tec.linutronix.de> Organization: LWN.net MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Sender: linux-doc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org On Fri, 20 Mar 2020 16:28:23 +0100 Thomas Gleixner wrote: > > * For shared mappings (when @fshared), the key is: > > - * ( inode->i_sequence, page->index, offset_within_page ) > > + * ( inode->i_sequence, page->index, offset_within_page ) > > Sigh. Is there no better way to make this look sane both in the file and > in the docs? I'd do: * For shared mappings (when @fshared), the key is:: * * ( inode->i_sequence, page->index, offset_within_page ) * jon