All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <20161222023811.21246-15-mcgrof@kernel.org>

diff --git a/a/content_digest b/N1/content_digest
index 039114f..36eecd7 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -52,7 +52,34 @@
   linux@rasmusvillemoes.dk
   jkosina@suse.cz
   korea.drzix@gmail.com
- " linux-kbuild@vger.kernel\0"
+  linux-kbuild@vger.kernel.org
+  tony.luck@intel.com
+  akpm@linux-foundation.org
+  linux-ia64@vger.kernel.org
+  linux-arm-kernel@lists.infradead.org
+  linux-sh@vger.kernel.org
+  sparclinux@vger.kernel.org
+  catalin.marinas@arm.com
+  will.deacon@arm.com
+  rostedt@goodmis.org
+  jani.nikula@intel.com
+  mchehab@osg.samsung.com
+  markus.heiser@darmarit.de
+  jolsa@kernel.org
+  msalter@redhat.com
+  chris@zankel.net
+  jcmvbkbc@gmail.com
+  linux-xtensa@linux-xtensa.org
+  adrian.hunter@intel.com
+  dsahern@gmail.com
+  namhyung@kernel.org
+  wangnan0@huawei.com
+  dmitry.torokhov@gmail.com
+  joro@8bytes.org
+  paulus@samba.org
+  mpe@ellerman.id.au
+  James.Bottomley@hansenpartnership.com
+ " Luis R. Rodriguez <mcgrof@kernel.org>\0"
  "\00:1\0"
  "b\0"
  "Add a test drivers for linker tables.\n"
@@ -1158,4 +1185,4 @@
  "-- \n"
  2.10.1
 
-faf21f833bc964fde9b41f8088d5c0095d49cb24201f0860c8bc1c2829332450
+638a41eac143e810deaaff478e5ab5df6ec1dc66f00bd081bc007131d7253638

diff --git a/a/1.txt b/N2/1.txt
index bcc63f1..8c8e747 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -276,7 +276,7 @@ index 000000000000..e41cb09ee573
 + * cat /sys/devices/virtual/misc/test_linktable/config
 + *
 + * NUM_TESTS
-+ *    ∑        test(n, input)
++ *    ∑        test(n, input)
 + *   n=0
 + *
 + * Each linker table entry on each section has a series of entries. Each entry
@@ -487,15 +487,15 @@ index 000000000000..e41cb09ee573
 +
 +static enum linktable_test_case get_test_case(const char *section_name)
 +{
-+	if (strcmp(".init.text", section_name) == 0)
++	if (strcmp(".init.text", section_name) = 0)
 +		return TEST_LINKTABLE_INIT;
-+	if (strcmp(".init.data", section_name) == 0)
++	if (strcmp(".init.data", section_name) = 0)
 +		return TEST_LINKTABLE_INIT_DATA;
-+	if (strcmp(".data", section_name) == 0)
++	if (strcmp(".data", section_name) = 0)
 +		return TEST_LINKTABLE;
-+	if (strcmp(".text", section_name) == 0)
++	if (strcmp(".text", section_name) = 0)
 +		return TEST_LINKTABLE_TEXT;
-+	if (strcmp(".rodata", section_name) == 0)
++	if (strcmp(".rodata", section_name) = 0)
 +		return TEST_LINKTABLE_TEXT;
 +
 +	return __TEST_LINKTABLE_INVALID;
@@ -828,7 +828,7 @@ index 000000000000..e41cb09ee573
 +{
 +	char *end;
 +	long new = simple_strtol(buf, &end, 0);
-+	if (end == buf || new > INT_MAX || new < INT_MIN)
++	if (end = buf || new > INT_MAX || new < INT_MIN)
 +		return -EINVAL;
 +	mutex_lock(&test_dev->config_mutex);
 +	*config = new;
diff --git a/a/content_digest b/N2/content_digest
index 039114f..1e0f2fd 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -2,7 +2,7 @@
  "ref\020161222023811.21246-1-mcgrof@kernel.org\0"
  "From\0Luis R. Rodriguez <mcgrof@kernel.org>\0"
  "Subject\0[PATCH v5 14/14] lib: add linker tables test driver\0"
- "Date\0Wed, 21 Dec 2016 18:38:10 -0800\0"
+ "Date\0Thu, 22 Dec 2016 02:38:10 +0000\0"
  "To\0hpa@zytor.com"
   acme@redhat.com
   tglx@linutronix.de
@@ -333,7 +333,7 @@
  "+ * cat /sys/devices/virtual/misc/test_linktable/config\n"
  "+ *\n"
  "+ * NUM_TESTS\n"
- "+ *    \342\210\221        test(n, input)\n"
+ "+ *    \303\242\313\206\342\200\230        test(n, input)\n"
  "+ *   n=0\n"
  "+ *\n"
  "+ * Each linker table entry on each section has a series of entries. Each entry\n"
@@ -544,15 +544,15 @@
  "+\n"
  "+static enum linktable_test_case get_test_case(const char *section_name)\n"
  "+{\n"
- "+\tif (strcmp(\".init.text\", section_name) == 0)\n"
+ "+\tif (strcmp(\".init.text\", section_name) = 0)\n"
  "+\t\treturn TEST_LINKTABLE_INIT;\n"
- "+\tif (strcmp(\".init.data\", section_name) == 0)\n"
+ "+\tif (strcmp(\".init.data\", section_name) = 0)\n"
  "+\t\treturn TEST_LINKTABLE_INIT_DATA;\n"
- "+\tif (strcmp(\".data\", section_name) == 0)\n"
+ "+\tif (strcmp(\".data\", section_name) = 0)\n"
  "+\t\treturn TEST_LINKTABLE;\n"
- "+\tif (strcmp(\".text\", section_name) == 0)\n"
+ "+\tif (strcmp(\".text\", section_name) = 0)\n"
  "+\t\treturn TEST_LINKTABLE_TEXT;\n"
- "+\tif (strcmp(\".rodata\", section_name) == 0)\n"
+ "+\tif (strcmp(\".rodata\", section_name) = 0)\n"
  "+\t\treturn TEST_LINKTABLE_TEXT;\n"
  "+\n"
  "+\treturn __TEST_LINKTABLE_INVALID;\n"
@@ -885,7 +885,7 @@
  "+{\n"
  "+\tchar *end;\n"
  "+\tlong new = simple_strtol(buf, &end, 0);\n"
- "+\tif (end == buf || new > INT_MAX || new < INT_MIN)\n"
+ "+\tif (end = buf || new > INT_MAX || new < INT_MIN)\n"
  "+\t\treturn -EINVAL;\n"
  "+\tmutex_lock(&test_dev->config_mutex);\n"
  "+\t*config = new;\n"
@@ -1158,4 +1158,4 @@
  "-- \n"
  2.10.1
 
-faf21f833bc964fde9b41f8088d5c0095d49cb24201f0860c8bc1c2829332450
+738db1f5d9d2cb684293249e33243de25ecff7a5160e0bb7bc70dd3932d1b738

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.