<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 03:04:27 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Whamcloud Community JIRA</title>
    <link>https://jira.whamcloud.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.4.14</version>
        <build-number>940014</build-number>
        <build-date>05-12-2023</build-date>
    </build-info>


<item>
            <title>[LU-13814] DIO performance: cl_page struct removal for DIO path</title>
                <link>https://jira.whamcloud.com/browse/LU-13814</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;When doing DIO at ~10 GiB/s (see &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13798&quot; title=&quot;Improve direct i/o performance with multiple stripes: Submit all stripes of a DIO and then wait&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13798&quot;&gt;&lt;del&gt;LU-13798&lt;/del&gt;&lt;/a&gt;,&#160;&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13799&quot; title=&quot;DIO/AIO efficiency improvements&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13799&quot;&gt;&lt;del&gt;LU-13799&lt;/del&gt;&lt;/a&gt;), about 70-75% of the time is still spent on working with the cl_page struct.&lt;/p&gt;

&lt;p&gt;This means allocating it, setting it up, and then moving it around &amp;amp; managing it.&#160; We use the cl_page to track the vm pages, and in doing so, we put it on lists and move it from list to list, and update the state of the cl_page... (literally, cl_page_state)&lt;/p&gt;

&lt;p&gt;It&apos;s possible to improve this by doing cl_page allocations in batch, this results in roughly a 30% drop in time spent in cl_page work, and makes it possible to get close to 15 GiB/s.&lt;/p&gt;

&lt;p&gt;Fundamentally,&#160;&lt;b&gt;none of this is necessary for DIO&lt;/b&gt;.&#160; The cl_page struct is for tracking per-page information, but all of the pages in a DIO submission (at the ll_direct_rw_page level) are the same - They have the same owner, the same page flags, they are part of the same stripe...&#160; If we do unaligned DIO, the first and last page can have a starting &amp;amp; ending offset, but that&apos;s it, and we can associate that with the DIO itself, not the individual pages.&lt;/p&gt;

&lt;p&gt;So the proposal is to switch from using the cl_page struct to track pages in a DIO, and instead use the array of pages which describes the user buffer (ie, the kiocb and the results of ll_get_user_pages).&lt;/p&gt;

&lt;p&gt;The brw_page member of the cl_page struct seems like it will still be necessary, but this isn&apos;t such a big deal - We can allocate those separately, at a fraction of the cost of setting up and managing the full cl_page abstraction.&lt;/p&gt;

&lt;p&gt;Back of the envelope calculations suggest that this would save about 60-75% of the time in submitting DIO in the current optimized path, which performs at 10 GiB/s.&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;

&lt;p&gt;That calculation suggests we could reach single threaded DIO performance in the 25-40 GiB/s range.&#160; Presumably some other issues will prevent hitting such high rates, but I think it is reasonable to think we could reach 20+ GiB/s, with sufficient network hardware.&#160; (We will likely have to accept &quot;idle CPU time in the submitting thread while waiting for the network&quot; as a proxy indicator, since networks in the 30 GiB/s/node range are not readily available for testing.)&lt;/p&gt;

&lt;p&gt;This improvement would of course also apply to buffered i/o via this path (see &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13805&quot; title=&quot;i/o path: Unaligned direct i/o&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13805&quot;&gt;LU-13805&lt;/a&gt;), with the fast buffering version seeing a smaller benefit (but still large).&lt;/p&gt;


