- remove-acpi_os_create_lock-acpi_os_delete_lock.patch removed from -mm tree

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

 



The patch titled

     Remove acpi_os_create_lock(), acpi_os_delete_lock()

has been removed from the -mm tree.  Its filename is

     remove-acpi_os_create_lock-acpi_os_delete_lock.patch

This patch was dropped because it was agreed to, but rejected by the maintainer(!)

------------------------------------------------------
Subject: Remove acpi_os_create_lock(), acpi_os_delete_lock()
From: Alexey Dobriyan <adobriyan@xxxxxxxxx>


Minimally intrusive patch to remove some overdesign in ACPI code. Based
on hch rant.

The only purpose of functions in question is to dynamically allocate one
global spinlock -- acpi_gbl_gpe_lock.  Instead, create it in .bss.

It's tempting to shoot acpi_os_release_lock() et al too.

Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx>
Cc: "Brown, Len" <len.brown@xxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxx>
---

 drivers/acpi/osl.c               |   30 -----------------------------
 drivers/acpi/utilities/utmutex.c |    6 +++--
 include/acpi/acpiosxf.h          |    4 ---
 3 files changed, 4 insertions(+), 36 deletions(-)

diff -puN drivers/acpi/osl.c~remove-acpi_os_create_lock-acpi_os_delete_lock drivers/acpi/osl.c
--- devel/drivers/acpi/osl.c~remove-acpi_os_create_lock-acpi_os_delete_lock	2006-06-01 20:17:08.000000000 -0700
+++ devel-akpm/drivers/acpi/osl.c	2006-06-01 20:17:08.000000000 -0700
@@ -668,36 +668,6 @@ void acpi_os_wait_events_complete(void *
 
 EXPORT_SYMBOL(acpi_os_wait_events_complete);
 
-/*
- * Allocate the memory for a spinlock and initialize it.
- */
-acpi_status acpi_os_create_lock(acpi_handle * out_handle)
-{
-	spinlock_t *lock_ptr;
-
-	lock_ptr = kmalloc(sizeof(spinlock_t), GFP_KERNEL);
-
-	spin_lock_init(lock_ptr);
-
-	ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Creating spinlock[%p].\n", lock_ptr));
-
-	*out_handle = lock_ptr;
-
-	return AE_OK;
-}
-
-/*
- * Deallocate the memory for a spinlock.
- */
-void acpi_os_delete_lock(acpi_handle handle)
-{
-	ACPI_DEBUG_PRINT((ACPI_DB_MUTEX, "Deleting spinlock[%p].\n", handle));
-
-	kfree(handle);
-
-	return;
-}
-
 acpi_status
 acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle)
 {
diff -puN drivers/acpi/utilities/utmutex.c~remove-acpi_os_create_lock-acpi_os_delete_lock drivers/acpi/utilities/utmutex.c
--- devel/drivers/acpi/utilities/utmutex.c~remove-acpi_os_create_lock-acpi_os_delete_lock	2006-06-01 20:17:08.000000000 -0700
+++ devel-akpm/drivers/acpi/utilities/utmutex.c	2006-06-01 20:17:08.000000000 -0700
@@ -51,6 +51,8 @@ static acpi_status acpi_ut_create_mutex(
 
 static acpi_status acpi_ut_delete_mutex(acpi_mutex_handle mutex_id);
 
+static spinlock_t __acpi_gbl_gpe_lock;
+
 /*******************************************************************************
  *
  * FUNCTION:    acpi_ut_mutex_initialize
@@ -80,7 +82,8 @@ acpi_status acpi_ut_mutex_initialize(voi
 		}
 	}
 
-	status = acpi_os_create_lock(&acpi_gbl_gpe_lock);
+	spin_lock_init(&__acpi_gbl_gpe_lock);
+	acpi_gbl_gpe_lock = &__acpi_gbl_gpe_lock;
 	return_ACPI_STATUS(status);
 }
 
@@ -109,7 +112,6 @@ void acpi_ut_mutex_terminate(void)
 		(void)acpi_ut_delete_mutex(i);
 	}
 
-	acpi_os_delete_lock(acpi_gbl_gpe_lock);
 	return_VOID;
 }
 
diff -puN include/acpi/acpiosxf.h~remove-acpi_os_create_lock-acpi_os_delete_lock include/acpi/acpiosxf.h
--- devel/include/acpi/acpiosxf.h~remove-acpi_os_create_lock-acpi_os_delete_lock	2006-06-01 20:17:08.000000000 -0700
+++ devel-akpm/include/acpi/acpiosxf.h	2006-06-01 20:17:08.000000000 -0700
@@ -108,10 +108,6 @@ acpi_status acpi_os_wait_semaphore(acpi_
 
 acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units);
 
-acpi_status acpi_os_create_lock(acpi_handle * out_handle);
-
-void acpi_os_delete_lock(acpi_handle handle);
-
 acpi_cpu_flags acpi_os_acquire_lock(acpi_handle handle);
 
 void acpi_os_release_lock(acpi_handle handle, acpi_cpu_flags flags);
_

Patches currently in -mm which might be from adobriyan@xxxxxxxxx are

git-acpi.patch
remove-acpi_os_create_lock-acpi_os_delete_lock.patch
git-block.patch
eth1394-endian-fixes.patch
sata_sil24-endian-anotations.patch
git-mtd.patch
git-netdev-all.patch
git-net.patch
nfs-really-return-status-from-decode_recall_args.patch
x86-dont-trigger-full-rebuild-via-config_mtrr.patch
dont-trigger-full-rebuild-via-config_x86_mce.patch
remove-config_parport_arc-drivers-parport-parport_arcc.patch
two-additions-to-linux-documentation-ioctl-numbertxt.patch
more-bug_on-conversion.patch
emu10k1-mark-midi_spinlock-as-used.patch
nbd-endian-annotations.patch
documentation-ioctl-messtxt-start-tree-wide-ioctl-registry.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