diff for duplicates of <1427766549.20500.108.camel@kernel.crashing.org> diff --git a/a/1.txt b/N1/1.txt index 062068c..f0a3b41 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -74,7 +74,7 @@ Ben. > --- a/arch/powerpc/sysdev/dcr.c > +++ b/arch/powerpc/sysdev/dcr.c > @@ -54,7 +54,7 @@ bool dcr_map_ok_generic(dcr_host_t host) -> else if (host.type = DCR_HOST_MMIO) +> else if (host.type == DCR_HOST_MMIO) > return dcr_map_ok_mmio(host.host.mmio); > else > - return 0; diff --git a/a/content_digest b/N1/content_digest index db63b4d..827ceb5 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -2,17 +2,16 @@ "ref\06d45a6e4596f0b282048fc4b8db9e7f7a19a46e3.1427759009.git.joe@perches.com\0" "From\0Benjamin Herrenschmidt <benh@kernel.crashing.org>\0" "Subject\0Re: [PATCH 06/25] powerpc: Use bool function return values of true/false not 1/0\0" - "Date\0Tue, 31 Mar 2015 01:49:09 +0000\0" + "Date\0Tue, 31 Mar 2015 12:49:09 +1100\0" "To\0Joe Perches <joe@perches.com>\0" - "Cc\0linux-kernel@vger.kernel.org" - Alexander Graf <agraf@suse.de> + "Cc\0kvm@vger.kernel.org" Gleb Natapov <gleb@kernel.org> - Paolo Bonzini <pbonzini@redhat.com> - Paul Mackerras <paulus@samba.org> - Michael Ellerman <mpe@ellerman.id.au> - linuxppc-dev@lists.ozlabs.org + linux-kernel@vger.kernel.org kvm-ppc@vger.kernel.org - " kvm@vger.kernel.org\0" + Alexander Graf <agraf@suse.de> + Paul Mackerras <paulus@samba.org> + Paolo Bonzini <pbonzini@redhat.com> + " linuxppc-dev@lists.ozlabs.org\0" "\00:1\0" "b\0" "On Mon, 2015-03-30 at 16:46 -0700, Joe Perches wrote:\n" @@ -91,7 +90,7 @@ "> --- a/arch/powerpc/sysdev/dcr.c\n" "> +++ b/arch/powerpc/sysdev/dcr.c\n" "> @@ -54,7 +54,7 @@ bool dcr_map_ok_generic(dcr_host_t host)\n" - "> \telse if (host.type = DCR_HOST_MMIO)\n" + "> \telse if (host.type == DCR_HOST_MMIO)\n" "> \t\treturn dcr_map_ok_mmio(host.host.mmio);\n" "> \telse\n" "> -\t\treturn 0;\n" @@ -100,4 +99,4 @@ "> EXPORT_SYMBOL_GPL(dcr_map_ok_generic);\n" > -cbaf51558449fe420d1c819af76c9a8d23727cd1a5c25844bf157eb6f4e992ae +1985b90d5c2f1a9841578783df8f39a4ae97b83eae97feac65a8a90a7fcc2040
diff --git a/a/1.txt b/N2/1.txt index 062068c..8cebdfd 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -74,11 +74,17 @@ Ben. > --- a/arch/powerpc/sysdev/dcr.c > +++ b/arch/powerpc/sysdev/dcr.c > @@ -54,7 +54,7 @@ bool dcr_map_ok_generic(dcr_host_t host) -> else if (host.type = DCR_HOST_MMIO) +> else if (host.type == DCR_HOST_MMIO) > return dcr_map_ok_mmio(host.host.mmio); > else > - return 0; > + return false; > } > EXPORT_SYMBOL_GPL(dcr_map_ok_generic); -> +> + + +_______________________________________________ +Linuxppc-dev mailing list +Linuxppc-dev@lists.ozlabs.org +https://lists.ozlabs.org/listinfo/linuxppc-dev diff --git a/a/content_digest b/N2/content_digest index db63b4d..a348b2b 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -2,17 +2,16 @@ "ref\06d45a6e4596f0b282048fc4b8db9e7f7a19a46e3.1427759009.git.joe@perches.com\0" "From\0Benjamin Herrenschmidt <benh@kernel.crashing.org>\0" "Subject\0Re: [PATCH 06/25] powerpc: Use bool function return values of true/false not 1/0\0" - "Date\0Tue, 31 Mar 2015 01:49:09 +0000\0" + "Date\0Tue, 31 Mar 2015 12:49:09 +1100\0" "To\0Joe Perches <joe@perches.com>\0" - "Cc\0linux-kernel@vger.kernel.org" - Alexander Graf <agraf@suse.de> + "Cc\0kvm@vger.kernel.org" Gleb Natapov <gleb@kernel.org> - Paolo Bonzini <pbonzini@redhat.com> - Paul Mackerras <paulus@samba.org> - Michael Ellerman <mpe@ellerman.id.au> - linuxppc-dev@lists.ozlabs.org + linux-kernel@vger.kernel.org kvm-ppc@vger.kernel.org - " kvm@vger.kernel.org\0" + Alexander Graf <agraf@suse.de> + Paul Mackerras <paulus@samba.org> + Paolo Bonzini <pbonzini@redhat.com> + " linuxppc-dev@lists.ozlabs.org\0" "\00:1\0" "b\0" "On Mon, 2015-03-30 at 16:46 -0700, Joe Perches wrote:\n" @@ -91,13 +90,19 @@ "> --- a/arch/powerpc/sysdev/dcr.c\n" "> +++ b/arch/powerpc/sysdev/dcr.c\n" "> @@ -54,7 +54,7 @@ bool dcr_map_ok_generic(dcr_host_t host)\n" - "> \telse if (host.type = DCR_HOST_MMIO)\n" + "> \telse if (host.type == DCR_HOST_MMIO)\n" "> \t\treturn dcr_map_ok_mmio(host.host.mmio);\n" "> \telse\n" "> -\t\treturn 0;\n" "> +\t\treturn false;\n" "> }\n" "> EXPORT_SYMBOL_GPL(dcr_map_ok_generic);\n" - > + "> \n" + "\n" + "\n" + "_______________________________________________\n" + "Linuxppc-dev mailing list\n" + "Linuxppc-dev@lists.ozlabs.org\n" + https://lists.ozlabs.org/listinfo/linuxppc-dev -cbaf51558449fe420d1c819af76c9a8d23727cd1a5c25844bf157eb6f4e992ae +74fbfdb6ab7f4f7ace036e8f715847ecb3de6f32740e0870b2a46a2d84f8de05
diff --git a/a/1.txt b/N3/1.txt index 062068c..f0a3b41 100644 --- a/a/1.txt +++ b/N3/1.txt @@ -74,7 +74,7 @@ Ben. > --- a/arch/powerpc/sysdev/dcr.c > +++ b/arch/powerpc/sysdev/dcr.c > @@ -54,7 +54,7 @@ bool dcr_map_ok_generic(dcr_host_t host) -> else if (host.type = DCR_HOST_MMIO) +> else if (host.type == DCR_HOST_MMIO) > return dcr_map_ok_mmio(host.host.mmio); > else > - return 0; diff --git a/a/content_digest b/N3/content_digest index db63b4d..9368e23 100644 --- a/a/content_digest +++ b/N3/content_digest @@ -2,7 +2,7 @@ "ref\06d45a6e4596f0b282048fc4b8db9e7f7a19a46e3.1427759009.git.joe@perches.com\0" "From\0Benjamin Herrenschmidt <benh@kernel.crashing.org>\0" "Subject\0Re: [PATCH 06/25] powerpc: Use bool function return values of true/false not 1/0\0" - "Date\0Tue, 31 Mar 2015 01:49:09 +0000\0" + "Date\0Tue, 31 Mar 2015 12:49:09 +1100\0" "To\0Joe Perches <joe@perches.com>\0" "Cc\0linux-kernel@vger.kernel.org" Alexander Graf <agraf@suse.de> @@ -91,7 +91,7 @@ "> --- a/arch/powerpc/sysdev/dcr.c\n" "> +++ b/arch/powerpc/sysdev/dcr.c\n" "> @@ -54,7 +54,7 @@ bool dcr_map_ok_generic(dcr_host_t host)\n" - "> \telse if (host.type = DCR_HOST_MMIO)\n" + "> \telse if (host.type == DCR_HOST_MMIO)\n" "> \t\treturn dcr_map_ok_mmio(host.host.mmio);\n" "> \telse\n" "> -\t\treturn 0;\n" @@ -100,4 +100,4 @@ "> EXPORT_SYMBOL_GPL(dcr_map_ok_generic);\n" > -cbaf51558449fe420d1c819af76c9a8d23727cd1a5c25844bf157eb6f4e992ae +2ddfba24cfe290b24db4371f3275c2f88189ee2c637f58c4344ee49ebd05a575
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.