All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <20040924164837.E27778@unix-os.sc.intel.com>

diff --git a/a/1.txt b/N1/1.txt
index 16582c0..87847cd 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -9,7 +9,7 @@ the community feedback.
 ---
 Name:processor_drv.patch
 Status:Tested on 2.6.9-rc2
-Signed-off-by: Anil S Keshavamurthy <anil.s.keshavamurthy-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
+Signed-off-by: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
 Depends:	
 Version: applies on 2.6.9-rc2	
 Description:
@@ -47,10 +47,10 @@ diff -puN drivers/acpi/processor.c~processor_drv drivers/acpi/processor.c
 --- linux-2.6.9-rc2/drivers/acpi/processor.c~processor_drv	2004-09-24 15:26:30.495739232 -0700
 +++ linux-2.6.9-rc2-askeshav/drivers/acpi/processor.c	2004-09-24 15:26:30.591442356 -0700
 @@ -4,6 +4,8 @@
-  *  Copyright (C) 2001, 2002 Andy Grover <andrew.grover-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
-  *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
-  *  Copyright (C) 2004       Dominik Brodowski <linux-JhLEnvuH02M@public.gmane.org>
-+ *  Copyright (C) 2004  Anil S Keshavamurthy <anil.s.keshavamurthy-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
+  *  Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
+  *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
+  *  Copyright (C) 2004       Dominik Brodowski <linux@brodo.de>
++ *  Copyright (C) 2004  Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
 + *  			- Added processor hotplug support
   *
   * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -116,7 +116,7 @@ diff -puN drivers/acpi/processor.c~processor_drv drivers/acpi/processor.c
  
  	cpu_index = convert_acpiid_to_cpu(pr->acpi_id);
  
