Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1467340 > unrolled thread
| Started by | "Leizhen (ThunderTown)" <thunder.leizhen@huawei.com> |
|---|---|
| First post | 2016-08-22 06:20 +0200 |
| Last post | 2016-08-25 07:00 +0200 |
| Articles | 6 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH 1/1] arm64/hugetlb: clear PG_dcache_clean if the page is dirty when munmap "Leizhen (ThunderTown)" <thunder.leizhen@huawei.com> - 2016-08-22 06:20 +0200
Re: [PATCH 1/1] arm64/hugetlb: clear PG_dcache_clean if the page is dirty when munmap Catalin Marinas <catalin.marinas@arm.com> - 2016-08-23 19:40 +0200
Re: [PATCH 1/1] arm64/hugetlb: clear PG_dcache_clean if the page is dirty when munmap "Leizhen (ThunderTown)" <thunder.leizhen@huawei.com> - 2016-08-24 03:40 +0200
Re: [PATCH 1/1] arm64/hugetlb: clear PG_dcache_clean if the page is dirty when munmap "Leizhen (ThunderTown)" <thunder.leizhen@huawei.com> - 2016-08-24 11:10 +0200
Re: [PATCH 1/1] arm64/hugetlb: clear PG_dcache_clean if the page is dirty when munmap Catalin Marinas <catalin.marinas@arm.com> - 2016-08-24 12:40 +0200
Re: [PATCH 1/1] arm64/hugetlb: clear PG_dcache_clean if the page is dirty when munmap "Leizhen (ThunderTown)" <thunder.leizhen@huawei.com> - 2016-08-25 07:00 +0200
| From | "Leizhen (ThunderTown)" <thunder.leizhen@huawei.com> |
|---|---|
| Date | 2016-08-22 06:20 +0200 |
| Subject | Re: [PATCH 1/1] arm64/hugetlb: clear PG_dcache_clean if the page is dirty when munmap |
| Message-ID | <s8OSl-1ib-11@gated-at.bofh.it> |
On 2016/7/20 17:19, Catalin Marinas wrote: > On Wed, Jul 20, 2016 at 10:46:27AM +0800, Leizhen (ThunderTown) wrote: >>>>>> On 2016/7/8 21:54, Catalin Marinas wrote: >>>>>>> ------------8<---------------- >>>>>>> diff --git a/arch/arm64/mm/flush.c b/arch/arm64/mm/flush.c >>>>>>> index dbd12ea8ce68..c753fa804165 100644 >>>>>>> --- a/arch/arm64/mm/flush.c >>>>>>> +++ b/arch/arm64/mm/flush.c >>>>>>> @@ -75,7 +75,8 @@ void __sync_icache_dcache(pte_t pte, unsigned long addr) >>>>>>> if (!page_mapping(page)) >>>>>>> return; >>>>>>> >>>>>>> - if (!test_and_set_bit(PG_dcache_clean, &page->flags)) >>>>>>> + if (!test_and_set_bit(PG_dcache_clean, &page->flags) || >>>>>>> + PageDirty(page)) >>>>>>> sync_icache_aliases(page_address(page), >>>>>>> PAGE_SIZE << compound_order(page)); >>>>>>> else if (icache_is_aivivt()) >>>>>>> ----------------8<--------------------- >> >> Do you plan to send this patch? My colleagues told me that if our >> patches are quite different, it should be Signed-off-by you. > > The reason I'm not sending it is that I don't fully understand how it > solves the problem for a shared file mmap(), not just hugetlbfs. As I > said in an earlier email: after an msync() in user space we > should flush the pages to disk via write_cache_pages(). This function Hi Catalin: I'm so sorry for my fault. The previous small pages test result I actually ran on ramfs. Today, I ran the case on harddisk fs, it worked well without this patch. Summarized as follows: small pages on ramfs: need this patch small pages on harddisk fs: no need this patch hugetlbfs: need this patch > calls clear_page_dirty_for_io() after which PageDirty() is no longer > true. I can't tell how a subsequent mmap() can see the written pages as > dirty. > >> I searched all Linux source code, __sync_icache_dcache is only called >> by set_pte_at, and some check conditions(especially pte_exec) will >> limit its impact. >> >> if (pte_user(pte) && pte_exec(pte) && !pte_special(pte)) >> __sync_icache_dcache(pte, addr); > > Yes, and set_pte_at() would be called as a result of a page fault when > accessing the mmap'ed file. >
[toc] | [next] | [standalone]
| From | Catalin Marinas <catalin.marinas@arm.com> |
|---|---|
| Date | 2016-08-23 19:40 +0200 |
| Message-ID | <s9nQ6-76I-23@gated-at.bofh.it> |
| In reply to | #1467340 |
On Mon, Aug 22, 2016 at 12:19:04PM +0800, Leizhen (ThunderTown) wrote: > On 2016/7/20 17:19, Catalin Marinas wrote: > > On Wed, Jul 20, 2016 at 10:46:27AM +0800, Leizhen (ThunderTown) wrote: > >>>>>> On 2016/7/8 21:54, Catalin Marinas wrote: > >>>>>>> ------------8<---------------- > >>>>>>> diff --git a/arch/arm64/mm/flush.c b/arch/arm64/mm/flush.c > >>>>>>> index dbd12ea8ce68..c753fa804165 100644 > >>>>>>> --- a/arch/arm64/mm/flush.c > >>>>>>> +++ b/arch/arm64/mm/flush.c > >>>>>>> @@ -75,7 +75,8 @@ void __sync_icache_dcache(pte_t pte, unsigned long addr) > >>>>>>> if (!page_mapping(page)) > >>>>>>> return; > >>>>>>> > >>>>>>> - if (!test_and_set_bit(PG_dcache_clean, &page->flags)) > >>>>>>> + if (!test_and_set_bit(PG_dcache_clean, &page->flags) || > >>>>>>> + PageDirty(page)) > >>>>>>> sync_icache_aliases(page_address(page), > >>>>>>> PAGE_SIZE << compound_order(page)); > >>>>>>> else if (icache_is_aivivt()) > >>>>>>> ----------------8<--------------------- > >> > >> Do you plan to send this patch? My colleagues told me that if our > >> patches are quite different, it should be Signed-off-by you. > > > > The reason I'm not sending it is that I don't fully understand how it > > solves the problem for a shared file mmap(), not just hugetlbfs. As I > > said in an earlier email: after an msync() in user space we > > should flush the pages to disk via write_cache_pages(). This function > Hi Catalin: > I'm so sorry for my fault. The previous small pages test result I actually ran on ramfs. > Today, I ran the case on harddisk fs, it worked well without this patch. > > Summarized as follows: > small pages on ramfs: need this patch > small pages on harddisk fs: no need this patch > hugetlbfs: need this patch I would add: small pages over nfs: fails with or without this patch (tested on Juno, Cortex-A57; seems to be fixed if I remove the PG_dcache_clean test altogether but, well, we end up over-flushing) I assume that when using a hard drive, it goes through the block I/O layer and we may have a flush_dcache_page() called when the kernel is about to read a page that has been mapped in user space. This would clear the PG_dcache_clean bit and subsequent __sync_icache_dcache() would perform cache maintenance. Could you try on your system the test case without the msync() call? I'm not sure whether munmap() would trigger an immediate write-back, in which case we may see the issue even with the filesystem on a hard drive. -- Catalin
[toc] | [prev] | [next] | [standalone]
| From | "Leizhen (ThunderTown)" <thunder.leizhen@huawei.com> |
|---|---|
| Date | 2016-08-24 03:40 +0200 |
| Message-ID | <s9vkB-3Eh-15@gated-at.bofh.it> |
| In reply to | #1468746 |
On 2016/8/24 1:28, Catalin Marinas wrote: > On Mon, Aug 22, 2016 at 12:19:04PM +0800, Leizhen (ThunderTown) wrote: >> On 2016/7/20 17:19, Catalin Marinas wrote: >>> On Wed, Jul 20, 2016 at 10:46:27AM +0800, Leizhen (ThunderTown) wrote: >>>>>>>> On 2016/7/8 21:54, Catalin Marinas wrote: >>>>>>>>> ------------8<---------------- >>>>>>>>> diff --git a/arch/arm64/mm/flush.c b/arch/arm64/mm/flush.c >>>>>>>>> index dbd12ea8ce68..c753fa804165 100644 >>>>>>>>> --- a/arch/arm64/mm/flush.c >>>>>>>>> +++ b/arch/arm64/mm/flush.c >>>>>>>>> @@ -75,7 +75,8 @@ void __sync_icache_dcache(pte_t pte, unsigned long addr) >>>>>>>>> if (!page_mapping(page)) >>>>>>>>> return; >>>>>>>>> >>>>>>>>> - if (!test_and_set_bit(PG_dcache_clean, &page->flags)) >>>>>>>>> + if (!test_and_set_bit(PG_dcache_clean, &page->flags) || >>>>>>>>> + PageDirty(page)) >>>>>>>>> sync_icache_aliases(page_address(page), >>>>>>>>> PAGE_SIZE << compound_order(page)); >>>>>>>>> else if (icache_is_aivivt()) >>>>>>>>> ----------------8<--------------------- >>>> >>>> Do you plan to send this patch? My colleagues told me that if our >>>> patches are quite different, it should be Signed-off-by you. >>> >>> The reason I'm not sending it is that I don't fully understand how it >>> solves the problem for a shared file mmap(), not just hugetlbfs. As I >>> said in an earlier email: after an msync() in user space we >>> should flush the pages to disk via write_cache_pages(). This function >> Hi Catalin: >> I'm so sorry for my fault. The previous small pages test result I actually ran on ramfs. >> Today, I ran the case on harddisk fs, it worked well without this patch. >> >> Summarized as follows: >> small pages on ramfs: need this patch >> small pages on harddisk fs: no need this patch >> hugetlbfs: need this patch > > I would add: > > small pages over nfs: fails with or without this patch > > (tested on Juno, Cortex-A57; seems to be fixed if I remove the > PG_dcache_clean test altogether but, well, we end up over-flushing) > > I assume that when using a hard drive, it goes through the block I/O > layer and we may have a flush_dcache_page() called when the kernel is > about to read a page that has been mapped in user space. This would > clear the PG_dcache_clean bit and subsequent __sync_icache_dcache() > would perform cache maintenance. > > Could you try on your system the test case without the msync() call? I'm > not sure whether munmap() would trigger an immediate write-back, in > which case we may see the issue even with the filesystem on a hard > drive. OK, no problem. I will do it today or tomorrow. >
[toc] | [prev] | [next] | [standalone]
| From | "Leizhen (ThunderTown)" <thunder.leizhen@huawei.com> |
|---|---|
| Date | 2016-08-24 11:10 +0200 |
| Message-ID | <s9Cm6-8m-19@gated-at.bofh.it> |
| In reply to | #1468746 |
On 2016/8/24 1:28, Catalin Marinas wrote: > On Mon, Aug 22, 2016 at 12:19:04PM +0800, Leizhen (ThunderTown) wrote: >> On 2016/7/20 17:19, Catalin Marinas wrote: >>> On Wed, Jul 20, 2016 at 10:46:27AM +0800, Leizhen (ThunderTown) wrote: >>>>>>>> On 2016/7/8 21:54, Catalin Marinas wrote: >>>>>>>>> ------------8<---------------- >>>>>>>>> diff --git a/arch/arm64/mm/flush.c b/arch/arm64/mm/flush.c >>>>>>>>> index dbd12ea8ce68..c753fa804165 100644 >>>>>>>>> --- a/arch/arm64/mm/flush.c >>>>>>>>> +++ b/arch/arm64/mm/flush.c >>>>>>>>> @@ -75,7 +75,8 @@ void __sync_icache_dcache(pte_t pte, unsigned long addr) >>>>>>>>> if (!page_mapping(page)) >>>>>>>>> return; >>>>>>>>> >>>>>>>>> - if (!test_and_set_bit(PG_dcache_clean, &page->flags)) >>>>>>>>> + if (!test_and_set_bit(PG_dcache_clean, &page->flags) || >>>>>>>>> + PageDirty(page)) >>>>>>>>> sync_icache_aliases(page_address(page), >>>>>>>>> PAGE_SIZE << compound_order(page)); >>>>>>>>> else if (icache_is_aivivt()) >>>>>>>>> ----------------8<--------------------- >>>> >>>> Do you plan to send this patch? My colleagues told me that if our >>>> patches are quite different, it should be Signed-off-by you. >>> >>> The reason I'm not sending it is that I don't fully understand how it >>> solves the problem for a shared file mmap(), not just hugetlbfs. As I >>> said in an earlier email: after an msync() in user space we >>> should flush the pages to disk via write_cache_pages(). This function >> Hi Catalin: >> I'm so sorry for my fault. The previous small pages test result I actually ran on ramfs. >> Today, I ran the case on harddisk fs, it worked well without this patch. >> >> Summarized as follows: >> small pages on ramfs: need this patch >> small pages on harddisk fs: no need this patch >> hugetlbfs: need this patch > > I would add: > > small pages over nfs: fails with or without this patch > > (tested on Juno, Cortex-A57; seems to be fixed if I remove the > PG_dcache_clean test altogether but, well, we end up over-flushing) > > I assume that when using a hard drive, it goes through the block I/O > layer and we may have a flush_dcache_page() called when the kernel is > about to read a page that has been mapped in user space. This would > clear the PG_dcache_clean bit and subsequent __sync_icache_dcache() > would perform cache maintenance. > > Could you try on your system the test case without the msync() call? I'm According to my test results: without msync, the test case may failed. 10-175-112-211:~ # ./tst_small_page_no_msync Test is Failed: The result is 0x316b9, expect = 0x365a5 10-175-112-211:~ # ./tst_small_page_no_msync Test is Failed: The result is 0x31023, expect = 0x31efa 10-175-112-211:~ # ./tst_small_page_no_msync Test is Passed: The result is 0x31efa, expect = 0x31efa 10-175-112-211:~ # ./tst_small_page Test is Passed: The result is 0x31eb7, expect = 0x31eb7 10-175-112-211:~ # ./tst_small_page Test is Passed: The result is 0x3111f, expect = 0x3111f 10-175-112-211:~ # ./tst_small_page Test is Passed: The result is 0x3111f, expect = 0x3111f > not sure whether munmap() would trigger an immediate write-back, in > which case we may see the issue even with the filesystem on a hard > drive. >
[toc] | [prev] | [next] | [standalone]
| From | Catalin Marinas <catalin.marinas@arm.com> |
|---|---|
| Date | 2016-08-24 12:40 +0200 |
| Message-ID | <s9DLb-ZJ-5@gated-at.bofh.it> |
| In reply to | #1469241 |
On Wed, Aug 24, 2016 at 05:00:50PM +0800, Leizhen (ThunderTown) wrote: > > > On 2016/8/24 1:28, Catalin Marinas wrote: > > On Mon, Aug 22, 2016 at 12:19:04PM +0800, Leizhen (ThunderTown) wrote: > >> On 2016/7/20 17:19, Catalin Marinas wrote: > >>> On Wed, Jul 20, 2016 at 10:46:27AM +0800, Leizhen (ThunderTown) wrote: > >>>>>>>> On 2016/7/8 21:54, Catalin Marinas wrote: > >>>>>>>>> ------------8<---------------- > >>>>>>>>> diff --git a/arch/arm64/mm/flush.c b/arch/arm64/mm/flush.c > >>>>>>>>> index dbd12ea8ce68..c753fa804165 100644 > >>>>>>>>> --- a/arch/arm64/mm/flush.c > >>>>>>>>> +++ b/arch/arm64/mm/flush.c > >>>>>>>>> @@ -75,7 +75,8 @@ void __sync_icache_dcache(pte_t pte, unsigned long addr) > >>>>>>>>> if (!page_mapping(page)) > >>>>>>>>> return; > >>>>>>>>> > >>>>>>>>> - if (!test_and_set_bit(PG_dcache_clean, &page->flags)) > >>>>>>>>> + if (!test_and_set_bit(PG_dcache_clean, &page->flags) || > >>>>>>>>> + PageDirty(page)) > >>>>>>>>> sync_icache_aliases(page_address(page), > >>>>>>>>> PAGE_SIZE << compound_order(page)); > >>>>>>>>> else if (icache_is_aivivt()) > >>>>>>>>> ----------------8<--------------------- > >>>> > >>>> Do you plan to send this patch? My colleagues told me that if our > >>>> patches are quite different, it should be Signed-off-by you. > >>> > >>> The reason I'm not sending it is that I don't fully understand how it > >>> solves the problem for a shared file mmap(), not just hugetlbfs. As I > >>> said in an earlier email: after an msync() in user space we > >>> should flush the pages to disk via write_cache_pages(). This function > >> Hi Catalin: > >> I'm so sorry for my fault. The previous small pages test result I actually ran on ramfs. > >> Today, I ran the case on harddisk fs, it worked well without this patch. > >> > >> Summarized as follows: > >> small pages on ramfs: need this patch > >> small pages on harddisk fs: no need this patch > >> hugetlbfs: need this patch > > > > I would add: > > > > small pages over nfs: fails with or without this patch > > > > (tested on Juno, Cortex-A57; seems to be fixed if I remove the > > PG_dcache_clean test altogether but, well, we end up over-flushing) > > > > I assume that when using a hard drive, it goes through the block I/O > > layer and we may have a flush_dcache_page() called when the kernel is > > about to read a page that has been mapped in user space. This would > > clear the PG_dcache_clean bit and subsequent __sync_icache_dcache() > > would perform cache maintenance. > > > > Could you try on your system the test case without the msync() call? I'm > > According to my test results: without msync, the test case may failed. Thanks. Just to be clear, does the test generate a file on on a hard drive? > 10-175-112-211:~ # ./tst_small_page_no_msync > Test is Failed: The result is 0x316b9, expect = 0x365a5 > 10-175-112-211:~ # ./tst_small_page_no_msync > Test is Failed: The result is 0x31023, expect = 0x31efa > 10-175-112-211:~ # ./tst_small_page_no_msync > Test is Passed: The result is 0x31efa, expect = 0x31efa > > 10-175-112-211:~ # ./tst_small_page > Test is Passed: The result is 0x31eb7, expect = 0x31eb7 > 10-175-112-211:~ # ./tst_small_page > Test is Passed: The result is 0x3111f, expect = 0x3111f > 10-175-112-211:~ # ./tst_small_page > Test is Passed: The result is 0x3111f, expect = 0x3111f How many tests did you run for the "passed" case? With NFS it may sometime take minutes before a failure (I use the "watch" command with a slightly modified test to return non-zero in case of value mismatch). While we indeed see failures on multiple filesystem types, I wonder whether this test case is actually expected to work. If I modify the test to pass O_TRUNC to open(), I can no longer see failures. So any standard tool that copies/creates executable files (gcc, dpkg, cp, rsync etc.) wouldn't encounter such issues since they truncate the original file and old page cache pages would be removed. Do you have a real use-case where a task mmap's an executable file, modifies it in place and expects another task to see the new instructions without user-space cache maintenance? -- Catalin
[toc] | [prev] | [next] | [standalone]
| From | "Leizhen (ThunderTown)" <thunder.leizhen@huawei.com> |
|---|---|
| Date | 2016-08-25 07:00 +0200 |
| Message-ID | <s9UVH-4Gy-5@gated-at.bofh.it> |
| In reply to | #1469318 |
On 2016/8/24 18:30, Catalin Marinas wrote: > On Wed, Aug 24, 2016 at 05:00:50PM +0800, Leizhen (ThunderTown) wrote: >> >> >> On 2016/8/24 1:28, Catalin Marinas wrote: >>> On Mon, Aug 22, 2016 at 12:19:04PM +0800, Leizhen (ThunderTown) wrote: >>>> On 2016/7/20 17:19, Catalin Marinas wrote: >>>>> On Wed, Jul 20, 2016 at 10:46:27AM +0800, Leizhen (ThunderTown) wrote: >>>>>>>>>> On 2016/7/8 21:54, Catalin Marinas wrote: >>>>>>>>>>> ------------8<---------------- >>>>>>>>>>> diff --git a/arch/arm64/mm/flush.c b/arch/arm64/mm/flush.c >>>>>>>>>>> index dbd12ea8ce68..c753fa804165 100644 >>>>>>>>>>> --- a/arch/arm64/mm/flush.c >>>>>>>>>>> +++ b/arch/arm64/mm/flush.c >>>>>>>>>>> @@ -75,7 +75,8 @@ void __sync_icache_dcache(pte_t pte, unsigned long addr) >>>>>>>>>>> if (!page_mapping(page)) >>>>>>>>>>> return; >>>>>>>>>>> >>>>>>>>>>> - if (!test_and_set_bit(PG_dcache_clean, &page->flags)) >>>>>>>>>>> + if (!test_and_set_bit(PG_dcache_clean, &page->flags) || >>>>>>>>>>> + PageDirty(page)) >>>>>>>>>>> sync_icache_aliases(page_address(page), >>>>>>>>>>> PAGE_SIZE << compound_order(page)); >>>>>>>>>>> else if (icache_is_aivivt()) >>>>>>>>>>> ----------------8<--------------------- >>>>>> >>>>>> Do you plan to send this patch? My colleagues told me that if our >>>>>> patches are quite different, it should be Signed-off-by you. >>>>> >>>>> The reason I'm not sending it is that I don't fully understand how it >>>>> solves the problem for a shared file mmap(), not just hugetlbfs. As I >>>>> said in an earlier email: after an msync() in user space we >>>>> should flush the pages to disk via write_cache_pages(). This function >>>> Hi Catalin: >>>> I'm so sorry for my fault. The previous small pages test result I actually ran on ramfs. >>>> Today, I ran the case on harddisk fs, it worked well without this patch. >>>> >>>> Summarized as follows: >>>> small pages on ramfs: need this patch >>>> small pages on harddisk fs: no need this patch >>>> hugetlbfs: need this patch >>> >>> I would add: >>> >>> small pages over nfs: fails with or without this patch >>> >>> (tested on Juno, Cortex-A57; seems to be fixed if I remove the >>> PG_dcache_clean test altogether but, well, we end up over-flushing) >>> >>> I assume that when using a hard drive, it goes through the block I/O >>> layer and we may have a flush_dcache_page() called when the kernel is >>> about to read a page that has been mapped in user space. This would >>> clear the PG_dcache_clean bit and subsequent __sync_icache_dcache() >>> would perform cache maintenance. >>> >>> Could you try on your system the test case without the msync() call? I'm >> >> According to my test results: without msync, the test case may failed. > > Thanks. Just to be clear, does the test generate a file on on a hard > drive? Yes. I checked that the intermediate file had been generated. > >> 10-175-112-211:~ # ./tst_small_page_no_msync >> Test is Failed: The result is 0x316b9, expect = 0x365a5 >> 10-175-112-211:~ # ./tst_small_page_no_msync >> Test is Failed: The result is 0x31023, expect = 0x31efa >> 10-175-112-211:~ # ./tst_small_page_no_msync >> Test is Passed: The result is 0x31efa, expect = 0x31efa >> >> 10-175-112-211:~ # ./tst_small_page >> Test is Passed: The result is 0x31eb7, expect = 0x31eb7 >> 10-175-112-211:~ # ./tst_small_page >> Test is Passed: The result is 0x3111f, expect = 0x3111f >> 10-175-112-211:~ # ./tst_small_page >> Test is Passed: The result is 0x3111f, expect = 0x3111f > > How many tests did you run for the "passed" case? With NFS it may I ran ./tst_small_page_no_msync and ./tst_small_page 10 times for each. > sometime take minutes before a failure (I use the "watch" command with a > slightly modified test to return non-zero in case of value mismatch). > > While we indeed see failures on multiple filesystem types, I wonder > whether this test case is actually expected to work. If I modify the > test to pass O_TRUNC to open(), I can no longer see failures. So any > standard tool that copies/creates executable files (gcc, dpkg, cp, rsync > etc.) wouldn't encounter such issues since they truncate the original > file and old page cache pages would be removed. > > Do you have a real use-case where a task mmap's an executable file, > modifies it in place and expects another task to see the new > instructions without user-space cache maintenance? No, it's just a test case created by testers. >
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web