From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5C825356A0A for ; Fri, 24 Apr 2026 12:41:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777034504; cv=none; b=uThJP/d45HANumLznYO4IaML/LwSQ978+voR3ziN7V+H+ApUjtV+SoYOzzPSs/1Tww2BSxP8xxw32fcbpAWsAZSek8RU/zpTDi4R9BxPQu8Nso1DdvS9pdihJ977313vYGvppCYAyTdA30tF0TgZr1a91FYBvsPsL5VmRw2QHhA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777034504; c=relaxed/simple; bh=6WyGvXM6KrRwk2FYS/oHDsLRLQGvZ+dAbuY5JYWFfvk=; h=Date:From:To:Cc:Subject:Message-Id:In-Reply-To:References: Mime-Version:Content-Type; b=SAVu4Uk3a+KWhkQsCTReZQ4WNneorbt0eExOID7YIr1ixztr5soXP7nn+rRpz/7YsHa7mvpyO5YEZaLR0dvem/eC6XzmUvGBU0loab9xi2u1I2cPJHWhjS1a5J6FBKjVohGL+75A9dF9fSSoNaBqJyFiU8D3/T4+kvY3onhdELg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b=nLQI89a2; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="nLQI89a2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E0C70C19425; Fri, 24 Apr 2026 12:41:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1777034504; bh=6WyGvXM6KrRwk2FYS/oHDsLRLQGvZ+dAbuY5JYWFfvk=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=nLQI89a2V5ZI3KSg9JZd/J/lYid7rrGeqdezDBgBTSzXvSAlSBciZ7LLTyVQK2q2e XEW/dXU0S/wLlplEyMAdQiN9qa751li2Fo5LV2FbPmIqN3tIjfP85bUW1mqrM4PlDC I5pt/yFYU/S9MtVBVld3gRpAxY2zPuz8towAG22k= Date: Fri, 24 Apr 2026 05:41:43 -0700 From: Andrew Morton To: "David Hildenbrand (Arm)" Cc: Greg Kroah-Hartman , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Jason Gunthorpe , John Hubbard , Peter Xu Subject: Re: [PATCH v2] mm/gup: honour FOLL_PIN in NOMMU __get_user_pages_locked() Message-Id: <20260424054143.087847e1617a84df8b501313@linux-foundation.org> In-Reply-To: References: <2026042303-vendor-outright-b9d2@gregkh> <2026042431-charter-ranging-597c@gregkh> X-Mailer: Sylpheed 3.8.0beta1 (GTK+ 2.24.33; x86_64-pc-linux-gnu) Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Fri, 24 Apr 2026 14:16:21 +0200 "David Hildenbrand (Arm)" wrote: > >>> Cc: David Hildenbrand > >>> Cc: Jason Gunthorpe > >>> Cc: John Hubbard > >>> Cc: Peter Xu > >>> Reported-by: Anthropic > >>> Assisted-by: gkh_clanker_t1000 > >> > >> Assisted-by: David :( > >> > >> (no, I'm not a tool! :) ) > > > > True, sorry, I guess people can "assist", I should have added that. > > > > If Andrew's tools automatically pick this up then: > > > > Assisted-by: David Hildenbrand > > I think we usually use Suggested-by:, but really I was just joking :) I thought you were gkh_clanker_t1000 > Andrew, can you add "While at it, don't return NULL pointers in the page array, > as this is really not expected for GUP users; instead, just fail and return > -EFAULT."? Thanks! Did.