diff options
author | Joe Eykholt <jeykholt@cisco.com> | 2011-01-28 19:04:18 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2011-02-12 12:02:20 -0500 |
commit | 70d53b046a6221e3ceb3bd8eaa807ef6a1c53762 (patch) | |
tree | f1ab4e0de20a8db091ea04df564a03a689698b40 /drivers/scsi/libfc | |
parent | baf9fdf076a8976431b5de565aef2b98816caecf (diff) |
[SCSI] libfc: add hook to notify providers of local port changes
When an SCST provider is registered, it needs to know what
local ports are available for configuration as targets.
Add a notifier chain that is invoked when any local port
that is added or deleted.
Maintain a global list of local ports and add an
interator function that calls a given function for
every existing local port. This is used when first
loading a provider.
Signed-off-by: Joe Eykholt <jeykholt@cisco.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/libfc')
-rw-r--r-- | drivers/scsi/libfc/fc_libfc.c | 41 | ||||
-rw-r--r-- | drivers/scsi/libfc/fc_libfc.h | 2 | ||||
-rw-r--r-- | drivers/scsi/libfc/fc_lport.c | 2 |
3 files changed, 45 insertions, 0 deletions
diff --git a/drivers/scsi/libfc/fc_libfc.c b/drivers/scsi/libfc/fc_libfc.c index ae3abef6523e..5e40dab8f919 100644 --- a/drivers/scsi/libfc/fc_libfc.c +++ b/drivers/scsi/libfc/fc_libfc.c | |||
@@ -36,6 +36,10 @@ module_param_named(debug_logging, fc_debug_logging, int, S_IRUGO|S_IWUSR); | |||
36 | MODULE_PARM_DESC(debug_logging, "a bit mask of logging levels"); | 36 | MODULE_PARM_DESC(debug_logging, "a bit mask of logging levels"); |
37 | 37 | ||
38 | DEFINE_MUTEX(fc_prov_mutex); | 38 | DEFINE_MUTEX(fc_prov_mutex); |
39 | static LIST_HEAD(fc_local_ports); | ||
40 | struct blocking_notifier_head fc_lport_notifier_head = | ||
41 | BLOCKING_NOTIFIER_INIT(fc_lport_notifier_head); | ||
42 | EXPORT_SYMBOL(fc_lport_notifier_head); | ||
39 | 43 | ||
40 | /* | 44 | /* |
41 | * Providers which primarily send requests and PRLIs. | 45 | * Providers which primarily send requests and PRLIs. |
@@ -228,6 +232,17 @@ void fc_fill_reply_hdr(struct fc_frame *fp, const struct fc_frame *in_fp, | |||
228 | } | 232 | } |
229 | EXPORT_SYMBOL(fc_fill_reply_hdr); | 233 | EXPORT_SYMBOL(fc_fill_reply_hdr); |
230 | 234 | ||
235 | void fc_lport_iterate(void (*notify)(struct fc_lport *, void *), void *arg) | ||
236 | { | ||
237 | struct fc_lport *lport; | ||
238 | |||
239 | mutex_lock(&fc_prov_mutex); | ||
240 | list_for_each_entry(lport, &fc_local_ports, lport_list) | ||
241 | notify(lport, arg); | ||
242 | mutex_unlock(&fc_prov_mutex); | ||
243 | } | ||
244 | EXPORT_SYMBOL(fc_lport_iterate); | ||
245 | |||
231 | /** | 246 | /** |
232 | * fc_fc4_register_provider() - register FC-4 upper-level provider. | 247 | * fc_fc4_register_provider() - register FC-4 upper-level provider. |
233 | * @type: FC-4 type, such as FC_TYPE_FCP | 248 | * @type: FC-4 type, such as FC_TYPE_FCP |
@@ -270,3 +285,29 @@ void fc_fc4_deregister_provider(enum fc_fh_type type, struct fc4_prov *prov) | |||
270 | synchronize_rcu(); | 285 | synchronize_rcu(); |
271 | } | 286 | } |
272 | EXPORT_SYMBOL(fc_fc4_deregister_provider); | 287 | EXPORT_SYMBOL(fc_fc4_deregister_provider); |
288 | |||
289 | /** | ||
290 | * fc_fc4_add_lport() - add new local port to list and run notifiers. | ||
291 | * @lport: The new local port. | ||
292 | */ | ||
293 | void fc_fc4_add_lport(struct fc_lport *lport) | ||
294 | { | ||
295 | mutex_lock(&fc_prov_mutex); | ||
296 | list_add_tail(&lport->lport_list, &fc_local_ports); | ||
297 | blocking_notifier_call_chain(&fc_lport_notifier_head, | ||
298 | FC_LPORT_EV_ADD, lport); | ||
299 | mutex_unlock(&fc_prov_mutex); | ||
300 | } | ||
301 | |||
302 | /** | ||
303 | * fc_fc4_del_lport() - remove local port from list and run notifiers. | ||
304 | * @lport: The new local port. | ||
305 | */ | ||
306 | void fc_fc4_del_lport(struct fc_lport *lport) | ||
307 | { | ||
308 | mutex_lock(&fc_prov_mutex); | ||
309 | list_del(&lport->lport_list); | ||
310 | blocking_notifier_call_chain(&fc_lport_notifier_head, | ||
311 | FC_LPORT_EV_DEL, lport); | ||
312 | mutex_unlock(&fc_prov_mutex); | ||
313 | } | ||
diff --git a/drivers/scsi/libfc/fc_libfc.h b/drivers/scsi/libfc/fc_libfc.h index 205de285e456..8496f7020b97 100644 --- a/drivers/scsi/libfc/fc_libfc.h +++ b/drivers/scsi/libfc/fc_libfc.h | |||
@@ -123,6 +123,8 @@ void fc_destroy_fcp(void); | |||
123 | * Internal libfc functions | 123 | * Internal libfc functions |
124 | */ | 124 | */ |
125 | const char *fc_els_resp_type(struct fc_frame *); | 125 | const char *fc_els_resp_type(struct fc_frame *); |
126 | extern void fc_fc4_add_lport(struct fc_lport *); | ||
127 | extern void fc_fc4_del_lport(struct fc_lport *); | ||
126 | 128 | ||
127 | /* | 129 | /* |
128 | * Copies a buffer into an sg list | 130 | * Copies a buffer into an sg list |
diff --git a/drivers/scsi/libfc/fc_lport.c b/drivers/scsi/libfc/fc_lport.c index e2cd087e71b2..e0ef81426c33 100644 --- a/drivers/scsi/libfc/fc_lport.c +++ b/drivers/scsi/libfc/fc_lport.c | |||
@@ -633,6 +633,7 @@ int fc_lport_destroy(struct fc_lport *lport) | |||
633 | lport->tt.fcp_abort_io(lport); | 633 | lport->tt.fcp_abort_io(lport); |
634 | lport->tt.disc_stop_final(lport); | 634 | lport->tt.disc_stop_final(lport); |
635 | lport->tt.exch_mgr_reset(lport, 0, 0); | 635 | lport->tt.exch_mgr_reset(lport, 0, 0); |
636 | fc_fc4_del_lport(lport); | ||
636 | return 0; | 637 | return 0; |
637 | } | 638 | } |
638 | EXPORT_SYMBOL(fc_lport_destroy); | 639 | EXPORT_SYMBOL(fc_lport_destroy); |
@@ -1633,6 +1634,7 @@ int fc_lport_init(struct fc_lport *lport) | |||
1633 | fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_1GBIT; | 1634 | fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_1GBIT; |
1634 | if (lport->link_supported_speeds & FC_PORTSPEED_10GBIT) | 1635 | if (lport->link_supported_speeds & FC_PORTSPEED_10GBIT) |
1635 | fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_10GBIT; | 1636 | fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_10GBIT; |
1637 | fc_fc4_add_lport(lport); | ||
1636 | 1638 | ||
1637 | return 0; | 1639 | return 0; |
1638 | } | 1640 | } |