diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2009-05-13 15:42:14 -0400 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2009-05-17 08:13:47 -0400 |
commit | 92368890d551794ee8d7e90477d8498bb7f82a9b (patch) | |
tree | 0c9fe72c0d770ce4ac358235fafd18803415b1ac /drivers | |
parent | 32a0f488ce5e8a9a148491f15edc508ab5e8265b (diff) |
firewire: core: improve check for local node
My recently added test for a device being local in fw-cdev.c got it
slightly wrong: Comparisons of node IDs are only valid if the
generation is current, which I forgot to check. Normally, serialization
by card->lock takes care of this, but a device in FW_DEVICE_GONE state
will necessarily have a wrong generation and invalid node_id.
The "is it local?" check is made 100% correct and simpler now by means
of a struct fw_device flag which is set at fw_device creation.
Besides the fw-cdev site which was to be fixed, there is another site
which can make use of the new flag, and an RFC-2734 driver will benefit
from it too.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/firewire/fw-cdev.c | 6 | ||||
-rw-r--r-- | drivers/firewire/fw-device.c | 3 | ||||
-rw-r--r-- | drivers/firewire/fw-device.h | 1 |
3 files changed, 4 insertions, 6 deletions
diff --git a/drivers/firewire/fw-cdev.c b/drivers/firewire/fw-cdev.c index 7eb6594cc3e5..8a5e6ae2552c 100644 --- a/drivers/firewire/fw-cdev.c +++ b/drivers/firewire/fw-cdev.c | |||
@@ -739,15 +739,11 @@ static void release_descriptor(struct client *client, | |||
739 | static int ioctl_add_descriptor(struct client *client, void *buffer) | 739 | static int ioctl_add_descriptor(struct client *client, void *buffer) |
740 | { | 740 | { |
741 | struct fw_cdev_add_descriptor *request = buffer; | 741 | struct fw_cdev_add_descriptor *request = buffer; |
742 | struct fw_card *card = client->device->card; | ||
743 | struct descriptor_resource *r; | 742 | struct descriptor_resource *r; |
744 | int ret; | 743 | int ret; |
745 | 744 | ||
746 | /* Access policy: Allow this ioctl only on local nodes' device files. */ | 745 | /* Access policy: Allow this ioctl only on local nodes' device files. */ |
747 | spin_lock_irq(&card->lock); | 746 | if (!client->device->is_local) |
748 | ret = client->device->node_id != card->local_node->node_id; | ||
749 | spin_unlock_irq(&card->lock); | ||
750 | if (ret) | ||
751 | return -ENOSYS; | 747 | return -ENOSYS; |
752 | 748 | ||
753 | if (request->length > 256) | 749 | if (request->length > 256) |
diff --git a/drivers/firewire/fw-device.c b/drivers/firewire/fw-device.c index a47e2129d83d..a38a68b97b58 100644 --- a/drivers/firewire/fw-device.c +++ b/drivers/firewire/fw-device.c | |||
@@ -1042,6 +1042,7 @@ void fw_node_event(struct fw_card *card, struct fw_node *node, int event) | |||
1042 | device->node = fw_node_get(node); | 1042 | device->node = fw_node_get(node); |
1043 | device->node_id = node->node_id; | 1043 | device->node_id = node->node_id; |
1044 | device->generation = card->generation; | 1044 | device->generation = card->generation; |
1045 | device->is_local = node == card->local_node; | ||
1045 | mutex_init(&device->client_list_mutex); | 1046 | mutex_init(&device->client_list_mutex); |
1046 | INIT_LIST_HEAD(&device->client_list); | 1047 | INIT_LIST_HEAD(&device->client_list); |
1047 | 1048 | ||
@@ -1075,7 +1076,7 @@ void fw_node_event(struct fw_card *card, struct fw_node *node, int event) | |||
1075 | FW_DEVICE_INITIALIZING) == FW_DEVICE_RUNNING) { | 1076 | FW_DEVICE_INITIALIZING) == FW_DEVICE_RUNNING) { |
1076 | PREPARE_DELAYED_WORK(&device->work, fw_device_refresh); | 1077 | PREPARE_DELAYED_WORK(&device->work, fw_device_refresh); |
1077 | schedule_delayed_work(&device->work, | 1078 | schedule_delayed_work(&device->work, |
1078 | node == card->local_node ? 0 : INITIAL_DELAY); | 1079 | device->is_local ? 0 : INITIAL_DELAY); |
1079 | } | 1080 | } |
1080 | break; | 1081 | break; |
1081 | 1082 | ||
diff --git a/drivers/firewire/fw-device.h b/drivers/firewire/fw-device.h index 97588937c018..623cfee289bd 100644 --- a/drivers/firewire/fw-device.h +++ b/drivers/firewire/fw-device.h | |||
@@ -80,6 +80,7 @@ struct fw_device { | |||
80 | u32 *config_rom; | 80 | u32 *config_rom; |
81 | size_t config_rom_length; | 81 | size_t config_rom_length; |
82 | int config_rom_retries; | 82 | int config_rom_retries; |
83 | unsigned is_local:1; | ||
83 | unsigned cmc:1; | 84 | unsigned cmc:1; |
84 | unsigned bc_implemented:2; | 85 | unsigned bc_implemented:2; |
85 | 86 | ||