diff for duplicates of <20141122193322.GN3401@cbox> diff --git a/a/content_digest b/N1/content_digest index 04be777..f072805 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,8 +1,23 @@ + "ref\01415930268-7674-1-git-send-email-m.smarduch@samsung.com\0" "ref\01415930268-7674-6-git-send-email-m.smarduch@samsung.com\0" "From\0Christoffer Dall <christoffer.dall@linaro.org>\0" "Subject\0Re: [PATCH v14 5/7] KVM: arm: Add initial dirty page locking support\0" "Date\0Sat, 22 Nov 2014 19:33:22 +0000\0" - "To\0kvm-ia64@vger.kernel.org\0" + "To\0Mario Smarduch <m.smarduch@samsung.com>\0" + "Cc\0pbonzini@redhat.com" + james.hogan@imgtec.com + agraf@suse.de + marc.zyngier@arm.com + cornelia.huck@de.ibm.com + borntraeger@de.ibm.com + catalin.marinas@arm.com + kvmarm@lists.cs.columbia.edu + kvm@vger.kernel.org + kvm-ppc@vger.kernel.org + kvm-ia64@vger.kernel.org + linux-arm-kernel@lists.infradead.org + steve.capper@arm.com + " peter.maydell@linaro.org\0" "\00:1\0" "b\0" "On Thu, Nov 13, 2014 at 05:57:46PM -0800, Mario Smarduch wrote:\n" @@ -249,4 +264,4 @@ "Thanks,\n" -Christoffer -f0a33fe1ece9bb560a3cf1c57599cc18e78aa8cb015d1973ea974d6b844a5344 +50473135169d2344c6077eeb22c82d9a6a169e544e72b9780ebedb4b78f7e7a0
diff --git a/a/1.txt b/N2/1.txt index 75db1c2..b3a44a2 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -37,7 +37,7 @@ On Thu, Nov 13, 2014 at 05:57:46PM -0800, Mario Smarduch wrote: > + > +static inline bool kvm_s2pte_readonly(pte_t *pte) > +{ -> + return (pte_val(*pte) & L_PTE_S2_RDWR) = L_PTE_S2_RDONLY; +> + return (pte_val(*pte) & L_PTE_S2_RDWR) == L_PTE_S2_RDONLY; > +} > + > +static inline void kvm_set_s2pmd_readonly(pmd_t *pmd) @@ -47,7 +47,7 @@ On Thu, Nov 13, 2014 at 05:57:46PM -0800, Mario Smarduch wrote: > + > +static inline bool kvm_s2pmd_readonly(pmd_t *pmd) > +{ -> + return (pmd_val(*pmd) & L_PMD_S2_RDWR) = L_PMD_S2_RDONLY; +> + return (pmd_val(*pmd) & L_PMD_S2_RDWR) == L_PMD_S2_RDONLY; > +} > + > /* Open coded p*d_addr_end that can deal with 64bit addresses */ diff --git a/a/content_digest b/N2/content_digest index 04be777..8cc81ba 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -1,8 +1,9 @@ + "ref\01415930268-7674-1-git-send-email-m.smarduch@samsung.com\0" "ref\01415930268-7674-6-git-send-email-m.smarduch@samsung.com\0" - "From\0Christoffer Dall <christoffer.dall@linaro.org>\0" - "Subject\0Re: [PATCH v14 5/7] KVM: arm: Add initial dirty page locking support\0" - "Date\0Sat, 22 Nov 2014 19:33:22 +0000\0" - "To\0kvm-ia64@vger.kernel.org\0" + "From\0christoffer.dall@linaro.org (Christoffer Dall)\0" + "Subject\0[PATCH v14 5/7] KVM: arm: Add initial dirty page locking support\0" + "Date\0Sat, 22 Nov 2014 20:33:22 +0100\0" + "To\0linux-arm-kernel@lists.infradead.org\0" "\00:1\0" "b\0" "On Thu, Nov 13, 2014 at 05:57:46PM -0800, Mario Smarduch wrote:\n" @@ -44,7 +45,7 @@ "> +\n" "> +static inline bool kvm_s2pte_readonly(pte_t *pte)\n" "> +{\n" - "> +\treturn (pte_val(*pte) & L_PTE_S2_RDWR) = L_PTE_S2_RDONLY;\n" + "> +\treturn (pte_val(*pte) & L_PTE_S2_RDWR) == L_PTE_S2_RDONLY;\n" "> +}\n" "> +\n" "> +static inline void kvm_set_s2pmd_readonly(pmd_t *pmd)\n" @@ -54,7 +55,7 @@ "> +\n" "> +static inline bool kvm_s2pmd_readonly(pmd_t *pmd)\n" "> +{\n" - "> +\treturn (pmd_val(*pmd) & L_PMD_S2_RDWR) = L_PMD_S2_RDONLY;\n" + "> +\treturn (pmd_val(*pmd) & L_PMD_S2_RDWR) == L_PMD_S2_RDONLY;\n" "> +}\n" "> +\n" "> /* Open coded p*d_addr_end that can deal with 64bit addresses */\n" @@ -249,4 +250,4 @@ "Thanks,\n" -Christoffer -f0a33fe1ece9bb560a3cf1c57599cc18e78aa8cb015d1973ea974d6b844a5344 +f6442c99310069b1e4f999f97006b6f38ee17e03feee68cb8fcad5a9c78dfec3
diff --git a/a/1.txt b/N3/1.txt index 75db1c2..b3a44a2 100644 --- a/a/1.txt +++ b/N3/1.txt @@ -37,7 +37,7 @@ On Thu, Nov 13, 2014 at 05:57:46PM -0800, Mario Smarduch wrote: > + > +static inline bool kvm_s2pte_readonly(pte_t *pte) > +{ -> + return (pte_val(*pte) & L_PTE_S2_RDWR) = L_PTE_S2_RDONLY; +> + return (pte_val(*pte) & L_PTE_S2_RDWR) == L_PTE_S2_RDONLY; > +} > + > +static inline void kvm_set_s2pmd_readonly(pmd_t *pmd) @@ -47,7 +47,7 @@ On Thu, Nov 13, 2014 at 05:57:46PM -0800, Mario Smarduch wrote: > + > +static inline bool kvm_s2pmd_readonly(pmd_t *pmd) > +{ -> + return (pmd_val(*pmd) & L_PMD_S2_RDWR) = L_PMD_S2_RDONLY; +> + return (pmd_val(*pmd) & L_PMD_S2_RDWR) == L_PMD_S2_RDONLY; > +} > + > /* Open coded p*d_addr_end that can deal with 64bit addresses */ diff --git a/a/content_digest b/N3/content_digest index 04be777..1c0dbde 100644 --- a/a/content_digest +++ b/N3/content_digest @@ -1,8 +1,23 @@ + "ref\01415930268-7674-1-git-send-email-m.smarduch@samsung.com\0" "ref\01415930268-7674-6-git-send-email-m.smarduch@samsung.com\0" "From\0Christoffer Dall <christoffer.dall@linaro.org>\0" "Subject\0Re: [PATCH v14 5/7] KVM: arm: Add initial dirty page locking support\0" - "Date\0Sat, 22 Nov 2014 19:33:22 +0000\0" - "To\0kvm-ia64@vger.kernel.org\0" + "Date\0Sat, 22 Nov 2014 20:33:22 +0100\0" + "To\0Mario Smarduch <m.smarduch@samsung.com>\0" + "Cc\0pbonzini@redhat.com" + james.hogan@imgtec.com + agraf@suse.de + marc.zyngier@arm.com + cornelia.huck@de.ibm.com + borntraeger@de.ibm.com + catalin.marinas@arm.com + kvmarm@lists.cs.columbia.edu + kvm@vger.kernel.org + kvm-ppc@vger.kernel.org + kvm-ia64@vger.kernel.org + linux-arm-kernel@lists.infradead.org + steve.capper@arm.com + " peter.maydell@linaro.org\0" "\00:1\0" "b\0" "On Thu, Nov 13, 2014 at 05:57:46PM -0800, Mario Smarduch wrote:\n" @@ -44,7 +59,7 @@ "> +\n" "> +static inline bool kvm_s2pte_readonly(pte_t *pte)\n" "> +{\n" - "> +\treturn (pte_val(*pte) & L_PTE_S2_RDWR) = L_PTE_S2_RDONLY;\n" + "> +\treturn (pte_val(*pte) & L_PTE_S2_RDWR) == L_PTE_S2_RDONLY;\n" "> +}\n" "> +\n" "> +static inline void kvm_set_s2pmd_readonly(pmd_t *pmd)\n" @@ -54,7 +69,7 @@ "> +\n" "> +static inline bool kvm_s2pmd_readonly(pmd_t *pmd)\n" "> +{\n" - "> +\treturn (pmd_val(*pmd) & L_PMD_S2_RDWR) = L_PMD_S2_RDONLY;\n" + "> +\treturn (pmd_val(*pmd) & L_PMD_S2_RDWR) == L_PMD_S2_RDONLY;\n" "> +}\n" "> +\n" "> /* Open coded p*d_addr_end that can deal with 64bit addresses */\n" @@ -249,4 +264,4 @@ "Thanks,\n" -Christoffer -f0a33fe1ece9bb560a3cf1c57599cc18e78aa8cb015d1973ea974d6b844a5344 +509f8f1ea4cfd2629f84ab1bfaa44b192f996b4e5eab76e9a3e24db5b4c360f4
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.