&lt;p&gt;This change would also likely make it easier (from a coding perspective) to move the buffer allocation &amp;amp; memcopy() in the ptlrpcd threads, which is a key part of improving the performance of the fast buffering.&lt;/p&gt;</description>
                <environment></environment>
        <key id="60086">LU-13814</key>
            <summary>DIO performance: cl_page struct removal for DIO path</summary>
                <type id="4" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11310&amp;avatarType=issuetype">Improvement</type>
                                            <priority id="3" iconUrl="https://jira.whamcloud.com/images/icons/priorities/major.svg">Major</priority>
                        <status id="1" iconUrl="https://jira.whamcloud.com/images/icons/statuses/open.png" description="The issue is open and ready for the assignee to start work on it.">Open</status>
                    <statusCategory id="2" key="new" colorName="default"/>
                                    <resolution id="-1">Unresolved</resolution>
                                        <assignee username="paf0186">Patrick Farrell</assignee>
                                    <reporter username="paf0186">Patrick Farrell</reporter>
                        <labels>
                    </labels>
                <created>Wed, 22 Jul 2020 16:59:10 +0000</created>
                <updated>Sun, 22 Oct 2023 21:32:22 +0000</updated>
                                                                                <due></due>
                            <votes>0</votes>
                                    <watches>8</watches>
                                                                            <comments>
                            <comment id="275982" author="paf0186" created="Wed, 22 Jul 2020 17:01:16 +0000"  >&lt;p&gt;This is just a proposal, unlike &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13798&quot; title=&quot;Improve direct i/o performance with multiple stripes: Submit all stripes of a DIO and then wait&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13798&quot;&gt;&lt;del&gt;LU-13798&lt;/del&gt;&lt;/a&gt; and &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13799&quot; title=&quot;DIO/AIO efficiency improvements&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13799&quot;&gt;&lt;del&gt;LU-13799&lt;/del&gt;&lt;/a&gt;, where patches exist already.&#160; (I do have a rough prototype of cl_page alloc batching if we decide to go that route.&#160; Note it cannot be used for the normal buffered i/o path, so it&apos;s only useful if we opt to not remove the cl_page usage in the DIO path.)&lt;/p&gt;</comment>
                            <comment id="383597" author="gerrit" created="Thu, 24 Aug 2023 16:31:17 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52070&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52070&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: skip lru_add for transient pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 6ec02d8bd61e8f23a4f3e0b637e7a09d7808c600&lt;/p&gt;</comment>
                            <comment id="383598" author="gerrit" created="Thu, 24 Aug 2023 16:31:18 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52071&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52071&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: Remove oap_request&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ac97d06574a22ff465046f84aed0ce66ae464fe3&lt;/p&gt;</comment>
                            <comment id="383599" author="gerrit" created="Thu, 24 Aug 2023 16:31:19 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52072&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52072&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: Remove most uses of oap_obj&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: aaf3cd13e62160cfce4550d5cf5da67c4b985d40&lt;/p&gt;</comment>
                            <comment id="383600" author="gerrit" created="Thu, 24 Aug 2023 16:31:19 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52073&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52073&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: Improve cl_io_submit_sync comments&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 37bc2cbdee3604ec72012a09ee2c71bf11d80d30&lt;/p&gt;</comment>
                            <comment id="383601" author="gerrit" created="Thu, 24 Aug 2023 16:31:20 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52074&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52074&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: remove cp_state usage for DIO pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 8a8c05649cd3dd70b67a409c33c41a6e65ceccee&lt;/p&gt;</comment>
                            <comment id="383602" author="gerrit" created="Thu, 24 Aug 2023 16:31:21 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52075&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52075&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: add io to cio_submit&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e1746f0f7fb9f20cc29bdd314efd9fda49c6f9f9&lt;/p&gt;</comment>
                            <comment id="383603" author="gerrit" created="Thu, 24 Aug 2023 16:31:21 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52076&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52076&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: Remove owner for transient pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ead6f30da29973529bca467e7154c37198161fe9&lt;/p&gt;</comment>
                            <comment id="383604" author="gerrit" created="Thu, 24 Aug 2023 16:31:22 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52077&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52077&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: add osc transient page ops&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 9403330e1e430f5cfac0b75ff4c2d0095c6a7997&lt;/p&gt;</comment>
                            <comment id="383605" author="gerrit" created="Thu, 24 Aug 2023 16:31:23 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52078&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52078&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: specialize osc_page_delete&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a3f85ed46dbdbd16fb95fd6f3c6bdcbe0bb50939&lt;/p&gt;</comment>
                            <comment id="383606" author="gerrit" created="Thu, 24 Aug 2023 16:31:23 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52079&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52079&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: Remove osc delete for transient pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f5677412a25312533c14a58e593a781d10872802&lt;/p&gt;</comment>
                            <comment id="383607" author="gerrit" created="Thu, 24 Aug 2023 16:31:24 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52080&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52080&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: remove cl_page_delete for transient&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 2be7cc9e764fa938bc423c18f54794c6d0b7acdc&lt;/p&gt;</comment>
                            <comment id="383608" author="gerrit" created="Thu, 24 Aug 2023 16:31:24 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52081&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52081&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: remove discard for transient pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: bdbfc81ca407efa46f7519b8a57e315ac4efd200&lt;/p&gt;</comment>
                            <comment id="383609" author="gerrit" created="Thu, 24 Aug 2023 16:31:25 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52082&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52082&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: further transient own/disown removal&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 3034348b25608c7bc6842df94cc34ff2d5a2f624&lt;/p&gt;</comment>
                            <comment id="383610" author="gerrit" created="Thu, 24 Aug 2023 16:31:26 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52083&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52083&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; llite: note references in direct_rw_pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: be3ff8b93a6ba60bf0a4995d0ae0e70b3f4b9c24&lt;/p&gt;</comment>
                            <comment id="383611" author="gerrit" created="Thu, 24 Aug 2023 16:31:27 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52084&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52084&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: cleanup cl_page_completion&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: dd4d60db335e495c84985fc224c6e81ba34bef1a&lt;/p&gt;</comment>
                            <comment id="383612" author="gerrit" created="Thu, 24 Aug 2023 16:31:27 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52085&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52085&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: remove cl_page_prep for transients&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 6871b93b1d5c5973802ee2e45f73d57db333f18a&lt;/p&gt;</comment>
                            <comment id="383613" author="gerrit" created="Thu, 24 Aug 2023 16:31:28 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52086&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52086&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: remove &quot;osc_page_transfer_add&quot; wrapper&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 2e0052c62b652c242134734977bcd7b28f844d49&lt;/p&gt;</comment>
                            <comment id="383614" author="gerrit" created="Thu, 24 Aug 2023 16:31:28 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52087&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52087&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: do not call osc_lru_use for transient&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: cd14cec0e6c5cf4d8b46706f8a9ebbd23d771d79&lt;/p&gt;</comment>
                            <comment id="383615" author="gerrit" created="Thu, 24 Aug 2023 16:31:29 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52088&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52088&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: transient page related cleanups&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 570715bdfdafcf83c99b90a8ef478466c10ac72f&lt;/p&gt;</comment>
                            <comment id="383616" author="paf0186" created="Thu, 24 Aug 2023 16:35:55 +0000"  >&lt;p&gt;I got inspired on this while looking at something else, but note these patches are just the beginning and probably represent the easier part.&lt;/p&gt;

