lkml.org 
[lkml]   [2022]   [Sep]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    Date
    SubjectRe: [PATCH v2 4/7] iov_iter: new iov_iter_pin_pages*() routines
    From
    On 9/22/22 20:19, Al Viro wrote:
    > On Thu, Sep 22, 2022 at 01:29:35PM +0200, Jan Kara wrote:
    >
    >>> This rule would mostly work, as long as we can relax it in some cases, to
    >>> allow pinning of both source and dest pages, instead of just destination
    >>> pages, in some cases. In particular, bio_release_pages() has lost all
    >>> context about whether it was a read or a write request, as far as I can
    >>> tell. And bio_release_pages() is the primary place to unpin pages for
    >>> direct IO.
    >>
    >> Well, we already do have BIO_NO_PAGE_REF bio flag that gets checked in
    >> bio_release_pages(). I think we can easily spare another bio flag to tell
    >> whether we need to unpin or not. So as long as all the pages in the created
    >> bio need the same treatment, the situation should be simple.
    >
    > Yes. Incidentally, the same condition is already checked by the creators
    > of those bio - see the assorted should_dirty logics.

    Beautiful!

    >
    > While we are at it - how much of the rationale around bio_check_pages_dirty()
    > doing dirtying is still applicable with pinning pages before we stick them
    > into bio? We do dirty them before submitting bio, then on completion
    > bio_check_pages_dirty() checks if something has marked them clean while
    > we'd been doing IO; if all of them are still dirty we just drop the pages
    > (well, unpin and drop), otherwise we arrange for dirty + unpin + drop
    > done in process context (via schedule_work()). Can they be marked clean by
    > anyone while they are pinned? After all, pinning is done to prevent
    > writeback getting done on them while we are modifying the suckers...

    I certainly hope not. And in fact, we should really just say that that's
    a rule: the whole time the page is pinned, it simply must remain dirty
    and writable, at least with the way things are right now.

    This reminds me that I'm not exactly sure what the rules for
    FOLL_LONGTERM callers should be, with respect to dirtying. At the
    moment, most, if not all of the code that does "set_page_dirty_lock();
    unpin_user_page()" is wrong.

    To fix those cases, IIUC, the answer is: you must make the page dirty
    properly, with page_mkwrite(), not just with set_page_dirty_lock(). And
    that has to be done probably a lot earlier, for reasons that I'm still
    vague on. But perhaps right after pinning the page. (Assuming that we
    hold off writeback while the page is pinned.)

    Just wanted to see if that sounds right, while we're on the topic.

    thanks,

    --
    John Hubbard
    NVIDIA

    \
     
     \ /
      Last update: 2022-09-23 06:06    [W:3.437 / U:0.012 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site