+ tglx-debug.patch added to -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The patch titled
     a
has been added to the -mm tree.  Its filename is
     tglx-debug.patch

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

------------------------------------------------------
Subject: a
From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>

Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 drivers/acpi/hardware/hwsleep.c   |   36 +++++++++++++++++++++
 drivers/acpi/namespace/nsxfeval.c |   39 +++++++++++++++++++++++
 drivers/acpi/sleep/main.c         |    7 ++++
 drivers/acpi/sleep/wakeup.c       |    9 +++++
 include/linux/kernel.h            |    2 +
 kernel/power/disk.c               |   46 ++++++++++++++++++++++++++--
 kernel/power/snapshot.c           |    3 +
 kernel/power/swsusp.c             |   10 +++++-
 8 files changed, 147 insertions(+), 5 deletions(-)

diff -puN drivers/acpi/hardware/hwsleep.c~tglx-debug drivers/acpi/hardware/hwsleep.c
--- a/drivers/acpi/hardware/hwsleep.c~tglx-debug
+++ a/drivers/acpi/hardware/hwsleep.c
@@ -67,15 +67,18 @@ acpi_set_firmware_waking_vector(acpi_phy
 	acpi_status status;
 
 	ACPI_FUNCTION_TRACE(acpi_set_firmware_waking_vector);
+	MMMM();
 
 	/* Get the FACS */
 
 	status =
 	    acpi_get_table_by_index(ACPI_TABLE_INDEX_FACS,
 				    (struct acpi_table_header **)&facs);
+	MMMM();
 	if (ACPI_FAILURE(status)) {
 		return_ACPI_STATUS(status);
 	}
+	MMMM();
 
 	/* Set the vector */
 
@@ -83,13 +86,16 @@ acpi_set_firmware_waking_vector(acpi_phy
 		/*
 		 * ACPI 1.0 FACS or short table or optional X_ field is zero
 		 */
+	MMMM();
 		facs->firmware_waking_vector = (u32) physical_address;
 	} else {
 		/*
 		 * ACPI 2.0 FACS with valid X_ field
 		 */
+	MMMM();
 		facs->xfirmware_waking_vector = physical_address;
 	}
+	MMMM();
 
 	return_ACPI_STATUS(AE_OK);
 }
