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=-6.6 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS 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 F3410C3F2CE for ; Tue, 17 Mar 2020 16:58:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C939F20738 for ; Tue, 17 Mar 2020 16:58:17 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="m9wr7XFi" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726619AbgCQQ6Q (ORCPT ); Tue, 17 Mar 2020 12:58:16 -0400 Received: from merlin.infradead.org ([205.233.59.134]:43254 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726016AbgCQQ6Q (ORCPT ); Tue, 17 Mar 2020 12:58:16 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=QX9iF8ezG+inOhuE0PgT2EHQt0lHzo+JEnimIMMxeG8=; b=m9wr7XFiz9mM1t6wrJrro4AUQs OeZB2pfThQIACijyB6Gtt4K94gXlO2HpdSxFuBvO6B5oA/K8xQ0t4HKvhW2UlHrmWhQcxpWIhWKGo TrrfX7p66FtF3jBBtIODD8itOjd1w6roMSrsPZZIzqOmzAktJ84BXI68OAiSl0XXv4AEPyoGe9DGu ldahZ1Z6imJilwye8elj2fX/PEq/Q2W+m8ijy/SjGNv5vQdmpOYeSGoKFQNdKqUhNmk2Hp5/r5lwK 3/Z3giKIi38wu3GjnKVajdN1A1YeBeQdr5YlM2NAQSceBQoJlTfSopn16JIBEQA+mTtPXR7Pigg3I oHp6LwFw==; Received: from j217100.upc-j.chello.nl ([24.132.217.100] helo=noisy.programming.kicks-ass.net) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jEFXc-0003Sv-NW; Tue, 17 Mar 2020 16:58:08 +0000 Received: from hirez.programming.kicks-ass.net (hirez.programming.kicks-ass.net [192.168.1.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by noisy.programming.kicks-ass.net (Postfix) with ESMTPS id 9405B304D2C; Tue, 17 Mar 2020 17:58:05 +0100 (CET) Received: by hirez.programming.kicks-ass.net (Postfix, from userid 1000) id 849D823D7668A; Tue, 17 Mar 2020 17:58:05 +0100 (CET) Date: Tue, 17 Mar 2020 17:58:05 +0100 From: Peter Zijlstra To: Mauro Carvalho Chehab Cc: Linux Doc Mailing List , linux-kernel@vger.kernel.org, Jonathan Corbet , Thomas Gleixner , Ingo Molnar , Darren Hart Subject: Re: [PATCH 04/17] kernel: futex.c: get rid of a docs build warning Message-ID: <20200317165805.GA20713@hirez.programming.kicks-ass.net> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Mar 17, 2020 at 03:54:13PM +0100, Mauro Carvalho Chehab wrote: > Adjust whitespaces and blank lines in order to get rid of this: > > ./kernel/futex.c:491: WARNING: Definition list ends without a blank line; unexpected unindent. > > Signed-off-by: Mauro Carvalho Chehab > --- > kernel/futex.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/kernel/futex.c b/kernel/futex.c > index 67f004133061..dda6ddbc2e7d 100644 > --- a/kernel/futex.c > +++ b/kernel/futex.c > @@ -486,7 +486,8 @@ static u64 get_inode_sequence_number(struct inode *inode) > * The key words are stored in @key on success. > * > * For shared mappings (when @fshared), the key is: > - * ( inode->i_sequence, page->index, offset_within_page ) > + * ( inode->i_sequence, page->index, offset_within_page ) > + * WTH, that's less readable. > * [ also see get_inode_sequence_number() ] > * > * For private mappings (or when !@fshared), the key is: > -- > 2.24.1 >