diff for duplicates of <20200205100723.GD24162@richard> diff --git a/a/1.txt b/N1/1.txt index 5987580..d69101e 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -33,8 +33,8 @@ Reviewed-by: Wei Yang <richardw.yang@linux.intel.com> > int nid = zone_to_nid(zone); > > zone_span_writelock(zone); ->- if (zone_start_pfn = start_pfn) { ->+ if (zone->zone_start_pfn = start_pfn) { +>- if (zone_start_pfn == start_pfn) { +>+ if (zone->zone_start_pfn == start_pfn) { > /* > * If the section is smallest section in the zone, it need > * shrink zone->zone_start_pfn and zone->zone_spanned_pages. @@ -52,8 +52,8 @@ Reviewed-by: Wei Yang <richardw.yang@linux.intel.com> > zone->zone_start_pfn = 0; > zone->spanned_pages = 0; > } ->- } else if (zone_end_pfn = end_pfn) { ->+ } else if (zone_end_pfn(zone) = end_pfn) { +>- } else if (zone_end_pfn == end_pfn) { +>+ } else if (zone_end_pfn(zone) == end_pfn) { > /* > * If the section is biggest section in the zone, it need > * shrink zone->spanned_pages. diff --git a/a/content_digest b/N1/content_digest index 8cb52e5..006dc8d 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -2,22 +2,22 @@ "ref\020191006085646.5768-10-david@redhat.com\0" "From\0Wei Yang <richardw.yang@linux.intel.com>\0" "Subject\0Re: [PATCH v6 09/10] mm/memory_hotplug: Drop local variables in shrink_zone_span()\0" - "Date\0Wed, 05 Feb 2020 10:07:23 +0000\0" + "Date\0Wed, 5 Feb 2020 18:07:23 +0800\0" "To\0David Hildenbrand <david@redhat.com>\0" - "Cc\0linux-s390@vger.kernel.org" - Michal Hocko <mhocko@suse.com> + "Cc\0linux-kernel@vger.kernel.org" + linux-mm@kvack.org + linux-arm-kernel@lists.infradead.org linux-ia64@vger.kernel.org - Pavel Tatashin <pasha.tatashin@soleen.com> + linuxppc-dev@lists.ozlabs.org + linux-s390@vger.kernel.org linux-sh@vger.kernel.org x86@kernel.org - linux-kernel@vger.kernel.org - linux-mm@kvack.org - Wei Yang <richardw.yang@linux.intel.com> Andrew Morton <akpm@linux-foundation.org> - linuxppc-dev@lists.ozlabs.org + Oscar Salvador <osalvador@suse.de> + Michal Hocko <mhocko@suse.com> + Pavel Tatashin <pasha.tatashin@soleen.com> Dan Williams <dan.j.williams@intel.com> - linux-arm-kernel@lists.infradead.org - " Oscar Salvador <osalvador@suse.de>\0" + " Wei Yang <richardw.yang@linux.intel.com>\0" "\00:1\0" "b\0" "On Sun, Oct 06, 2019 at 10:56:45AM +0200, David Hildenbrand wrote:\n" @@ -55,8 +55,8 @@ "> \tint nid = zone_to_nid(zone);\n" "> \n" "> \tzone_span_writelock(zone);\n" - ">-\tif (zone_start_pfn = start_pfn) {\n" - ">+\tif (zone->zone_start_pfn = start_pfn) {\n" + ">-\tif (zone_start_pfn == start_pfn) {\n" + ">+\tif (zone->zone_start_pfn == start_pfn) {\n" "> \t\t/*\n" "> \t\t * If the section is smallest section in the zone, it need\n" "> \t\t * shrink zone->zone_start_pfn and zone->zone_spanned_pages.\n" @@ -74,8 +74,8 @@ "> \t\t\tzone->zone_start_pfn = 0;\n" "> \t\t\tzone->spanned_pages = 0;\n" "> \t\t}\n" - ">-\t} else if (zone_end_pfn = end_pfn) {\n" - ">+\t} else if (zone_end_pfn(zone) = end_pfn) {\n" + ">-\t} else if (zone_end_pfn == end_pfn) {\n" + ">+\t} else if (zone_end_pfn(zone) == end_pfn) {\n" "> \t\t/*\n" "> \t\t * If the section is biggest section in the zone, it need\n" "> \t\t * shrink zone->spanned_pages.\n" @@ -98,4 +98,4 @@ "Wei Yang\n" Help you, Help me -01d4e63a8c7ec1caba6985077989925625a51d07bd34569e621a50874ce31ca6 +4e4a4b92166c36de38dd91ad775894a429492dd22df14106a2f3afb0cdd5211b
diff --git a/a/1.txt b/N2/1.txt index 5987580..d69101e 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -33,8 +33,8 @@ Reviewed-by: Wei Yang <richardw.yang@linux.intel.com> > int nid = zone_to_nid(zone); > > zone_span_writelock(zone); ->- if (zone_start_pfn = start_pfn) { ->+ if (zone->zone_start_pfn = start_pfn) { +>- if (zone_start_pfn == start_pfn) { +>+ if (zone->zone_start_pfn == start_pfn) { > /* > * If the section is smallest section in the zone, it need > * shrink zone->zone_start_pfn and zone->zone_spanned_pages. @@ -52,8 +52,8 @@ Reviewed-by: Wei Yang <richardw.yang@linux.intel.com> > zone->zone_start_pfn = 0; > zone->spanned_pages = 0; > } ->- } else if (zone_end_pfn = end_pfn) { ->+ } else if (zone_end_pfn(zone) = end_pfn) { +>- } else if (zone_end_pfn == end_pfn) { +>+ } else if (zone_end_pfn(zone) == end_pfn) { > /* > * If the section is biggest section in the zone, it need > * shrink zone->spanned_pages. diff --git a/a/content_digest b/N2/content_digest index 8cb52e5..4d7cba1 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -2,7 +2,7 @@ "ref\020191006085646.5768-10-david@redhat.com\0" "From\0Wei Yang <richardw.yang@linux.intel.com>\0" "Subject\0Re: [PATCH v6 09/10] mm/memory_hotplug: Drop local variables in shrink_zone_span()\0" - "Date\0Wed, 05 Feb 2020 10:07:23 +0000\0" + "Date\0Wed, 5 Feb 2020 18:07:23 +0800\0" "To\0David Hildenbrand <david@redhat.com>\0" "Cc\0linux-s390@vger.kernel.org" Michal Hocko <mhocko@suse.com> @@ -55,8 +55,8 @@ "> \tint nid = zone_to_nid(zone);\n" "> \n" "> \tzone_span_writelock(zone);\n" - ">-\tif (zone_start_pfn = start_pfn) {\n" - ">+\tif (zone->zone_start_pfn = start_pfn) {\n" + ">-\tif (zone_start_pfn == start_pfn) {\n" + ">+\tif (zone->zone_start_pfn == start_pfn) {\n" "> \t\t/*\n" "> \t\t * If the section is smallest section in the zone, it need\n" "> \t\t * shrink zone->zone_start_pfn and zone->zone_spanned_pages.\n" @@ -74,8 +74,8 @@ "> \t\t\tzone->zone_start_pfn = 0;\n" "> \t\t\tzone->spanned_pages = 0;\n" "> \t\t}\n" - ">-\t} else if (zone_end_pfn = end_pfn) {\n" - ">+\t} else if (zone_end_pfn(zone) = end_pfn) {\n" + ">-\t} else if (zone_end_pfn == end_pfn) {\n" + ">+\t} else if (zone_end_pfn(zone) == end_pfn) {\n" "> \t\t/*\n" "> \t\t * If the section is biggest section in the zone, it need\n" "> \t\t * shrink zone->spanned_pages.\n" @@ -98,4 +98,4 @@ "Wei Yang\n" Help you, Help me -01d4e63a8c7ec1caba6985077989925625a51d07bd34569e621a50874ce31ca6 +b8902bc225ee812106ebc2ae6f620aff0dcd3f4d4f05df3535781eb0b7595bc5
diff --git a/a/1.txt b/N3/1.txt index 5987580..afc754b 100644 --- a/a/1.txt +++ b/N3/1.txt @@ -33,8 +33,8 @@ Reviewed-by: Wei Yang <richardw.yang@linux.intel.com> > int nid = zone_to_nid(zone); > > zone_span_writelock(zone); ->- if (zone_start_pfn = start_pfn) { ->+ if (zone->zone_start_pfn = start_pfn) { +>- if (zone_start_pfn == start_pfn) { +>+ if (zone->zone_start_pfn == start_pfn) { > /* > * If the section is smallest section in the zone, it need > * shrink zone->zone_start_pfn and zone->zone_spanned_pages. @@ -52,8 +52,8 @@ Reviewed-by: Wei Yang <richardw.yang@linux.intel.com> > zone->zone_start_pfn = 0; > zone->spanned_pages = 0; > } ->- } else if (zone_end_pfn = end_pfn) { ->+ } else if (zone_end_pfn(zone) = end_pfn) { +>- } else if (zone_end_pfn == end_pfn) { +>+ } else if (zone_end_pfn(zone) == end_pfn) { > /* > * If the section is biggest section in the zone, it need > * shrink zone->spanned_pages. @@ -75,3 +75,8 @@ Reviewed-by: Wei Yang <richardw.yang@linux.intel.com> -- Wei Yang Help you, Help me + +_______________________________________________ +linux-arm-kernel mailing list +linux-arm-kernel@lists.infradead.org +http://lists.infradead.org/mailman/listinfo/linux-arm-kernel diff --git a/a/content_digest b/N3/content_digest index 8cb52e5..a0fef7e 100644 --- a/a/content_digest +++ b/N3/content_digest @@ -2,7 +2,7 @@ "ref\020191006085646.5768-10-david@redhat.com\0" "From\0Wei Yang <richardw.yang@linux.intel.com>\0" "Subject\0Re: [PATCH v6 09/10] mm/memory_hotplug: Drop local variables in shrink_zone_span()\0" - "Date\0Wed, 05 Feb 2020 10:07:23 +0000\0" + "Date\0Wed, 5 Feb 2020 18:07:23 +0800\0" "To\0David Hildenbrand <david@redhat.com>\0" "Cc\0linux-s390@vger.kernel.org" Michal Hocko <mhocko@suse.com> @@ -55,8 +55,8 @@ "> \tint nid = zone_to_nid(zone);\n" "> \n" "> \tzone_span_writelock(zone);\n" - ">-\tif (zone_start_pfn = start_pfn) {\n" - ">+\tif (zone->zone_start_pfn = start_pfn) {\n" + ">-\tif (zone_start_pfn == start_pfn) {\n" + ">+\tif (zone->zone_start_pfn == start_pfn) {\n" "> \t\t/*\n" "> \t\t * If the section is smallest section in the zone, it need\n" "> \t\t * shrink zone->zone_start_pfn and zone->zone_spanned_pages.\n" @@ -74,8 +74,8 @@ "> \t\t\tzone->zone_start_pfn = 0;\n" "> \t\t\tzone->spanned_pages = 0;\n" "> \t\t}\n" - ">-\t} else if (zone_end_pfn = end_pfn) {\n" - ">+\t} else if (zone_end_pfn(zone) = end_pfn) {\n" + ">-\t} else if (zone_end_pfn == end_pfn) {\n" + ">+\t} else if (zone_end_pfn(zone) == end_pfn) {\n" "> \t\t/*\n" "> \t\t * If the section is biggest section in the zone, it need\n" "> \t\t * shrink zone->spanned_pages.\n" @@ -96,6 +96,11 @@ "\n" "-- \n" "Wei Yang\n" - Help you, Help me + "Help you, Help me\n" + "\n" + "_______________________________________________\n" + "linux-arm-kernel mailing list\n" + "linux-arm-kernel@lists.infradead.org\n" + http://lists.infradead.org/mailman/listinfo/linux-arm-kernel -01d4e63a8c7ec1caba6985077989925625a51d07bd34569e621a50874ce31ca6 +f35be14073a0f73ac4e9f39d2a127983b67937ff517ab9085df1b1544c99d688
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.