--	if ( !cpu0_initialized && (cpu_index == 0xff)) {
+-	if ( !cpu0_initialized && (cpu_index = 0xff)) {
 -		/* Handle UP system running SMP kernel, with no LAPIC in MADT */
 -		cpu_index = 0;
 -	} else if (cpu_index > num_online_cpus()) {
@@ -134,8 +134,8 @@ diff -puN drivers/acpi/processor.c~processor_drv drivers/acpi/processor.c
 -	pr->id = cpu_index;
 -
 +  	/* Handle UP system running SMP kernel, with no LAPIC in MADT */
-+  	if ( !cpu0_initialized && (cpu_index == 0xff) &&
-+  		       	(num_online_cpus() == 1)) {
++  	if ( !cpu0_initialized && (cpu_index = 0xff) &&
++  		       	(num_online_cpus() = 1)) {
 +   		cpu_index = 0;
 +   	}
 +
@@ -203,7 +203,7 @@ diff -puN drivers/acpi/processor.c~processor_drv drivers/acpi/processor.c
 +	 * Note that the default idle handler (default_idle) will be used on
 +	 * platforms that only support C1.
 +	 */
-+	if ((pr->id == 0) && (pr->flags.power)) {
++	if ((pr->id = 0) && (pr->flags.power)) {
 +		pm_idle_save = pm_idle;
 +		pm_idle = acpi_processor_idle;
 +	}
@@ -265,7 +265,7 @@ diff -puN drivers/acpi/processor.c~processor_drv drivers/acpi/processor.c
 -	 * Note that the default idle handler (default_idle) will be used on 
 -	 * platforms that only support C1.
 -	 */
--	if ((pr->id == 0) && (pr->flags.power)) {
+-	if ((pr->id = 0) && (pr->flags.power)) {
 -		pm_idle_save = pm_idle;
 -		pm_idle = acpi_processor_idle;
 -	}
@@ -299,13 +299,13 @@ diff -puN drivers/acpi/processor.c~processor_drv drivers/acpi/processor.c
 +		return_VALUE(0);
 +	}
 +
-+	if (type == ACPI_BUS_REMOVAL_EJECT) {
++	if (type = ACPI_BUS_REMOVAL_EJECT) {
 +		if (acpi_processor_handle_eject(pr))
 +			return_VALUE(-EINVAL);
 +	}
 +
  	/* Unregister the idle handler when processor #0 is removed. */
- 	if (pr->id == 0) {
+ 	if (pr->id = 0) {
  		pm_idle = pm_idle_save;
  		synchronize_kernel();
  	}
@@ -372,7 +372,7 @@ diff -puN drivers/acpi/processor.c~processor_drv drivers/acpi/processor.c
 +	envp[i++] = action_str;
 +	envp[i++] = processor_str;
 +	envp[i++] = cpu_str;
-+	envp[i++] = "PLATFORM=ACPI";
++	envp[i++] = "PLATFORM¬PI";
 +	envp[i] = NULL;
 +
 +	ret = call_usermodehelper(argv[0], argv, envp, 0);
@@ -453,7 +453,7 @@ diff -puN drivers/acpi/processor.c~processor_drv drivers/acpi/processor.c
 +	case ACPI_NOTIFY_BUS_CHECK:
 +	case ACPI_NOTIFY_DEVICE_CHECK:
 +		printk("Processor driver received %s event\n",
-+			(event==ACPI_NOTIFY_BUS_CHECK)?
++			(event=ACPI_NOTIFY_BUS_CHECK)?
 +			"ACPI_NOTIFY_BUS_CHECK":"ACPI_NOTIFY_DEVICE_CHECK");
 +
 +		if (!is_processor_present(handle))
@@ -649,11 +649,3 @@ diff -puN drivers/acpi/processor.c~processor_drv drivers/acpi/processor.c
  
  	remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
 _
-
-
-
--------------------------------------------------------
-This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
-Project Admins to receive an Apple iPod Mini FREE for your judgement on
-who ports your project to Linux PPC the best. Sponsored by IBM.
-Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
diff --git a/a/content_digest b/N1/content_digest
index 70f0de2..0b5681d 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,9 +1,10 @@
  "ref\020040920092520.A14208@unix-os.sc.intel.com\0"
  "ref\020040920094352.G14208@unix-os.sc.intel.com\0"
  "ref\020040920094352.G14208-39QZ/XbsZ5/mO6KZMuUCQVaTQe2KTcn/@public.gmane.org\0"
- "From\0Keshavamurthy Anil S <anil.s.keshavamurthy-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>\0"
+ "From\0Keshavamurthy Anil S <anil.s.keshavamurthy@intel.com>\0"
  "Subject\0Re: PATCH-ACPI based CPU hotplug[5/6]-ACPI processor driver extension\0"
- "Date\0Fri, 24 Sep 2004 16:48:38 -0700\0"
+ "Date\0Fri, 24 Sep 2004 23:48:38 +0000\0"
+ "To\0linux-ia64@vger.kernel.org\0"
  "Cc\0Len Brown <len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>"
   ACPI Developer <acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
   LHNS list <lhns-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
@@ -22,7 +23,7 @@
  "---\n"
  "Name:processor_drv.patch\n"
  "Status:Tested on 2.6.9-rc2\n"
- "Signed-off-by: Anil S Keshavamurthy <anil.s.keshavamurthy-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>\n"
+ "Signed-off-by: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>\n"
  "Depends:\t\n"
  "Version: applies on 2.6.9-rc2\t\n"
  "Description:\n"
@@ -60,10 +61,10 @@
  "--- linux-2.6.9-rc2/drivers/acpi/processor.c~processor_drv\t2004-09-24 15:26:30.495739232 -0700\n"
  "+++ linux-2.6.9-rc2-askeshav/drivers/acpi/processor.c\t2004-09-24 15:26:30.591442356 -0700\n"
  "@@ -4,6 +4,8 @@\n"
- "  *  Copyright (C) 2001, 2002 Andy Grover <andrew.grover-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>\n"
- "  *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>\n"
- "  *  Copyright (C) 2004       Dominik Brodowski <linux-JhLEnvuH02M@public.gmane.org>\n"
- "+ *  Copyright (C) 2004  Anil S Keshavamurthy <anil.s.keshavamurthy-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>\n"
+ "  *  Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>\n"
+ "  *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>\n"
+ "  *  Copyright (C) 2004       Dominik Brodowski <linux@brodo.de>\n"
+ "+ *  Copyright (C) 2004  Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>\n"
  "+ *  \t\t\t- Added processor hotplug support\n"
  "  *\n"
  "  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n"
@@ -129,7 +130,7 @@
  " \n"
  " \tcpu_index = convert_acpiid_to_cpu(pr->acpi_id);\n"
  " \n"
- "-\tif ( !cpu0_initialized && (cpu_index == 0xff)) {\n"
+ "-\tif ( !cpu0_initialized && (cpu_index = 0xff)) {\n"
  "-\t\t/* Handle UP system running SMP kernel, with no LAPIC in MADT */\n"
  "-\t\tcpu_index = 0;\n"
  "-\t} else if (cpu_index > num_online_cpus()) {\n"
@@ -147,8 +148,8 @@
  "-\tpr->id = cpu_index;\n"
  "-\n"
  "+  \t/* Handle UP system running SMP kernel, with no LAPIC in MADT */\n"
- "+  \tif ( !cpu0_initialized && (cpu_index == 0xff) &&\n"
- "+  \t\t       \t(num_online_cpus() == 1)) {\n"
+ "+  \tif ( !cpu0_initialized && (cpu_index = 0xff) &&\n"
+ "+  \t\t       \t(num_online_cpus() = 1)) {\n"
  "+   \t\tcpu_index = 0;\n"
  "+   \t}\n"
  "+\n"
@@ -216,7 +217,7 @@
  "+\t * Note that the default idle handler (default_idle) will be used on\n"
  "+\t * platforms that only support C1.\n"
  "+\t */\n"
- "+\tif ((pr->id == 0) && (pr->flags.power)) {\n"
+ "+\tif ((pr->id = 0) && (pr->flags.power)) {\n"
  "+\t\tpm_idle_save = pm_idle;\n"
  "+\t\tpm_idle = acpi_processor_idle;\n"
  "+\t}\n"
@@ -278,7 +279,7 @@
  "-\t * Note that the default idle handler (default_idle) will be used on \n"
  "-\t * platforms that only support C1.\n"
  "-\t */\n"
- "-\tif ((pr->id == 0) && (pr->flags.power)) {\n"
+ "-\tif ((pr->id = 0) && (pr->flags.power)) {\n"
  "-\t\tpm_idle_save = pm_idle;\n"
  "-\t\tpm_idle = acpi_processor_idle;\n"
  "-\t}\n"
@@ -312,13 +313,13 @@
  "+\t\treturn_VALUE(0);\n"
  "+\t}\n"
  "+\n"
- "+\tif (type == ACPI_BUS_REMOVAL_EJECT) {\n"
+ "+\tif (type = ACPI_BUS_REMOVAL_EJECT) {\n"
  "+\t\tif (acpi_processor_handle_eject(pr))\n"
  "+\t\t\treturn_VALUE(-EINVAL);\n"
  "+\t}\n"
  "+\n"
  " \t/* Unregister the idle handler when processor #0 is removed. */\n"
- " \tif (pr->id == 0) {\n"
+ " \tif (pr->id = 0) {\n"
  " \t\tpm_idle = pm_idle_save;\n"
  " \t\tsynchronize_kernel();\n"
  " \t}\n"
@@ -385,7 +386,7 @@
  "+\tenvp[i++] = action_str;\n"
  "+\tenvp[i++] = processor_str;\n"
  "+\tenvp[i++] = cpu_str;\n"
- "+\tenvp[i++] = \"PLATFORM=ACPI\";\n"
+ "+\tenvp[i++] = \"PLATFORM\302\254PI\";\n"
  "+\tenvp[i] = NULL;\n"
  "+\n"
  "+\tret = call_usermodehelper(argv[0], argv, envp, 0);\n"
@@ -466,7 +467,7 @@
  "+\tcase ACPI_NOTIFY_BUS_CHECK:\n"
  "+\tcase ACPI_NOTIFY_DEVICE_CHECK:\n"
  "+\t\tprintk(\"Processor driver received %s event\\n\",\n"
- "+\t\t\t(event==ACPI_NOTIFY_BUS_CHECK)?\n"
+ "+\t\t\t(event=ACPI_NOTIFY_BUS_CHECK)?\n"
  "+\t\t\t\"ACPI_NOTIFY_BUS_CHECK\":\"ACPI_NOTIFY_DEVICE_CHECK\");\n"
  "+\n"
  "+\t\tif (!is_processor_present(handle))\n"
@@ -661,14 +662,6 @@
  " \tacpi_bus_unregister_driver(&acpi_processor_driver);\n"
  " \n"
  " \tremove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);\n"
- "_\n"
- "\n"
- "\n"
- "\n"
- "-------------------------------------------------------\n"
- "This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170\n"
- "Project Admins to receive an Apple iPod Mini FREE for your judgement on\n"
- "who ports your project to Linux PPC the best. Sponsored by IBM.\n"
- Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
+ _
 
-1f0c643970c2f008b87ae4a29b195284aa60ac8cd201943fc9f8bd0972fab7ac
+05bdfdeca4ec0ddc67cf9f5c86868d69b84f9569e74b21b800cc679b5cea843e

diff --git a/a/1.txt b/N2/1.txt
index 16582c0..8beaf02 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -9,7 +9,7 @@ the community feedback.
 ---
 Name:processor_drv.patch
 Status:Tested on 2.6.9-rc2
-Signed-off-by: Anil S Keshavamurthy <anil.s.keshavamurthy-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
+Signed-off-by: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
 Depends:	
 Version: applies on 2.6.9-rc2	
 Description:
@@ -47,10 +47,10 @@ diff -puN drivers/acpi/processor.c~processor_drv drivers/acpi/processor.c
 --- linux-2.6.9-rc2/drivers/acpi/processor.c~processor_drv	2004-09-24 15:26:30.495739232 -0700
 +++ linux-2.6.9-rc2-askeshav/drivers/acpi/processor.c	2004-09-24 15:26:30.591442356 -0700
 @@ -4,6 +4,8 @@
-  *  Copyright (C) 2001, 2002 Andy Grover <andrew.grover-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
-  *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
-  *  Copyright (C) 2004       Dominik Brodowski <linux-JhLEnvuH02M@public.gmane.org>
-+ *  Copyright (C) 2004  Anil S Keshavamurthy <anil.s.keshavamurthy-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
+  *  Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
+  *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
+  *  Copyright (C) 2004       Dominik Brodowski <linux@brodo.de>
++ *  Copyright (C) 2004  Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
 + *  			- Added processor hotplug support
   *
   * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -649,11 +649,3 @@ diff -puN drivers/acpi/processor.c~processor_drv drivers/acpi/processor.c
  
  	remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
 _
-
-
-
--------------------------------------------------------
-This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
-Project Admins to receive an Apple iPod Mini FREE for your judgement on
-who ports your project to Linux PPC the best. Sponsored by IBM.
-Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
diff --git a/a/content_digest b/N2/content_digest
index 70f0de2..e470942 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -1,14 +1,14 @@
  "ref\020040920092520.A14208@unix-os.sc.intel.com\0"
  "ref\020040920094352.G14208@unix-os.sc.intel.com\0"
- "ref\020040920094352.G14208-39QZ/XbsZ5/mO6KZMuUCQVaTQe2KTcn/@public.gmane.org\0"
- "From\0Keshavamurthy Anil S <anil.s.keshavamurthy-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>\0"
+ "From\0Keshavamurthy Anil S <anil.s.keshavamurthy@intel.com>\0"
  "Subject\0Re: PATCH-ACPI based CPU hotplug[5/6]-ACPI processor driver extension\0"
  "Date\0Fri, 24 Sep 2004 16:48:38 -0700\0"
- "Cc\0Len Brown <len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>"
-  ACPI Developer <acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
-  LHNS list <lhns-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
-  Linux IA64 <linux-ia64-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
- " Linux Kernel <linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>\0"
+ "To\0Len Brown <len.brown@intel.com>\0"
+ "Cc\0Len Brown <len.brown@intel.com>"
+  ACPI Developer <acpi-devel@lists.sourceforge.net>
+  LHNS list <lhns-devel@lists.sourceforge.net>
+  Linux IA64 <linux-ia64@vger.kernel.org>
+ " Linux Kernel <linux-kernel@vger.kernel.org>\0"
  "\00:1\0"
  "b\0"
  "On Mon, Sep 20, 2004 at 09:43:52AM -0700, Keshavamurthy Anil S wrote:\n"
@@ -22,7 +22,7 @@
  "---\n"
  "Name:processor_drv.patch\n"
  "Status:Tested on 2.6.9-rc2\n"
- "Signed-off-by: Anil S Keshavamurthy <anil.s.keshavamurthy-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>\n"
+ "Signed-off-by: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>\n"
  "Depends:\t\n"
  "Version: applies on 2.6.9-rc2\t\n"
  "Description:\n"
@@ -60,10 +60,10 @@
  "--- linux-2.6.9-rc2/drivers/acpi/processor.c~processor_drv\t2004-09-24 15:26:30.495739232 -0700\n"
  "+++ linux-2.6.9-rc2-askeshav/drivers/acpi/processor.c\t2004-09-24 15:26:30.591442356 -0700\n"
  "@@ -4,6 +4,8 @@\n"
- "  *  Copyright (C) 2001, 2002 Andy Grover <andrew.grover-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>\n"
- "  *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>\n"
- "  *  Copyright (C) 2004       Dominik Brodowski <linux-JhLEnvuH02M@public.gmane.org>\n"
- "+ *  Copyright (C) 2004  Anil S Keshavamurthy <anil.s.keshavamurthy-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>\n"
+ "  *  Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>\n"
+ "  *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>\n"
+ "  *  Copyright (C) 2004       Dominik Brodowski <linux@brodo.de>\n"
+ "+ *  Copyright (C) 2004  Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>\n"
  "+ *  \t\t\t- Added processor hotplug support\n"
  "  *\n"
  "  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n"
@@ -661,14 +661,6 @@
  " \tacpi_bus_unregister_driver(&acpi_processor_driver);\n"
  " \n"
  " \tremove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);\n"
- "_\n"
- "\n"
- "\n"
- "\n"
- "-------------------------------------------------------\n"
- "This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170\n"
- "Project Admins to receive an Apple iPod Mini FREE for your judgement on\n"
- "who ports your project to Linux PPC the best. Sponsored by IBM.\n"
- Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
+ _
 
-1f0c643970c2f008b87ae4a29b195284aa60ac8cd201943fc9f8bd0972fab7ac
+7880f1695176585d33703e22f8d5929788253869684d9448691abff825b4d372

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.