All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <20161114053627.GC19995@x1>

diff --git a/a/1.txt b/N1/1.txt
index 021b0dd..f81a6a4 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -487,7 +487,7 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > +
 > +		/* get the start of the range */
 > +		start = memparse(cur, &tmp);
-> +		if (cur == tmp) {
+> +		if (cur = tmp) {
 > +			pr_warn("crashkernel: Memory value expected\n");
 > +			return -EINVAL;
 > +		}
@@ -501,7 +501,7 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > +		/* if no ':' is here, than we read the end */
 > +		if (*cur != ':') {
 > +			end = memparse(cur, &tmp);
-> +			if (cur == tmp) {
+> +			if (cur = tmp) {
 > +				pr_warn("crashkernel: Memory value expected\n");
 > +				return -EINVAL;
 > +			}
@@ -519,7 +519,7 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > +		cur++;
 > +
 > +		size = memparse(cur, &tmp);
-> +		if (cur == tmp) {
+> +		if (cur = tmp) {
 > +			pr_warn("Memory value expected\n");
 > +			return -EINVAL;
 > +		}
@@ -534,15 +534,15 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > +			*crash_size = size;
 > +			break;
 > +		}
-> +	} while (*cur++ == ',');
+> +	} while (*cur++ = ',');
 > +
 > +	if (*crash_size > 0) {
 > +		while (*cur && *cur != ' ' && *cur != '@')
 > +			cur++;
-> +		if (*cur == '@') {
+> +		if (*cur = '@') {
 > +			cur++;
 > +			*crash_base = memparse(cur, &tmp);
-> +			if (cur == tmp) {
+> +			if (cur = tmp) {
 > +				pr_warn("Memory value expected after '@'\n");
 > +				return -EINVAL;
 > +			}
@@ -566,12 +566,12 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > +	char *cur = cmdline;
 > +
 > +	*crash_size = memparse(cmdline, &cur);
-> +	if (cmdline == cur) {
+> +	if (cmdline = cur) {
 > +		pr_warn("crashkernel: memory value expected\n");
 > +		return -EINVAL;
 > +	}
 > +
-> +	if (*cur == '@')
+> +	if (*cur = '@')
 > +		*crash_base = memparse(cur+1, &cur);
 > +	else if (*cur != ' ' && *cur != '\0') {
 > +		pr_warn("crashkernel: unrecognized char: %c\n", *cur);
@@ -604,7 +604,7 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > +	char *cur = cmdline;
 > +
 > +	*crash_size = memparse(cmdline, &cur);
-> +	if (cmdline == cur) {
+> +	if (cmdline = cur) {
 > +		pr_warn("crashkernel: memory value expected\n");
 > +		return -EINVAL;
 > +	}
@@ -973,7 +973,7 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > -
 > -		/* get the start of the range */
 > -		start = memparse(cur, &tmp);
-> -		if (cur == tmp) {
+> -		if (cur = tmp) {
 > -			pr_warn("crashkernel: Memory value expected\n");
 > -			return -EINVAL;
 > -		}
@@ -987,7 +987,7 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > -		/* if no ':' is here, than we read the end */
 > -		if (*cur != ':') {
 > -			end = memparse(cur, &tmp);
-> -			if (cur == tmp) {
+> -			if (cur = tmp) {
 > -				pr_warn("crashkernel: Memory value expected\n");
 > -				return -EINVAL;
 > -			}
@@ -1005,7 +1005,7 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > -		cur++;
 > -
 > -		size = memparse(cur, &tmp);
-> -		if (cur == tmp) {
+> -		if (cur = tmp) {
 > -			pr_warn("Memory value expected\n");
 > -			return -EINVAL;
 > -		}
@@ -1020,15 +1020,15 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > -			*crash_size = size;
 > -			break;
 > -		}
-> -	} while (*cur++ == ',');
+> -	} while (*cur++ = ',');
 > -
 > -	if (*crash_size > 0) {
 > -		while (*cur && *cur != ' ' && *cur != '@')
 > -			cur++;
-> -		if (*cur == '@') {
+> -		if (*cur = '@') {
 > -			cur++;
 > -			*crash_base = memparse(cur, &tmp);
-> -			if (cur == tmp) {
+> -			if (cur = tmp) {
 > -				pr_warn("Memory value expected after '@'\n");
 > -				return -EINVAL;
 > -			}
@@ -1052,12 +1052,12 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > -	char *cur = cmdline;
 > -
 > -	*crash_size = memparse(cmdline, &cur);
-> -	if (cmdline == cur) {
+> -	if (cmdline = cur) {
 > -		pr_warn("crashkernel: memory value expected\n");
 > -		return -EINVAL;
 > -	}
 > -
-> -	if (*cur == '@')
+> -	if (*cur = '@')
 > -		*crash_base = memparse(cur+1, &cur);
 > -	else if (*cur != ' ' && *cur != '\0') {
 > -		pr_warn("crashkernel: unrecognized char: %c\n", *cur);
@@ -1090,7 +1090,7 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > -	char *cur = cmdline;
 > -
 > -	*crash_size = memparse(cmdline, &cur);
-> -	if (cmdline == cur) {
+> -	if (cmdline = cur) {
 > -		pr_warn("crashkernel: memory value expected\n");
 > -		return -EINVAL;
 > -	}
@@ -1355,8 +1355,3 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > kexec mailing list
 > kexec@lists.infradead.org
 > http://lists.infradead.org/mailman/listinfo/kexec
-
-_______________________________________________
-kexec mailing list
-kexec@lists.infradead.org
-http://lists.infradead.org/mailman/listinfo/kexec
diff --git a/a/content_digest b/N1/content_digest
index 7d72c87..ccc1062 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -2,17 +2,17 @@
  "ref\0147877904646.31483.2251653505359017982.stgit@hbathini.in.ibm.com\0"
  "From\0Baoquan He <bhe@redhat.com>\0"
  "Subject\0Re: [PATCH 1/3] crash: move crashkernel parsing and vmcore related code under CONFIG_CRASH_CORE\0"
- "Date\0Mon, 14 Nov 2016 13:36:27 +0800\0"
+ "Date\0Mon, 14 Nov 2016 05:36:27 +0000\0"
  "To\0Hari Bathini <hbathini@linux.vnet.ibm.com>\0"
- "Cc\0fenghua.yu@intel.com"
+ "Cc\0linux-kernel@vger.kernel.org"
+  fenghua.yu@intel.com
   tony.luck@intel.com
   linux-ia64@vger.kernel.org
-  Michael Ellerman <mpe@ellerman.id.au>
-  dyoung@redhat.com
   kexec@lists.infradead.org
-  linux-kernel@vger.kernel.org
-  ebiederm@xmission.com
   linuxppc-dev@lists.ozlabs.org
+  ebiederm@xmission.com
+  Michael Ellerman <mpe@ellerman.id.au>
+  dyoung@redhat.com
  " vgoyal@redhat.com\0"
  "\00:1\0"
  "b\0"
@@ -505,7 +505,7 @@
  "> +\n"
  "> +\t\t/* get the start of the range */\n"
  "> +\t\tstart = memparse(cur, &tmp);\n"
- "> +\t\tif (cur == tmp) {\n"
+ "> +\t\tif (cur = tmp) {\n"
  "> +\t\t\tpr_warn(\"crashkernel: Memory value expected\\n\");\n"
  "> +\t\t\treturn -EINVAL;\n"
  "> +\t\t}\n"
@@ -519,7 +519,7 @@
  "> +\t\t/* if no ':' is here, than we read the end */\n"
  "> +\t\tif (*cur != ':') {\n"
  "> +\t\t\tend = memparse(cur, &tmp);\n"
- "> +\t\t\tif (cur == tmp) {\n"
+ "> +\t\t\tif (cur = tmp) {\n"
  "> +\t\t\t\tpr_warn(\"crashkernel: Memory value expected\\n\");\n"
  "> +\t\t\t\treturn -EINVAL;\n"
  "> +\t\t\t}\n"
@@ -537,7 +537,7 @@
  "> +\t\tcur++;\n"
  "> +\n"
  "> +\t\tsize = memparse(cur, &tmp);\n"
- "> +\t\tif (cur == tmp) {\n"
+ "> +\t\tif (cur = tmp) {\n"
  "> +\t\t\tpr_warn(\"Memory value expected\\n\");\n"
  "> +\t\t\treturn -EINVAL;\n"
  "> +\t\t}\n"
@@ -552,15 +552,15 @@
  "> +\t\t\t*crash_size = size;\n"
  "> +\t\t\tbreak;\n"
  "> +\t\t}\n"
- "> +\t} while (*cur++ == ',');\n"
+ "> +\t} while (*cur++ = ',');\n"
  "> +\n"
  "> +\tif (*crash_size > 0) {\n"
  "> +\t\twhile (*cur && *cur != ' ' && *cur != '@')\n"
  "> +\t\t\tcur++;\n"
- "> +\t\tif (*cur == '@') {\n"
+ "> +\t\tif (*cur = '@') {\n"
  "> +\t\t\tcur++;\n"
  "> +\t\t\t*crash_base = memparse(cur, &tmp);\n"
- "> +\t\t\tif (cur == tmp) {\n"
+ "> +\t\t\tif (cur = tmp) {\n"
  "> +\t\t\t\tpr_warn(\"Memory value expected after '@'\\n\");\n"
  "> +\t\t\t\treturn -EINVAL;\n"
  "> +\t\t\t}\n"
@@ -584,12 +584,12 @@
  "> +\tchar *cur = cmdline;\n"
  "> +\n"
  "> +\t*crash_size = memparse(cmdline, &cur);\n"
- "> +\tif (cmdline == cur) {\n"
+ "> +\tif (cmdline = cur) {\n"
  "> +\t\tpr_warn(\"crashkernel: memory value expected\\n\");\n"
  "> +\t\treturn -EINVAL;\n"
  "> +\t}\n"
  "> +\n"
- "> +\tif (*cur == '@')\n"
+ "> +\tif (*cur = '@')\n"
  "> +\t\t*crash_base = memparse(cur+1, &cur);\n"
  "> +\telse if (*cur != ' ' && *cur != '\\0') {\n"
  "> +\t\tpr_warn(\"crashkernel: unrecognized char: %c\\n\", *cur);\n"
@@ -622,7 +622,7 @@
  "> +\tchar *cur = cmdline;\n"
  "> +\n"
  "> +\t*crash_size = memparse(cmdline, &cur);\n"
- "> +\tif (cmdline == cur) {\n"
+ "> +\tif (cmdline = cur) {\n"
  "> +\t\tpr_warn(\"crashkernel: memory value expected\\n\");\n"
  "> +\t\treturn -EINVAL;\n"
  "> +\t}\n"
@@ -991,7 +991,7 @@
  "> -\n"
  "> -\t\t/* get the start of the range */\n"
  "> -\t\tstart = memparse(cur, &tmp);\n"
- "> -\t\tif (cur == tmp) {\n"
+ "> -\t\tif (cur = tmp) {\n"
  "> -\t\t\tpr_warn(\"crashkernel: Memory value expected\\n\");\n"
  "> -\t\t\treturn -EINVAL;\n"
  "> -\t\t}\n"
@@ -1005,7 +1005,7 @@
  "> -\t\t/* if no ':' is here, than we read the end */\n"
  "> -\t\tif (*cur != ':') {\n"
  "> -\t\t\tend = memparse(cur, &tmp);\n"
- "> -\t\t\tif (cur == tmp) {\n"
+ "> -\t\t\tif (cur = tmp) {\n"
  "> -\t\t\t\tpr_warn(\"crashkernel: Memory value expected\\n\");\n"
  "> -\t\t\t\treturn -EINVAL;\n"
  "> -\t\t\t}\n"
@@ -1023,7 +1023,7 @@
  "> -\t\tcur++;\n"
  "> -\n"
  "> -\t\tsize = memparse(cur, &tmp);\n"
- "> -\t\tif (cur == tmp) {\n"
+ "> -\t\tif (cur = tmp) {\n"
  "> -\t\t\tpr_warn(\"Memory value expected\\n\");\n"
  "> -\t\t\treturn -EINVAL;\n"
  "> -\t\t}\n"
@@ -1038,15 +1038,15 @@
  "> -\t\t\t*crash_size = size;\n"
  "> -\t\t\tbreak;\n"
  "> -\t\t}\n"
- "> -\t} while (*cur++ == ',');\n"
+ "> -\t} while (*cur++ = ',');\n"
  "> -\n"
  "> -\tif (*crash_size > 0) {\n"
  "> -\t\twhile (*cur && *cur != ' ' && *cur != '@')\n"
  "> -\t\t\tcur++;\n"
- "> -\t\tif (*cur == '@') {\n"
+ "> -\t\tif (*cur = '@') {\n"
  "> -\t\t\tcur++;\n"
  "> -\t\t\t*crash_base = memparse(cur, &tmp);\n"
- "> -\t\t\tif (cur == tmp) {\n"
+ "> -\t\t\tif (cur = tmp) {\n"
  "> -\t\t\t\tpr_warn(\"Memory value expected after '@'\\n\");\n"
  "> -\t\t\t\treturn -EINVAL;\n"
  "> -\t\t\t}\n"
@@ -1070,12 +1070,12 @@
  "> -\tchar *cur = cmdline;\n"
  "> -\n"
  "> -\t*crash_size = memparse(cmdline, &cur);\n"
- "> -\tif (cmdline == cur) {\n"
+ "> -\tif (cmdline = cur) {\n"
  "> -\t\tpr_warn(\"crashkernel: memory value expected\\n\");\n"
  "> -\t\treturn -EINVAL;\n"
  "> -\t}\n"
  "> -\n"
- "> -\tif (*cur == '@')\n"
+ "> -\tif (*cur = '@')\n"
  "> -\t\t*crash_base = memparse(cur+1, &cur);\n"
  "> -\telse if (*cur != ' ' && *cur != '\\0') {\n"
  "> -\t\tpr_warn(\"crashkernel: unrecognized char: %c\\n\", *cur);\n"
@@ -1108,7 +1108,7 @@
  "> -\tchar *cur = cmdline;\n"
  "> -\n"
  "> -\t*crash_size = memparse(cmdline, &cur);\n"
- "> -\tif (cmdline == cur) {\n"
+ "> -\tif (cmdline = cur) {\n"
  "> -\t\tpr_warn(\"crashkernel: memory value expected\\n\");\n"
  "> -\t\treturn -EINVAL;\n"
  "> -\t}\n"
@@ -1372,11 +1372,6 @@
  "> _______________________________________________\n"
  "> kexec mailing list\n"
  "> kexec@lists.infradead.org\n"
- "> http://lists.infradead.org/mailman/listinfo/kexec\n"
- "\n"
- "_______________________________________________\n"
- "kexec mailing list\n"
- "kexec@lists.infradead.org\n"
- http://lists.infradead.org/mailman/listinfo/kexec
+ > http://lists.infradead.org/mailman/listinfo/kexec
 
-c150bc4567c31c6460e6996d7ce85828414e63a4d53623156056ad77a151b1bc
+d089ac97fdb21c6e96f59e2dd618e922baf1e9a47fac23ab42ecee3386c977f1

diff --git a/a/1.txt b/N2/1.txt
index 021b0dd..39b0a43 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -1355,8 +1355,3 @@ Besides there's already a file crash_dump.h, can we reuse that?
 > kexec mailing list
 > kexec@lists.infradead.org
 > http://lists.infradead.org/mailman/listinfo/kexec
-
-_______________________________________________
-kexec mailing list
-kexec@lists.infradead.org
-http://lists.infradead.org/mailman/listinfo/kexec
diff --git a/a/content_digest b/N2/content_digest
index 7d72c87..81ab6b8 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -4,15 +4,15 @@
  "Subject\0Re: [PATCH 1/3] crash: move crashkernel parsing and vmcore related code under CONFIG_CRASH_CORE\0"
  "Date\0Mon, 14 Nov 2016 13:36:27 +0800\0"
  "To\0Hari Bathini <hbathini@linux.vnet.ibm.com>\0"
- "Cc\0fenghua.yu@intel.com"
+ "Cc\0linux-kernel@vger.kernel.org"
+  fenghua.yu@intel.com
   tony.luck@intel.com
   linux-ia64@vger.kernel.org
-  Michael Ellerman <mpe@ellerman.id.au>
-  dyoung@redhat.com
   kexec@lists.infradead.org
-  linux-kernel@vger.kernel.org
-  ebiederm@xmission.com
   linuxppc-dev@lists.ozlabs.org
+  ebiederm@xmission.com
+  Michael Ellerman <mpe@ellerman.id.au>
+  dyoung@redhat.com
  " vgoyal@redhat.com\0"
  "\00:1\0"
  "b\0"
@@ -1372,11 +1372,6 @@
  "> _______________________________________________\n"
  "> kexec mailing list\n"
  "> kexec@lists.infradead.org\n"
- "> http://lists.infradead.org/mailman/listinfo/kexec\n"
- "\n"
- "_______________________________________________\n"
- "kexec mailing list\n"
- "kexec@lists.infradead.org\n"
- http://lists.infradead.org/mailman/listinfo/kexec
+ > http://lists.infradead.org/mailman/listinfo/kexec
 
-c150bc4567c31c6460e6996d7ce85828414e63a4d53623156056ad77a151b1bc
+31ca3556d19dfa7dc38f9c099ebe84b6bf7b9eb38e1a4394d76672c6d989d4c1

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.