All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <20070912015646.663194236@sgi.com>

diff --git a/a/1.txt b/N1/1.txt
index f31c8b7..bbad131 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -50,9 +50,9 @@ Signed-off-by: Mike Travis <travis@sgi.com>
  
  	for_each_cpu_mask(i, cpu_sibling_setup_map) {
 -		if (cpu_llc_id[cpu] != BAD_APICID &&
--		    cpu_llc_id[cpu] == cpu_llc_id[i]) {
+-		    cpu_llc_id[cpu] = cpu_llc_id[i]) {
 +		if (per_cpu(cpu_llc_id, cpu) != BAD_APICID &&
-+		    per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i)) {
++		    per_cpu(cpu_llc_id, cpu) = per_cpu(cpu_llc_id, i)) {
  			cpu_set(i, c[cpu].llc_shared_map);
  			cpu_set(cpu, c[i].llc_shared_map);
  		}
@@ -72,9 +72,9 @@ Signed-off-by: Mike Travis <travis@sgi.com>
  
  	for_each_cpu_mask(i, cpu_sibling_setup_map) {
 -		if (cpu_llc_id[cpu] != BAD_APICID &&
--		    cpu_llc_id[cpu] == cpu_llc_id[i]) {
+-		    cpu_llc_id[cpu] = cpu_llc_id[i]) {
 +		if (per_cpu(cpu_llc_id, cpu) != BAD_APICID &&
-+		    per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i)) {
++		    per_cpu(cpu_llc_id, cpu) = per_cpu(cpu_llc_id, i)) {
  			cpu_set(i, c[cpu].llc_shared_map);
  			cpu_set(cpu, c[i].llc_shared_map);
  		}
diff --git a/a/content_digest b/N1/content_digest
index ad7a7d9..f73eb61 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,14 +1,14 @@
  "ref\020070912015644.927677070@sgi.com\0"
  "From\0travis@sgi.com\0"
  "Subject\0[PATCH 06/10] x86: Convert cpu_llc_id to be a per cpu variable (v3)\0"
- "Date\0Tue, 11 Sep 2007 18:56:50 -0700\0"
+ "Date\0Wed, 12 Sep 2007 01:56:50 +0000\0"
  "To\0Andrew Morton <akpm@linux-foundation.org>\0"
- "Cc\0linux-mm@kvack.org"
-  Andi Kleen <ak@suse.de>
+ "Cc\0Andi Kleen <ak@suse.de>"
+  Christoph Lameter <clameter@sgi.com>
+  linux-mm@kvack.org
   linux-kernel@vger.kernel.org
   linuxppc-dev@ozlabs.org
-  sparclinux@vger.kernel.org
- " Christoph Lameter <clameter@sgi.com>\0"
+ " sparclinux@vger.kernel.org\0"
  "\00:1\0"
  "b\0"
  "Convert cpu_llc_id from a static array sized by NR_CPUS to a\n"
@@ -63,9 +63,9 @@
  " \n"
  " \tfor_each_cpu_mask(i, cpu_sibling_setup_map) {\n"
  "-\t\tif (cpu_llc_id[cpu] != BAD_APICID &&\n"
- "-\t\t    cpu_llc_id[cpu] == cpu_llc_id[i]) {\n"
+ "-\t\t    cpu_llc_id[cpu] = cpu_llc_id[i]) {\n"
  "+\t\tif (per_cpu(cpu_llc_id, cpu) != BAD_APICID &&\n"
- "+\t\t    per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i)) {\n"
+ "+\t\t    per_cpu(cpu_llc_id, cpu) = per_cpu(cpu_llc_id, i)) {\n"
  " \t\t\tcpu_set(i, c[cpu].llc_shared_map);\n"
  " \t\t\tcpu_set(cpu, c[i].llc_shared_map);\n"
  " \t\t}\n"
@@ -85,9 +85,9 @@
  " \n"
  " \tfor_each_cpu_mask(i, cpu_sibling_setup_map) {\n"
  "-\t\tif (cpu_llc_id[cpu] != BAD_APICID &&\n"
- "-\t\t    cpu_llc_id[cpu] == cpu_llc_id[i]) {\n"
+ "-\t\t    cpu_llc_id[cpu] = cpu_llc_id[i]) {\n"
  "+\t\tif (per_cpu(cpu_llc_id, cpu) != BAD_APICID &&\n"
- "+\t\t    per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i)) {\n"
+ "+\t\t    per_cpu(cpu_llc_id, cpu) = per_cpu(cpu_llc_id, i)) {\n"
  " \t\t\tcpu_set(i, c[cpu].llc_shared_map);\n"
  " \t\t\tcpu_set(cpu, c[i].llc_shared_map);\n"
  " \t\t}\n"
@@ -139,4 +139,4 @@
  "\n"
  --
 
-22d270f0d5f11e8d57cd48e9c97c9ab1844ecca1ff8a17f6379cdd0b8d8d37ec
+22672b8cd7a7e74035c3bb110b6b275ef1a6fa669cf2d69ca740e3b16cacad20

diff --git a/a/content_digest b/N2/content_digest
index ad7a7d9..48d529f 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -3,13 +3,14 @@
  "Subject\0[PATCH 06/10] x86: Convert cpu_llc_id to be a per cpu variable (v3)\0"
  "Date\0Tue, 11 Sep 2007 18:56:50 -0700\0"
  "To\0Andrew Morton <akpm@linux-foundation.org>\0"
- "Cc\0linux-mm@kvack.org"
-  Andi Kleen <ak@suse.de>
+ "Cc\0Andi Kleen <ak@suse.de>"
+  Christoph Lameter <clameter@sgi.com>
+  linux-mm@kvack.org
   linux-kernel@vger.kernel.org
   linuxppc-dev@ozlabs.org
-  sparclinux@vger.kernel.org
- " Christoph Lameter <clameter@sgi.com>\0"
+ " sparclinux@vger.kernel.org\0"
  "\00:1\0"
+ "fn\0convert-cpu_llc_id-to-per_cpu_data\0"
  "b\0"
  "Convert cpu_llc_id from a static array sized by NR_CPUS to a\n"
  "per_cpu variable.  This saves sizeof(cpu_llc_id) * NR unused\n"
@@ -139,4 +140,4 @@
  "\n"
  --
 
-22d270f0d5f11e8d57cd48e9c97c9ab1844ecca1ff8a17f6379cdd0b8d8d37ec
+82d0ed1b706aef8ce7452161495f852f9012cd2df735fdd1e46a2aee6b6c3352

diff --git a/a/1.txt b/N3/1.txt
index f31c8b7..c03913e 100644
--- a/a/1.txt
+++ b/N3/1.txt
@@ -124,4 +124,10 @@ Signed-off-by: Mike Travis <travis@sgi.com>
  #endif /* !CONFIG_SMP */
  #endif
 
+-- 
+
 --
+To unsubscribe, send a message with 'unsubscribe linux-mm' in
+the body to majordomo@kvack.org.  For more info on Linux MM,
+see: http://www.linux-mm.org/ .
+Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
diff --git a/a/content_digest b/N3/content_digest
index ad7a7d9..60a4b4c 100644
--- a/a/content_digest
+++ b/N3/content_digest
@@ -3,13 +3,14 @@
  "Subject\0[PATCH 06/10] x86: Convert cpu_llc_id to be a per cpu variable (v3)\0"
  "Date\0Tue, 11 Sep 2007 18:56:50 -0700\0"
  "To\0Andrew Morton <akpm@linux-foundation.org>\0"
- "Cc\0linux-mm@kvack.org"
-  Andi Kleen <ak@suse.de>
+ "Cc\0Andi Kleen <ak@suse.de>"
+  Christoph Lameter <clameter@sgi.com>
+  linux-mm@kvack.org
   linux-kernel@vger.kernel.org
   linuxppc-dev@ozlabs.org
-  sparclinux@vger.kernel.org
- " Christoph Lameter <clameter@sgi.com>\0"
+ " sparclinux@vger.kernel.org\0"
  "\00:1\0"
+ "fn\0convert-cpu_llc_id-to-per_cpu_data\0"
  "b\0"
  "Convert cpu_llc_id from a static array sized by NR_CPUS to a\n"
  "per_cpu variable.  This saves sizeof(cpu_llc_id) * NR unused\n"
@@ -137,6 +138,12 @@
  " #endif /* !CONFIG_SMP */\n"
  " #endif\n"
  "\n"
- --
+ "-- \n"
+ "\n"
+ "--\n"
+ "To unsubscribe, send a message with 'unsubscribe linux-mm' in\n"
+ "the body to majordomo@kvack.org.  For more info on Linux MM,\n"
+ "see: http://www.linux-mm.org/ .\n"
+ "Don't email: <a href=mailto:\"dont@kvack.org\"> email@kvack.org </a>"
 
-22d270f0d5f11e8d57cd48e9c97c9ab1844ecca1ff8a17f6379cdd0b8d8d37ec
+78d16f3b8eae68d096b7cac0a28bdb7d7398f1f2a9476b2a1e24e1aa8231b07f

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.