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=BAYES_00, 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 34816C433DB for ; Thu, 18 Mar 2021 16:41:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id DDA3564F30 for ; Thu, 18 Mar 2021 16:41:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232180AbhCRQla (ORCPT ); Thu, 18 Mar 2021 12:41:30 -0400 Received: from zeniv-ca.linux.org.uk ([142.44.231.140]:38808 "EHLO zeniv-ca.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232176AbhCRQlW (ORCPT ); Thu, 18 Mar 2021 12:41:22 -0400 Received: from viro by zeniv-ca.linux.org.uk with local (Exim 4.94 #2 (Red Hat Linux)) id 1lMvfy-007A1i-GX; Thu, 18 Mar 2021 16:39:10 +0000 Date: Thu, 18 Mar 2021 16:39:10 +0000 From: Al Viro To: Xiaofeng Cao Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, Xiaofeng Cao Subject: Re: [PATCH] fs/exec: fix typos and sentence disorder Message-ID: References: <20210318153145.13718-1-caoxiaofeng@yulong.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210318153145.13718-1-caoxiaofeng@yulong.com> Sender: Al Viro Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Mar 18, 2021 at 11:31:45PM +0800, Xiaofeng Cao wrote: > - * the address space in [new_end, old_start) some architectures > + * the address space in [new_end, old_start]. Some architectures [a,b] = {x: a <= x <= y} [a,b) = {x: a <= x < y} Not the same thing - closed vs. open on the right end.