&lt;p&gt;These patches make all cl_page_operations except cl_page_clip and cl_page_completion no-ops for transient pages, and add various asserts to ensure this.&lt;/p&gt;

&lt;p&gt;This set by itself should increase performance &lt;b&gt;slightly&lt;/b&gt; (not sure how much, perhaps 5-10%?), since it removes some housekeeping.&lt;/p&gt;

&lt;p&gt;The next step is to modify the ll_dio_pages structure so it can hold the other information, and begin the process of converting from using lists to using that array for DIO.&#160; This will be a fairly complicated process which will involve duplicating a fair bit of the IO submission code and just generally lots of tweaking.&lt;/p&gt;

&lt;p&gt;I haven&apos;t quite decided what the best approach for that is yet - it will result in a lengthy patch series which is only intended to be applied all at once.&#160; My current thoughts have very ugly intermediate results, so I&apos;m still hoping to find a better approach.&lt;/p&gt;</comment>
                            <comment id="383831" author="gerrit" created="Sat, 26 Aug 2023 20:28:14 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52100&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52100&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: add cl_sync_io_note batch&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 20b284b5495f0467ca7fe3b87a24963242ef4c3e&lt;/p&gt;</comment>
                            <comment id="383832" author="gerrit" created="Sat, 26 Aug 2023 20:28:15 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52101&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52101&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; llite: add to/from to ll_dio_pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 850b4e9daeba41feb087e3364eb23dc996c3d192&lt;/p&gt;</comment>
                            <comment id="383833" author="gerrit" created="Sat, 26 Aug 2023 20:28:16 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52102&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52102&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: rename ll_dio_pages to cl_dio_pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 33e29da8768baa171bf2be31f3a402e8b256909f&lt;/p&gt;</comment>
                            <comment id="383834" author="gerrit" created="Sat, 26 Aug 2023 20:28:17 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52103&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52103&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: add cdp_cl_pages tracking&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7631036a2d1236587a5150c10972bf2270cf1ebd&lt;/p&gt;</comment>
                            <comment id="383835" author="gerrit" created="Sat, 26 Aug 2023 20:28:18 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52104&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52104&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: Add cl_dio_submit_rw&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 35eb01b65f5fe594752f89e0dd8709152d4adb5c&lt;/p&gt;</comment>
                            <comment id="383836" author="gerrit" created="Sat, 26 Aug 2023 20:28:18 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52105&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52105&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: add cio_dio_submit&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4ee1fac4f68de251c047a59bd0d218b792bde1a5&lt;/p&gt;</comment>
                            <comment id="383849" author="gerrit" created="Sun, 27 Aug 2023 15:05:33 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52107&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52107&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; lov: remove non-dio handling in lov_dio_submit&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 65fff3359951c3c8950dbf0efb0a5946708cc32a&lt;/p&gt;</comment>
                            <comment id="383850" author="gerrit" created="Sun, 27 Aug 2023 15:11:26 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52108&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52108&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; vvp: remove vvp slice for transient pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4eead466e95df064c4cc16c015797386aecf0dd1&lt;/p&gt;</comment>
                            <comment id="383851" author="gerrit" created="Sun, 27 Aug 2023 18:02:59 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52109&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52109&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: add cl_dio_pages_init&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 95d3ae12b117435914024f0e9c38831596424ff7&lt;/p&gt;</comment>
                            <comment id="383852" author="gerrit" created="Sun, 27 Aug 2023 18:03:00 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52110&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52110&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; lov: add lov dio_pages_init&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 27657fe8b5f958428a7d6e782e9c6fc0e5e16ba9&lt;/p&gt;</comment>
                            <comment id="383855" author="gerrit" created="Sun, 27 Aug 2023 22:16:55 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52113&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52113&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: convert lov submit to cl_dio_pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5ff8f83a15dbb99abc2cc69c60028853309cd5e4&lt;/p&gt;</comment>
                            <comment id="383961" author="gerrit" created="Mon, 28 Aug 2023 16:21:12 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52136&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52136&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: begin adding osc_dio_submit&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 28cd869caa39a38e1018d9ccd404c17820019f18&lt;/p&gt;</comment>
                            <comment id="383962" author="gerrit" created="Mon, 28 Aug 2023 16:21:13 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52137&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52137&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: convert to vmpage&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ea1a46ba36cc3128f45e3e69530a2fb45abf1338&lt;/p&gt;</comment>
                            <comment id="383963" author="gerrit" created="Mon, 28 Aug 2023 16:21:14 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52138&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52138&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: Rearrange __osc_dio_submit&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 3e6a84e5fe58a85d782f12c55dae4e0e3650fec8&lt;/p&gt;</comment>
                            <comment id="383964" author="gerrit" created="Mon, 28 Aug 2023 16:21:15 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52139&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52139&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: clarify osc_transfer_pinned usage&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 9c9b34553d24635fd0e9d0dd413d4ab54c10dc13&lt;/p&gt;</comment>
                            <comment id="383965" author="gerrit" created="Mon, 28 Aug 2023 16:21:16 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52140&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52140&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: add osc_queue_dio_pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 121f7594af907fa1bc27edac183bd468b7c6158e&lt;/p&gt;</comment>
                            <comment id="383966" author="gerrit" created="Mon, 28 Aug 2023 16:21:16 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52141&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52141&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: cleanup osc_completion&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 8f36289c7fae423067f13c8904fa9195cf177807&lt;/p&gt;</comment>
                            <comment id="384087" author="gerrit" created="Tue, 29 Aug 2023 16:07:17 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52160&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52160&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: begin converting queue_dio_pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 9b21f4c7e529539bcdc29a968c6e355c5496d398&lt;/p&gt;</comment>
                            <comment id="384120" author="gerrit" created="Tue, 29 Aug 2023 20:52:07 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52162&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52162&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: remove last DIO queue usage&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0b6fbc8e05dcff3f15e7faaa2639f3a1ac07875f&lt;/p&gt;</comment>
                            <comment id="384132" author="gerrit" created="Tue, 29 Aug 2023 22:47:07 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52166&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52166&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: add osc_dio_pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 458f7b1455c8fc0c5a0d79ed40eac71c430a28ca&lt;/p&gt;</comment>
                            <comment id="384272" author="gerrit" created="Wed, 30 Aug 2023 19:43:31 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52187&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52187&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: use osc_dio_completion everywhere&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a128ec958e0fa91f6a8cc00f408f864ed91b00d2&lt;/p&gt;</comment>
                            <comment id="384273" author="gerrit" created="Wed, 30 Aug 2023 19:43:32 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52188&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52188&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: remove use of cp_obj&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 8f3bf9d00dd1cb0abcdebbcc0228cf4f14344e30&lt;/p&gt;</comment>
                            <comment id="384274" author="gerrit" created="Wed, 30 Aug 2023 19:43:33 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52189&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52189&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: Remove usage of cdp_cl_pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 005aeb20158327d472d54f7a89c95860ecb65090&lt;/p&gt;</comment>
                            <comment id="384463" author="gerrit" created="Thu, 31 Aug 2023 18:47:49 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52201&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52201&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: add osc pages array&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 02f91070dd324a0864e3034da7f9cb40f86dc0d5&lt;/p&gt;</comment>
                            <comment id="384469" author="gerrit" created="Thu, 31 Aug 2023 21:06:41 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52204&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52204&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: Move osc_page members to osc_async_page&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 3960ccf07c08e71e216341313890d96206efdce7&lt;/p&gt;</comment>
                            <comment id="384470" author="gerrit" created="Thu, 31 Aug 2023 21:06:42 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52205&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52205&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: rename osc_async_page&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: cdd6096217866c536ce557b694c95f98701fe772&lt;/p&gt;</comment>
                            <comment id="384471" author="gerrit" created="Thu, 31 Aug 2023 21:06:43 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52206&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52206&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: rename prep_async_page&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 25652e242be3f518fe07212e810c9266924d8d33&lt;/p&gt;</comment>
                            <comment id="384472" author="gerrit" created="Thu, 31 Aug 2023 21:06:44 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52207&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52207&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: rename osc_async_flags&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c5f83e8c3c9f97039ad27b029bcdb29f4ee33711&lt;/p&gt;</comment>
                            <comment id="384473" author="gerrit" created="Thu, 31 Aug 2023 21:06:44 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52208&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52208&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: add cp_inode to page allocation&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 9d4f0fc10762640092ec9858be2c3fd7513b5000&lt;/p&gt;</comment>
                            <comment id="384605" author="gerrit" created="Fri, 1 Sep 2023 22:01:01 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52226&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52226&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: move cp_inode to transfer page&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7c76accde9c2702905e225d77d0336de1472e15b&lt;/p&gt;</comment>
                            <comment id="384606" author="gerrit" created="Fri, 1 Sep 2023 22:01:02 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52227&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52227&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: move cp_page_index to transfer page&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5111262f5e75f5de76f548c7a511df745e8bd082&lt;/p&gt;</comment>
                            <comment id="384607" author="gerrit" created="Fri, 1 Sep 2023 22:01:03 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52228&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52228&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: replace cra_page&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c642edae871ed7f7651ecaee715deb03d8b93b6d&lt;/p&gt;</comment>
                            <comment id="384608" author="gerrit" created="Fri, 1 Sep 2023 22:11:09 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52229&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52229&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: add DIO/BIO related asserts&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5defd990f8d8a5efeac44995e3acf489fa96f26a&lt;/p&gt;</comment>
                            <comment id="384609" author="gerrit" created="Fri, 1 Sep 2023 22:11:10 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52230&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52230&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; misc: Comments for paf&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 037dfff43c0716811ae1d83dfa7990e129f4757b&lt;/p&gt;</comment>
                            <comment id="384649" author="gerrit" created="Sat, 2 Sep 2023 21:27:05 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52231&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52231&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: add cdp_osc_tpages array&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e8894d0e30323a5ad51223e5c0ed524e8f603882&lt;/p&gt;</comment>
                            <comment id="384652" author="gerrit" created="Sat, 2 Sep 2023 22:34:56 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52233&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52233&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: move srvlock to prep otp&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 297fb5277935ba7fec3496da2a9f7d580b272035&lt;/p&gt;</comment>
                            <comment id="384653" author="gerrit" created="Sat, 2 Sep 2023 22:34:57 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52234&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52234&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: move from/to to otp prep&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 88e36c084dd35980d8b3853990106f81b42dee5e&lt;/p&gt;</comment>
                            <comment id="384654" author="gerrit" created="Sat, 2 Sep 2023 22:34:57 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52235&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52235&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: rename osc_prep_transfer_page&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 040f23ded954db5b42930e4554167948c417e134&lt;/p&gt;</comment>
                            <comment id="384656" author="gerrit" created="Sun, 3 Sep 2023 02:35:02 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52236&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52236&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: remove cl_page from transfer_page_init&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 911443d0fef890a8a09180a45b3c9401ce70ab0f&lt;/p&gt;</comment>
                            <comment id="384657" author="gerrit" created="Sun, 3 Sep 2023 02:35:04 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52237&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52237&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: disambiguate count and page count&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b2f6dd80bcbcaf154e2a131b2ba660c169ba7b15&lt;/p&gt;</comment>
                            <comment id="384658" author="gerrit" created="Sun, 3 Sep 2023 02:35:05 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52238&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52238&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: rename cdp_count&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5b21d43846023a757108d21225019bfb1115a07d&lt;/p&gt;</comment>
                            <comment id="384679" author="gerrit" created="Sun, 3 Sep 2023 23:02:56 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52250&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52250&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: move lru_page_list back to osc_page&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e646da345021d2a22ac99078cd528408c75e9fbf&lt;/p&gt;</comment>
                            <comment id="384680" author="gerrit" created="Sun, 3 Sep 2023 23:02:57 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52251&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52251&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: move osc_object to osc_page&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0e4361444852d562d0044b3d0b150b307b73f4c3&lt;/p&gt;</comment>
                            <comment id="384681" author="gerrit" created="Sun, 3 Sep 2023 23:02:57 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52252&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52252&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: move transfer_pinned to osc_page&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 333be66db703af2fbf510d043716ac5a69e19f50&lt;/p&gt;</comment>
                            <comment id="384682" author="gerrit" created="Sun, 3 Sep 2023 23:02:58 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52253&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52253&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: move in_lru to osc_page&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 14d47ba60dadc31f9f2edc17af50ec84005a6635&lt;/p&gt;</comment>
                            <comment id="384683" author="gerrit" created="Sun, 3 Sep 2023 23:02:59 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52254&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52254&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: move intree to osc_page&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 34278614ba9e3e9b650e18779a53d95fa137e4fc&lt;/p&gt;</comment>
                            <comment id="384684" author="gerrit" created="Sun, 3 Sep 2023 23:03:00 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52255&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52255&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: remove otp_from&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: d63652c77216040621c46d71ae8fd39531aea127&lt;/p&gt;</comment>
                            <comment id="384685" author="gerrit" created="Sun, 3 Sep 2023 23:03:01 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52256&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52256&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: remove otp_to&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c9d5ac60f4a625b3ca2a0a77f8e6151c8c9eb5a6&lt;/p&gt;</comment>
                            <comment id="384689" author="gerrit" created="Mon, 4 Sep 2023 02:38:05 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52257&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52257&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: minor function relocation&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 59088bcb0285c777877e6ddd9b774038de5a8d8b&lt;/p&gt;</comment>
                            <comment id="384745" author="gerrit" created="Tue, 5 Sep 2023 00:28:08 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52268&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52268&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: add brw flags to osc_extent&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 802c143823a2076bcca2375b2d11c12aa67ba592&lt;/p&gt;</comment>
                            <comment id="384825" author="gerrit" created="Tue, 5 Sep 2023 16:37:36 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52277&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52277&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: note if cdp is initialized&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 87ca9e918c61d2e07c649caf38a61f17df8d3996&lt;/p&gt;</comment>
                            <comment id="385212" author="gerrit" created="Thu, 7 Sep 2023 21:46:36 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52315&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52315&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: remove cl_page allocation for DIO&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: de05600697a946014f68b8482ca03ef055ebda04&lt;/p&gt;</comment>
                            <comment id="385408" author="gerrit" created="Sun, 10 Sep 2023 04:16:37 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52331&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52331&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: add otp_type&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c8fbd26ed1a155c8476281e2540821de6f4299dc&lt;/p&gt;</comment>
                            <comment id="385422" author="gerrit" created="Sun, 10 Sep 2023 16:53:46 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52333&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52333&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: fix packing of OSC/OTP pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f51a44ec109280991a6413c22eea9edeef54d142&lt;/p&gt;</comment>
                            <comment id="386092" author="gerrit" created="Fri, 15 Sep 2023 03:34:05 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52382&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52382&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: assert transfer pages identical&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 64bcbee8f74fba80a4d5cde16e1053b6b9c319fe&lt;/p&gt;</comment>
                            <comment id="386097" author="gerrit" created="Fri, 15 Sep 2023 04:24:17 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52383&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: add inode to cl_dio_pages_init&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 623843b73173a753b52db0eb6e0978473813bfcd&lt;/p&gt;</comment>
                            <comment id="386253" author="gerrit" created="Sun, 17 Sep 2023 18:13:02 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52399&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52399&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; llite: refactor ll_direct_rw_pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 53b7b2d953103b689a1447a0e043a31670617c46&lt;/p&gt;</comment>
                            <comment id="387052" author="gerrit" created="Sun, 24 Sep 2023 20:07:19 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52492&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52492&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: rename pvec to cdp&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 1e8bc31222a752cfb16ec5e4d59a030b387deef0&lt;/p&gt;</comment>
                            <comment id="387053" author="gerrit" created="Sun, 24 Sep 2023 21:54:16 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52493&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52493&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; llite: fix RDMA only check for DIO pages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 309cee34ec7de08554c69c819bd279526cf95d21&lt;/p&gt;</comment>
                            <comment id="387326" author="gerrit" created="Tue, 26 Sep 2023 19:44:38 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52518&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52518&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: testing&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5453a80312f4b805a941f67c2afa9fa88ccc0c96&lt;/p&gt;</comment>
                            <comment id="389247" author="gerrit" created="Fri, 13 Oct 2023 15:43:27 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52690&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52690&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: disable careful ENOSPC handling&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 1f4c8fbca389b5156196b5069a677eedacd05f83&lt;/p&gt;</comment>
                            <comment id="390178" author="gerrit" created="Sun, 22 Oct 2023 18:34:04 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52786&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52786&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: remove aa_oaps list&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5671b49a662486e43b14b3edd99255eb29c02eb5&lt;/p&gt;</comment>
                            <comment id="390179" author="gerrit" created="Sun, 22 Oct 2023 18:34:05 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52787&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52787&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; clio: add cdp_inode&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 3f4d304eee4554ac6ddb2ed527ea66647a91467f&lt;/p&gt;</comment>
                            <comment id="390180" author="gerrit" created="Sun, 22 Oct 2023 18:34:06 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52788&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52788&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: move otp_obj to osc page&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4656397bb80592741e496bd8fd7bee397fc1c674&lt;/p&gt;</comment>
                            <comment id="390181" author="gerrit" created="Sun, 22 Oct 2023 18:34:07 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52789&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52789&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: remove otp_srvlock&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5c3dbb1ed37a923896d0dab8701f229c445324eb&lt;/p&gt;</comment>
                            <comment id="390182" author="gerrit" created="Sun, 22 Oct 2023 18:34:07 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52790&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52790&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: remove otp_cmd&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4b3284063e3db038dae3f75fb1ac3ab8e2d2188e&lt;/p&gt;</comment>
                            <comment id="390183" author="gerrit" created="Sun, 22 Oct 2023 18:34:08 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52791&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52791&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: remove otp_page_off&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 46ad1e8000b261d992cd9eb6a82919633b541703&lt;/p&gt;</comment>
                            <comment id="390184" author="gerrit" created="Sun, 22 Oct 2023 18:34:09 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52792&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52792&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: remove otp_inode&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 2c3106326c62cbe98a33153b567698e621846e2d&lt;/p&gt;</comment>
                            <comment id="390187" author="gerrit" created="Sun, 22 Oct 2023 21:32:21 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52795&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52795&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: remove oo_oaps&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ea96a13cb49d9569a1fad7ac45176c30d4ca4fe8&lt;/p&gt;</comment>
                            <comment id="390188" author="gerrit" created="Sun, 22 Oct 2023 21:32:21 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52796&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52796&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: remove otp_rpc_item list&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ac367ae779f0122e6601b38e17ce4028b9bddaa9&lt;/p&gt;</comment>
                            <comment id="390189" author="gerrit" created="Sun, 22 Oct 2023 21:32:22 +0000"  >&lt;p&gt;&quot;Patrick Farrell &amp;lt;pfarrell@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52797&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52797&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13814&quot; title=&quot;DIO performance: cl_page struct removal for DIO path&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13814&quot;&gt;LU-13814&lt;/a&gt; osc: add osc_transfer_page comments&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: d7104f23614ac21eb4216c08ebc7af56cea700a1&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="60017">LU-13802</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="60010">LU-13799</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="60032">LU-13805</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78385">LU-17194</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="60009">LU-13798</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|i015wn:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>