@@ -492,6 +498,9 @@ ACPI_EXPORT_SYMBOL(acpi_enter_sleep_stat
  *              Called with interrupts ENABLED.
  *
  ******************************************************************************/
+
+int akpm;
+
 acpi_status acpi_leave_sleep_state(u8 sleep_state)
 {
 	struct acpi_object_list arg_list;
@@ -504,6 +513,8 @@ acpi_status acpi_leave_sleep_state(u8 sl
 
 	ACPI_FUNCTION_TRACE(acpi_leave_sleep_state);
 
+	MMMM();
+
 	/*
 	 * Set SLP_TYPE and SLP_EN to state S0.
 	 * This is unclear from the ACPI Spec, but it is required
@@ -512,40 +523,50 @@ acpi_status acpi_leave_sleep_state(u8 sl
 	status = acpi_get_sleep_type_data(ACPI_STATE_S0,
 					  &acpi_gbl_sleep_type_a,
 					  &acpi_gbl_sleep_type_b);
+	MMMM();
 	if (ACPI_SUCCESS(status)) {
 		sleep_type_reg_info =
 		    acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_TYPE_A);
 		sleep_enable_reg_info =
 		    acpi_hw_get_bit_register_info(ACPI_BITREG_SLEEP_ENABLE);
 
+	MMMM();
 		/* Get current value of PM1A control */
 
 		status = acpi_hw_register_read(ACPI_MTX_DO_NOT_LOCK,
 					       ACPI_REGISTER_PM1_CONTROL,
 					       &PM1Acontrol);
+	MMMM();
 		if (ACPI_SUCCESS(status)) {
 
 			/* Clear SLP_EN and SLP_TYP fields */
 
+	MMMM();
 			PM1Acontrol &= ~(sleep_type_reg_info->access_bit_mask |
 					 sleep_enable_reg_info->
 					 access_bit_mask);
+	MMMM();
 			PM1Bcontrol = PM1Acontrol;
 
 			/* Insert SLP_TYP bits */
 
+	MMMM();
 			PM1Acontrol |=
 			    (acpi_gbl_sleep_type_a << sleep_type_reg_info->
 			     bit_position);
+	MMMM();
 			PM1Bcontrol |=
 			    (acpi_gbl_sleep_type_b << sleep_type_reg_info->
 			     bit_position);
+	MMMM();
 
 			/* Just ignore any errors */
+	MMMM();
 
 			(void)acpi_hw_register_write(ACPI_MTX_DO_NOT_LOCK,
 						     ACPI_REGISTER_PM1A_CONTROL,
 						     PM1Acontrol);
+	MMMM();
 			(void)acpi_hw_register_write(ACPI_MTX_DO_NOT_LOCK,
 						     ACPI_REGISTER_PM1B_CONTROL,
 						     PM1Bcontrol);
@@ -554,6 +575,7 @@ acpi_status acpi_leave_sleep_state(u8 sl
 
 	/* Ensure enter_sleep_state_prep -> enter_sleep_state ordering */
 
+	MMMM();
 	acpi_gbl_sleep_type_a = ACPI_SLEEP_TYPE_INVALID;
 
 	/* Setup parameter object */
@@ -561,6 +583,7 @@ acpi_status acpi_leave_sleep_state(u8 sl
 	arg_list.count = 1;
 	arg_list.pointer = &arg;
 	arg.type = ACPI_TYPE_INTEGER;
+	MMMM();
 
 	/* Ignore any errors from these methods */
 
@@ -569,18 +592,25 @@ acpi_status acpi_leave_sleep_state(u8 sl
 	if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
 		ACPI_EXCEPTION((AE_INFO, status, "During Method _SST"));
 	}
+	MMMM();
 
 	arg.integer.value = sleep_state;
 	status = acpi_evaluate_object(NULL, METHOD_NAME__BFS, &arg_list, NULL);
 	if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
 		ACPI_EXCEPTION((AE_INFO, status, "During Method _BFS"));
 	}
+	MMMM();
+	dump_stack();
 
+	akpm=1;
 	status = acpi_evaluate_object(NULL, METHOD_NAME__WAK, &arg_list, NULL);
+	akpm=0;
+	MMMM();
 	if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
 		ACPI_EXCEPTION((AE_INFO, status, "During Method _WAK"));
 	}
 	/* TBD: _WAK "sometimes" returns stuff - do we want to look at it? */
+	MMMM();
 
 	/*
 	 * Restore the GPEs:
@@ -591,28 +621,34 @@ acpi_status acpi_leave_sleep_state(u8 sl
 	if (ACPI_FAILURE(status)) {
 		return_ACPI_STATUS(status);
 	}
+	MMMM();
 	acpi_gbl_system_awake_and_running = TRUE;
+	MMMM();
 
 	status = acpi_hw_enable_all_runtime_gpes();
 	if (ACPI_FAILURE(status)) {
 		return_ACPI_STATUS(status);
 	}
+	MMMM();
 
 	/* Enable power button */
 
 	(void)
 	    acpi_set_register(acpi_gbl_fixed_event_info
 			      [ACPI_EVENT_POWER_BUTTON].enable_register_id, 1);
+	MMMM();
 
 	(void)
 	    acpi_set_register(acpi_gbl_fixed_event_info
 			      [ACPI_EVENT_POWER_BUTTON].status_register_id, 1);
+	MMMM();
 
 	arg.integer.value = ACPI_SST_WORKING;
 	status = acpi_evaluate_object(NULL, METHOD_NAME__SST, &arg_list, NULL);
 	if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
 		ACPI_EXCEPTION((AE_INFO, status, "During Method _SST"));
 	}
+	MMMM();
 
 	return_ACPI_STATUS(status);
 }
diff -puN drivers/acpi/namespace/nsxfeval.c~tglx-debug drivers/acpi/namespace/nsxfeval.c
--- a/drivers/acpi/namespace/nsxfeval.c~tglx-debug
+++ a/drivers/acpi/namespace/nsxfeval.c
@@ -46,6 +46,8 @@
 #include <acpi/acnamesp.h>
 #include <acpi/acinterp.h>
 
+extern int akpm;
+
 #define _COMPONENT          ACPI_NAMESPACE
 ACPI_MODULE_NAME("nsxfeval")
 #ifdef ACPI_FUTURE_USAGE
@@ -175,21 +177,27 @@ acpi_evaluate_object(acpi_handle handle,
 
 	ACPI_FUNCTION_TRACE(acpi_evaluate_object);
 
+	if (akpm) MMMM();
+
 	/* Allocate and initialize the evaluation information block */
 
 	info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
+	if (akpm) MMMM();
 	if (!info) {
 		return_ACPI_STATUS(AE_NO_MEMORY);
 	}
 
+	if (akpm) MMMM();
 	info->pathname = pathname;
 	info->parameter_type = ACPI_PARAM_ARGS;
 
 	/* Convert and validate the device handle */
 
 	info->prefix_node = acpi_ns_map_handle_to_node(handle);
+	if (akpm) MMMM();
 	if (!info->prefix_node) {
 		status = AE_BAD_PARAMETER;
+	if (akpm) MMMM();
 		goto cleanup;
 	}
 
@@ -202,24 +210,30 @@ acpi_evaluate_object(acpi_handle handle,
 		 * Allocate a new parameter block for the internal objects
 		 * Add 1 to count to allow for null terminated internal list
 		 */
+	if (akpm) MMMM();
 		info->parameters = ACPI_ALLOCATE_ZEROED(((acpi_size)
 							 external_params->
 							 count +
 							 1) * sizeof(void *));
+	if (akpm) MMMM();
 		if (!info->parameters) {
 			status = AE_NO_MEMORY;
 			goto cleanup;
 		}
 
+	if (akpm) MMMM();
 		/* Convert each external object in the list to an internal object */
 
 		for (i = 0; i < external_params->count; i++) {
+	if (akpm) MMMM();
 			status =
 			    acpi_ut_copy_eobject_to_iobject(&external_params->
 							    pointer[i],
 							    &info->
 							    parameters[i]);
+	if (akpm) MMMM();
 			if (ACPI_FAILURE(status)) {
+	if (akpm) MMMM();
 				goto cleanup;
 			}
 		}
@@ -236,6 +250,7 @@ acpi_evaluate_object(acpi_handle handle,
 
 		/* The path is fully qualified, just evaluate by name */
 
+	if (akpm) MMMM();
 		info->prefix_node = NULL;
 		status = acpi_ns_evaluate(info);
 	} else if (!handle) {
@@ -244,10 +259,13 @@ acpi_evaluate_object(acpi_handle handle,
 		 * Since we've already handled fully qualified names above, this is
 		 * an error
 		 */
+	if (akpm) MMMM();
 		if (!pathname) {
+	if (akpm) MMMM();
 			ACPI_DEBUG_PRINT((ACPI_DB_INFO,
 					  "Both Handle and Pathname are NULL"));
 		} else {
+	if (akpm) MMMM();
 			ACPI_DEBUG_PRINT((ACPI_DB_INFO,
 					  "Null Handle with relative pathname [%s]",
 					  pathname));
@@ -257,6 +275,7 @@ acpi_evaluate_object(acpi_handle handle,
 	} else {
 		/* We have a namespace a node and a possible relative path */
 
+	if (akpm) MMMM();
 		status = acpi_ns_evaluate(info);
 	}
 
@@ -265,9 +284,12 @@ acpi_evaluate_object(acpi_handle handle,
 	 * copy the return value to an external object.
 	 */
 	if (return_buffer) {
+	if (akpm) MMMM();
 		if (!info->return_object) {
+	if (akpm) MMMM();
 			return_buffer->length = 0;
 		} else {
+	if (akpm) MMMM();
 			if (ACPI_GET_DESCRIPTOR_TYPE(info->return_object) ==
 			    ACPI_DESC_TYPE_NAMED) {
 				/*
@@ -282,27 +304,33 @@ acpi_evaluate_object(acpi_handle handle,
 				info->return_object = NULL;	/* No need to delete a NS Node */
 				return_buffer->length = 0;
 			}
+	if (akpm) MMMM();
 
 			if (ACPI_SUCCESS(status)) {
 
 				/* Get the size of the returned object */
 
+	if (akpm) MMMM();
 				status =
 				    acpi_ut_get_object_size(info->return_object,
 							    &buffer_space_needed);
+	if (akpm) MMMM();
 				if (ACPI_SUCCESS(status)) {
 
 					/* Validate/Allocate/Clear caller buffer */
 
+	if (akpm) MMMM();
 					status =
 					    acpi_ut_initialize_buffer
 					    (return_buffer,
 					     buffer_space_needed);
+	if (akpm) MMMM();
 					if (ACPI_FAILURE(status)) {
 						/*
 						 * Caller's buffer is too small or a new one can't
 						 * be allocated
 						 */
+	if (akpm) MMMM();
 						ACPI_DEBUG_PRINT((ACPI_DB_INFO,
 								  "Needed buffer size %X, %s\n",
 								  (u32)
@@ -312,6 +340,7 @@ acpi_evaluate_object(acpi_handle handle,
 					} else {
 						/* We have enough space for the object, build it */
 
+	if (akpm) MMMM();
 						status =
 						    acpi_ut_copy_iobject_to_eobject
 						    (info->return_object,
@@ -322,18 +351,24 @@ acpi_evaluate_object(acpi_handle handle,
 		}
 	}
 
+	if (akpm) MMMM();
 	if (info->return_object) {
 		/*
 		 * Delete the internal return object. NOTE: Interpreter must be
 		 * locked to avoid race condition.
 		 */
+	if (akpm) MMMM();
 		status2 = acpi_ex_enter_interpreter();
+	if (akpm) MMMM();
 		if (ACPI_SUCCESS(status2)) {
 
 			/* Remove one reference on the return object (should delete it) */
 
+	if (akpm) MMMM();
 			acpi_ut_remove_reference(info->return_object);
+	if (akpm) MMMM();
 			acpi_ex_exit_interpreter();
+	if (akpm) MMMM();
 		}
 	}
 
@@ -341,14 +376,18 @@ acpi_evaluate_object(acpi_handle handle,
 
 	/* Free the input parameter list (if we created one) */
 
+	if (akpm) MMMM();
 	if (info->parameters) {
 
 		/* Free the allocated parameter block */
 
+	if (akpm) MMMM();
 		acpi_ut_delete_internal_object_list(info->parameters);
+	if (akpm) MMMM();
 	}
 
 	ACPI_FREE(info);
+	if (akpm) MMMM();
 	return_ACPI_STATUS(status);
 }
 
diff -puN drivers/acpi/sleep/main.c~tglx-debug drivers/acpi/sleep/main.c
--- a/drivers/acpi/sleep/main.c~tglx-debug
+++ a/drivers/acpi/sleep/main.c
@@ -205,15 +205,22 @@ static int acpi_hibernation_enter(void)
 
 static void acpi_hibernation_finish(void)
 {
+	MMMM();
 	acpi_leave_sleep_state(ACPI_STATE_S4);
+	MMMM();
 	acpi_disable_wakeup_device(ACPI_STATE_S4);
+	MMMM();
 
 	/* reset firmware waking vector */
 	acpi_set_firmware_waking_vector((acpi_physical_address) 0);
+	MMMM();
 
 	if (init_8259A_after_S1) {
+		MMMM();
 		printk("Broken toshiba laptop -> kicking interrupts\n");
+		MMMM();
 		init_8259A(0);
+		MMMM();
 	}
 }
 
diff -puN drivers/acpi/sleep/wakeup.c~tglx-debug drivers/acpi/sleep/wakeup.c
--- a/drivers/acpi/sleep/wakeup.c~tglx-debug
+++ a/drivers/acpi/sleep/wakeup.c
@@ -130,6 +130,7 @@ void acpi_disable_wakeup_device(u8 sleep
 	struct list_head *node, *next;
 
 	ACPI_FUNCTION_TRACE("acpi_disable_wakeup_device");
+	MMMM();
 
 	spin_lock(&acpi_device_lock);
 	list_for_each_safe(node, next, &acpi_wakeup_device_list) {
@@ -137,6 +138,7 @@ void acpi_disable_wakeup_device(u8 sleep
 						       struct acpi_device,
 						       wakeup_list);
 
+	MMMM();
 		if (dev->wakeup.flags.run_wake && !dev->wakeup.state.enabled) {
 			spin_unlock(&acpi_device_lock);
 			acpi_set_gpe_type(dev->wakeup.gpe_device,
@@ -149,13 +151,17 @@ void acpi_disable_wakeup_device(u8 sleep
 			continue;
 		}
 
+	MMMM();
 		if (!dev->wakeup.flags.valid ||
 		    !dev->wakeup.state.active ||
 		    (sleep_state > (u32) dev->wakeup.sleep_state))
 			continue;
+	MMMM();
 
 		spin_unlock(&acpi_device_lock);
+	MMMM();
 		acpi_disable_wakeup_device_power(dev);
+	MMMM();
 		/* Never disable run-wake GPE */
 		if (!dev->wakeup.flags.run_wake) {
 			acpi_disable_gpe(dev->wakeup.gpe_device,
@@ -163,10 +169,13 @@ void acpi_disable_wakeup_device(u8 sleep
 			acpi_clear_gpe(dev->wakeup.gpe_device,
 				       dev->wakeup.gpe_number, ACPI_NOT_ISR);
 		}
+	MMMM();
 		dev->wakeup.state.active = 0;
 		spin_lock(&acpi_device_lock);
+	MMMM();
 	}
 	spin_unlock(&acpi_device_lock);
+	MMMM();
 }
 
 static int acpi_platform_enable_wakeup(struct device *dev, int is_on)
diff -puN include/linux/kernel.h~tglx-debug include/linux/kernel.h
--- a/include/linux/kernel.h~tglx-debug
+++ a/include/linux/kernel.h
@@ -17,6 +17,8 @@
 #include <asm/byteorder.h>
 #include <asm/bug.h>
 
+#define MMMM()	printk("%s:%d\n", __FILE__, __LINE__)
+
 extern const char linux_banner[];
 extern const char linux_proc_banner[];
 
diff -puN kernel/power/disk.c~tglx-debug kernel/power/disk.c
--- a/kernel/power/disk.c~tglx-debug
+++ a/kernel/power/disk.c
@@ -87,8 +87,11 @@ static int platform_prepare(void)
 
 static void platform_finish(void)
 {
-	if (hibernation_mode == HIBERNATION_PLATFORM && hibernation_ops)
+	if (hibernation_mode == HIBERNATION_PLATFORM && hibernation_ops) {
+		printk("%p\n", hibernation_ops->finish);
+		MMMM();
 		hibernation_ops->finish();
+	}
 }
 
 /**
@@ -157,14 +160,17 @@ int hibernate(void)
 		return -EBUSY;
 
 	/* Allocate memory management structures */
+	MMMM();
 	error = create_basic_memory_bitmaps();
 	if (error)
 		goto Exit;
 
+	MMMM();
 	error = prepare_processes();
 	if (error)
 		goto Finish;
 
+	MMMM();
 	mutex_lock(&pm_mutex);
 	if (hibernation_mode == HIBERNATION_TESTPROC) {
 		printk("swsusp debug: Waiting for 5 seconds.\n");
@@ -173,65 +179,99 @@ int hibernate(void)
 	}
 
 	/* Free memory before shutting down devices. */
+	MMMM();
 	error = swsusp_shrink_memory();
 	if (error)
 		goto Thaw;
 
+	MMMM();
 	error = platform_prepare();
 	if (error)
 		goto Thaw;
 
+	MMMM();
 	suspend_console();
+	MMMM();
 	error = device_suspend(PMSG_FREEZE);
+	MMMM();
 	if (error) {
+		MMMM();
 		printk(KERN_ERR "PM: Some devices failed to suspend\n");
 		goto Resume_devices;
 	}
+	MMMM();
 	error = disable_nonboot_cpus();
 	if (error)
 		goto Enable_cpus;
 
+	MMMM();
 	if (hibernation_mode == HIBERNATION_TEST) {
+		MMMM();
 		printk("swsusp debug: Waiting for 5 seconds.\n");
 		mdelay(5000);
 		goto Enable_cpus;
 	}
 
+	MMMM();
 	pr_debug("PM: snapshotting memory.\n");
 	in_suspend = 1;
+	MMMM();
 	error = swsusp_suspend();
+	MMMM();
 	if (error)
 		goto Enable_cpus;
 
 	if (in_suspend) {
+		MMMM();
 		enable_nonboot_cpus();
+		MMMM();
 		platform_finish();
+		MMMM();
 		device_resume();
+		MMMM();
 		resume_console();
+		MMMM();
 		pr_debug("PM: writing image.\n");
+		MMMM();
 		error = swsusp_write();
-		if (!error)
+		MMMM();
+		if (!error) {
+			MMMM();
 			power_down();
-		else {
+		} else {
+			MMMM();
 			swsusp_free();
+			MMMM();
 			goto Thaw;
 		}
 	} else {
 		pr_debug("PM: Image restored successfully.\n");
 	}
 
+	MMMM();
 	swsusp_free();
+	MMMM();
  Enable_cpus:
+	MMMM();
 	enable_nonboot_cpus();
+	MMMM();
  Resume_devices:
+	MMMM();
 	platform_finish();
+	MMMM();
 	device_resume();
+	MMMM();
 	resume_console();
+	MMMM();
  Thaw:
 	mutex_unlock(&pm_mutex);
+	MMMM();
 	unprepare_processes();
+	MMMM();
  Finish:
+	MMMM();
 	free_basic_memory_bitmaps();
+	MMMM();
  Exit:
 	atomic_inc(&snapshot_device_available);
 	return error;
diff -puN kernel/power/snapshot.c~tglx-debug kernel/power/snapshot.c
--- a/kernel/power/snapshot.c~tglx-debug
+++ a/kernel/power/snapshot.c
@@ -1234,7 +1234,8 @@ asmlinkage int swsusp_save(void)
 	nr_meta_pages = DIV_ROUND_UP(nr_pages * sizeof(long), PAGE_SIZE);
 
 	printk("swsusp: critical section: done (%d pages copied)\n", nr_pages);
-
+	MMMM();
+	dump_stack();
 	return 0;
 }
 
diff -puN kernel/power/swsusp.c~tglx-debug kernel/power/swsusp.c
--- a/kernel/power/swsusp.c~tglx-debug
+++ a/kernel/power/swsusp.c
@@ -274,9 +274,11 @@ int swsusp_suspend(void)
 {
 	int error;
 
+	MMMM();
 	if ((error = arch_prepare_suspend()))
 		return error;
 
+	MMMM();
 	local_irq_disable();
 	/* At this point, device_suspend() has been called, but *not*
 	 * device_power_down(). We *must* device_power_down() now.
@@ -284,22 +286,28 @@ int swsusp_suspend(void)
 	 * become desynchronized with the actual state of the hardware
 	 * at resume time, and evil weirdness ensues.
 	 */
+	MMMM();
 	if ((error = device_power_down(PMSG_FREEZE))) {
 		printk(KERN_ERR "Some devices failed to power down, aborting suspend\n");
 		goto Enable_irqs;
 	}
-
+	MMMM();
 	save_processor_state();
 	if ((error = swsusp_arch_suspend()))
 		printk(KERN_ERR "Error %d suspending\n", error);
+	MMMM();
 	/* Restore control flow magically appears here */
 	restore_processor_state();
+	MMMM();
 	/* NOTE:  device_power_up() is just a resume() for devices
 	 * that suspended with irqs off ... no overall powerup.
 	 */
 	device_power_up();
+	MMMM();
  Enable_irqs:
+	MMMM();
 	local_irq_enable();
+	MMMM();
 	return error;
 }
 
_

Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are

origin.patch
revert-md-improve-partition-detection-in-md-array.patch
git-acpi.patch
git-acpi-export-acpi_set_cstate_limit.patch
git-alsa.patch
working-3d-dri-intel-agpko-resume-for-i815-chip-tidy.patch
git-avr32.patch
fix-gregkh-driver-sysfs-fix-error-handling-in-binattr-write.patch
cinergyt2-fix-file-release-handler.patch
git-hid-fixup.patch
git-ia64-sa_interrupt-is-deprecated.patch
sn-validate-smp_affinity-mask-on-intr-redirect-fix.patch
sn-validate-smp_affinity-mask-on-intr-redirect-fix-2.patch
git-ieee1394.patch
sbp2-include-fixes.patch
ieee1394-iso-needs-schedh.patch
pata_acpi-restore-driver-vs-libata-clean-up-sff-init-mess-fix.patch
git-battery.patch
git-parisc.patch
fix-gregkh-pci-pci-remove-the-broken-pci_multithread_probe-option.patch
git-pciseg.patch
scsi-fix-config_scsi_wait_scan=m.patch
git-block-fixup.patch
git-unionfs.patch
auerswald-fix-file-release-handler.patch
git-watchdog.patch
git-wireless.patch
git-wireless-fixup.patch
i386-map-enough-initial-memory-to-create-lowmem-mappings-fix.patch
i386-add-support-for-picopower-irq-router-fix.patch
blacklist-dell-optiplex-320-from-using-the-hpet.patch
x86_64-rename-and-export-bad_srat-to-kernel-code-fix.patch
x86_64-extract-helper-function-from-e820_register_active_regions-fix.patch
xfs-clean-up-shrinker-games.patch
change-zonelist-order-v6-zonelist-fix.patch
lazy-freeing-of-memory-through-madv_free.patch
add-__gfp_movable-for-callers-to-flag-allocations-from-high-memory-that-may-be-migrated.patch
bias-the-location-of-pages-freed-for-min_free_kbytes-in-the-same-max_order_nr_pages-blocks.patch
mm-merge-populate-and-nopage-into-fault-fixes-nonlinear.patch
mm-merge-nopfn-into-fault.patch
maps2-move-the-page-walker-code-to-lib.patch
maps2-add-proc-pid-pagemap-interface.patch
fix-kthread_create-vs-freezer-theoretical-race.patch
m32r-fix-switch_to-macro-to-push-pop-frame-pointer-if-fix.patch
cache-pipe-buf-page-address-for-non-highmem-arch.patch
upper-32-bits.patch
lib-hexdump.patch
use-write_trylock_irqsave-in-ptrace_attach-fix.patch
synclink_gt-add-compat_ioctl-fix.patch
tty-add-compat_ioctl.patch
mpc52xx-psc-spi-master-driver-update-tidy.patch
linux-kernel-markers-architecture-independant-code-update-fix.patch
linux-kernel-markers-powerpc-optimization-fix.patch
linux-kernel-markers-i386-optimization.patch
linux-kernel-markers-documentation-update.patch
signal-timer-event-fds-v9-signalfd-core.patch
signal-timer-event-fds-v9-timerfd-core.patch
signal-timer-event-fds-v9-eventfd-core.patch
revoke-wire-up-i386-system-calls.patch
lguest-the-host-code.patch
ntfs-use-zero_user_page.patch
pm3fb-preliminary-24-to-26-port-fix.patch
linuxpps-pulse-per-second-support-for-linux-fix.patch
reiser4.patch
integrity-new-hooks.patch
integrity-evm-as-an-integrity-service-provider.patch
integrity-ima-integrity_measure-support.patch
integrity-tpm-internal-kernel-interface.patch
w1-build-fix.patch
tglx-debug.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux