diff options
author | Ingo Molnar <mingo@elte.hu> | 2006-03-26 04:37:14 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-26 11:56:55 -0500 |
commit | 14cc3e2b633bb64063698980974df4535368e98f (patch) | |
tree | d542c9db7376de199d640b8e34d5630460b217b5 /drivers/pci | |
parent | 353ab6e97b8f209dbecc9f650f1f84e3da2a7bb1 (diff) |
[PATCH] sem2mutex: misc static one-file mutexes
Semaphore to mutex conversion.
The conversion was generated via scripts, and the result was validated
automatically via a script as well.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Cc: Dave Jones <davej@codemonkey.org.uk>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Jens Axboe <axboe@suse.de>
Cc: Neil Brown <neilb@cse.unsw.edu.au>
Acked-by: Alasdair G Kergon <agk@redhat.com>
Cc: Greg KH <greg@kroah.com>
Cc: Dominik Brodowski <linux@dominikbrodowski.net>
Cc: Adam Belay <ambx1@neo.rr.com>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/hotplug/rpadlpar_core.c | 12 | ||||
-rw-r--r-- | drivers/pci/hotplug/sgi_hotplug.c | 19 |
2 files changed, 16 insertions, 15 deletions
diff --git a/drivers/pci/hotplug/rpadlpar_core.c b/drivers/pci/hotplug/rpadlpar_core.c index 3eefe2cec72d..46825fee3ae4 100644 --- a/drivers/pci/hotplug/rpadlpar_core.c +++ b/drivers/pci/hotplug/rpadlpar_core.c | |||
@@ -19,7 +19,7 @@ | |||
19 | #include <linux/string.h> | 19 | #include <linux/string.h> |
20 | 20 | ||
21 | #include <asm/pci-bridge.h> | 21 | #include <asm/pci-bridge.h> |
22 | #include <asm/semaphore.h> | 22 | #include <linux/mutex.h> |
23 | #include <asm/rtas.h> | 23 | #include <asm/rtas.h> |
24 | #include <asm/vio.h> | 24 | #include <asm/vio.h> |
25 | 25 | ||
@@ -27,7 +27,7 @@ | |||
27 | #include "rpaphp.h" | 27 | #include "rpaphp.h" |
28 | #include "rpadlpar.h" | 28 | #include "rpadlpar.h" |
29 | 29 | ||
30 | static DECLARE_MUTEX(rpadlpar_sem); | 30 | static DEFINE_MUTEX(rpadlpar_mutex); |
31 | 31 | ||
32 | #define DLPAR_MODULE_NAME "rpadlpar_io" | 32 | #define DLPAR_MODULE_NAME "rpadlpar_io" |
33 | 33 | ||
@@ -300,7 +300,7 @@ int dlpar_add_slot(char *drc_name) | |||
300 | int node_type; | 300 | int node_type; |
301 | int rc = -EIO; | 301 | int rc = -EIO; |
302 | 302 | ||
303 | if (down_interruptible(&rpadlpar_sem)) | 303 | if (mutex_lock_interruptible(&rpadlpar_mutex)) |
304 | return -ERESTARTSYS; | 304 | return -ERESTARTSYS; |
305 | 305 | ||
306 | /* Find newly added node */ | 306 | /* Find newly added node */ |
@@ -324,7 +324,7 @@ int dlpar_add_slot(char *drc_name) | |||
324 | 324 | ||
325 | printk(KERN_INFO "%s: slot %s added\n", DLPAR_MODULE_NAME, drc_name); | 325 | printk(KERN_INFO "%s: slot %s added\n", DLPAR_MODULE_NAME, drc_name); |
326 | exit: | 326 | exit: |
327 | up(&rpadlpar_sem); | 327 | mutex_unlock(&rpadlpar_mutex); |
328 | return rc; | 328 | return rc; |
329 | } | 329 | } |
330 | 330 | ||
@@ -417,7 +417,7 @@ int dlpar_remove_slot(char *drc_name) | |||
417 | int node_type; | 417 | int node_type; |
418 | int rc = 0; | 418 | int rc = 0; |
419 | 419 | ||
420 | if (down_interruptible(&rpadlpar_sem)) | 420 | if (mutex_lock_interruptible(&rpadlpar_mutex)) |
421 | return -ERESTARTSYS; | 421 | return -ERESTARTSYS; |
422 | 422 | ||
423 | dn = find_dlpar_node(drc_name, &node_type); | 423 | dn = find_dlpar_node(drc_name, &node_type); |
@@ -439,7 +439,7 @@ int dlpar_remove_slot(char *drc_name) | |||
439 | } | 439 | } |
440 | printk(KERN_INFO "%s: slot %s removed\n", DLPAR_MODULE_NAME, drc_name); | 440 | printk(KERN_INFO "%s: slot %s removed\n", DLPAR_MODULE_NAME, drc_name); |
441 | exit: | 441 | exit: |
442 | up(&rpadlpar_sem); | 442 | mutex_unlock(&rpadlpar_mutex); |
443 | return rc; | 443 | return rc; |
444 | } | 444 | } |
445 | 445 | ||
diff --git a/drivers/pci/hotplug/sgi_hotplug.c b/drivers/pci/hotplug/sgi_hotplug.c index c402da8e78ae..8cb9abde736b 100644 --- a/drivers/pci/hotplug/sgi_hotplug.c +++ b/drivers/pci/hotplug/sgi_hotplug.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/pci.h> | 15 | #include <linux/pci.h> |
16 | #include <linux/proc_fs.h> | 16 | #include <linux/proc_fs.h> |
17 | #include <linux/types.h> | 17 | #include <linux/types.h> |
18 | #include <linux/mutex.h> | ||
18 | 19 | ||
19 | #include <asm/sn/addrs.h> | 20 | #include <asm/sn/addrs.h> |
20 | #include <asm/sn/l1.h> | 21 | #include <asm/sn/l1.h> |
@@ -81,7 +82,7 @@ static struct hotplug_slot_ops sn_hotplug_slot_ops = { | |||
81 | .get_power_status = get_power_status, | 82 | .get_power_status = get_power_status, |
82 | }; | 83 | }; |
83 | 84 | ||
84 | static DECLARE_MUTEX(sn_hotplug_sem); | 85 | static DEFINE_MUTEX(sn_hotplug_mutex); |
85 | 86 | ||
86 | static ssize_t path_show (struct hotplug_slot *bss_hotplug_slot, | 87 | static ssize_t path_show (struct hotplug_slot *bss_hotplug_slot, |
87 | char *buf) | 88 | char *buf) |
@@ -346,7 +347,7 @@ static int enable_slot(struct hotplug_slot *bss_hotplug_slot) | |||
346 | int rc; | 347 | int rc; |
347 | 348 | ||
348 | /* Serialize the Linux PCI infrastructure */ | 349 | /* Serialize the Linux PCI infrastructure */ |
349 | down(&sn_hotplug_sem); | 350 | mutex_lock(&sn_hotplug_mutex); |
350 | 351 | ||
351 | /* | 352 | /* |
352 | * Power-on and initialize the slot in the SN | 353 | * Power-on and initialize the slot in the SN |
@@ -354,7 +355,7 @@ static int enable_slot(struct hotplug_slot *bss_hotplug_slot) | |||
354 | */ | 355 | */ |
355 | rc = sn_slot_enable(bss_hotplug_slot, slot->device_num); | 356 | rc = sn_slot_enable(bss_hotplug_slot, slot->device_num); |
356 | if (rc) { | 357 | if (rc) { |
357 | up(&sn_hotplug_sem); | 358 | mutex_unlock(&sn_hotplug_mutex); |
358 | return rc; | 359 | return rc; |
359 | } | 360 | } |
360 | 361 | ||
@@ -362,7 +363,7 @@ static int enable_slot(struct hotplug_slot *bss_hotplug_slot) | |||
362 | PCI_DEVFN(slot->device_num + 1, 0)); | 363 | PCI_DEVFN(slot->device_num + 1, 0)); |
363 | if (!num_funcs) { | 364 | if (!num_funcs) { |
364 | dev_dbg(slot->pci_bus->self, "no device in slot\n"); | 365 | dev_dbg(slot->pci_bus->self, "no device in slot\n"); |
365 | up(&sn_hotplug_sem); | 366 | mutex_unlock(&sn_hotplug_mutex); |
366 | return -ENODEV; | 367 | return -ENODEV; |
367 | } | 368 | } |
368 | 369 | ||
@@ -402,7 +403,7 @@ static int enable_slot(struct hotplug_slot *bss_hotplug_slot) | |||
402 | if (new_ppb) | 403 | if (new_ppb) |
403 | pci_bus_add_devices(new_bus); | 404 | pci_bus_add_devices(new_bus); |
404 | 405 | ||
405 | up(&sn_hotplug_sem); | 406 | mutex_unlock(&sn_hotplug_mutex); |
406 | 407 | ||
407 | if (rc == 0) | 408 | if (rc == 0) |
408 | dev_dbg(slot->pci_bus->self, | 409 | dev_dbg(slot->pci_bus->self, |
@@ -422,7 +423,7 @@ static int disable_slot(struct hotplug_slot *bss_hotplug_slot) | |||
422 | int rc; | 423 | int rc; |
423 | 424 | ||
424 | /* Acquire update access to the bus */ | 425 | /* Acquire update access to the bus */ |
425 | down(&sn_hotplug_sem); | 426 | mutex_lock(&sn_hotplug_mutex); |
426 | 427 | ||
427 | /* is it okay to bring this slot down? */ | 428 | /* is it okay to bring this slot down? */ |
428 | rc = sn_slot_disable(bss_hotplug_slot, slot->device_num, | 429 | rc = sn_slot_disable(bss_hotplug_slot, slot->device_num, |
@@ -450,7 +451,7 @@ static int disable_slot(struct hotplug_slot *bss_hotplug_slot) | |||
450 | PCI_REQ_SLOT_DISABLE); | 451 | PCI_REQ_SLOT_DISABLE); |
451 | leaving: | 452 | leaving: |
452 | /* Release the bus lock */ | 453 | /* Release the bus lock */ |
453 | up(&sn_hotplug_sem); | 454 | mutex_unlock(&sn_hotplug_mutex); |
454 | 455 | ||
455 | return rc; | 456 | return rc; |
456 | } | 457 | } |
@@ -462,9 +463,9 @@ static inline int get_power_status(struct hotplug_slot *bss_hotplug_slot, | |||
462 | struct pcibus_info *pcibus_info; | 463 | struct pcibus_info *pcibus_info; |
463 | 464 | ||
464 | pcibus_info = SN_PCIBUS_BUSSOFT_INFO(slot->pci_bus); | 465 | pcibus_info = SN_PCIBUS_BUSSOFT_INFO(slot->pci_bus); |
465 | down(&sn_hotplug_sem); | 466 | mutex_lock(&sn_hotplug_mutex); |
466 | *value = pcibus_info->pbi_enabled_devices & (1 << slot->device_num); | 467 | *value = pcibus_info->pbi_enabled_devices & (1 << slot->device_num); |
467 | up(&sn_hotplug_sem); | 468 | mutex_unlock(&sn_hotplug_mutex); |
468 | return 0; | 469 | return 0; |
469 | } | 470 | } |
470 | 471 | ||