From: John Hubbard <jhubbard@nvidia.com>
To: Minchan Kim <minchan@kernel.org>
Cc: Will McVicker <willmcvicker@google.com>,
Andrew Morton <akpm@linux-foundation.org>,
kernel-team@android.com, linux-mm@kvack.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v1 1/1] mm/gup: skip pinnable check for refs==1
Date: Mon, 31 Jan 2022 23:35:14 -0800 [thread overview]
Message-ID: <36068cbd-2020-1961-5034-866a4c7b20cf@nvidia.com> (raw)
In-Reply-To: <YfjhGKCkQ6h5H5uI@google.com>
On 1/31/22 23:28, Minchan Kim wrote:
...
>>> --- a/mm/gup.c
>>> +++ b/mm/gup.c
>>> @@ -135,7 +135,7 @@ struct page *try_grab_compound_head(struct page *page,
>>> * right zone, so fail and let the caller fall back to the slow
>>> * path.
>>> */
>>> - if (unlikely((flags & FOLL_LONGTERM) &&
>>> + if (refs > 1 && unlikely((flags & FOLL_LONGTERM) &&
>>> !is_pinnable_page(page)))
>>> return NULL;
>>
>> ...but are you really sure that this is the best way to "fix" the
>> problem? This trades correctness for "bug-for-bug compatibility" with
>> the previous code. It says, "it's OK to violate the pinnable and
>> longterm checks, as long as you do it one page at a time, rather than in
>> larger chunks.
>>
>> Wouldn't it be better to try to fix up the calling code so that it's
>> not in violation of these zone rules?
>
> I think the problem is before pin_user_pages can work with CMA pages
> in the fallback path but now it doesn't work with CMA page. Driver
Actually, it "worked" only if the caller did it one page at a time.
(See how the above attempted fix restores the "make it work for
refs == 1.)
> couldn't know whether it will work with CMA page or not in advance.
>
> pin_user_pages
> __get_user_pages_locked
> follow_page_mask
> follow_page_pte
> try_grab_page
> !is_pinnable_page(page)
> return NULL;
> return ERR_PTR(-ENOMEM);
> return -ENOMEM without faultin_page
Yes, that's all clear.
thanks,
--
John Hubbard
NVIDIA
next prev parent reply other threads:[~2022-02-01 7:35 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-31 20:35 Will McVicker
2022-01-31 20:49 ` John Hubbard
2022-01-31 21:37 ` Will McVicker
2022-02-01 7:28 ` Minchan Kim
2022-02-01 7:35 ` John Hubbard [this message]
2022-02-01 7:43 ` John Hubbard
2022-02-01 8:33 ` John Hubbard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=36068cbd-2020-1961-5034-866a4c7b20cf@nvidia.com \
--to=jhubbard@nvidia.com \
--cc=akpm@linux-foundation.org \
--cc=kernel-team@android.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=minchan@kernel.org \
--cc=willmcvicker@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox