diff options
author | Bart Van Assche <bvanassche@acm.org> | 2011-09-16 14:41:13 -0400 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2012-11-30 20:40:33 -0500 |
commit | dc1bdbd9b8a077018d82230bc378f1bcfd8adba8 (patch) | |
tree | e6484d9d378a0bad8a4f7057ae29d4164b33278e /drivers/infiniband/ulp | |
parent | 7e1265bfe75f0ef1a9f5cfde202df68b7e35a53f (diff) |
IB/srp: Allow SRP disconnect through sysfs
Make it possible to disconnect the IB RC connection used by the SRP
protocol to communicate with a target.
Have the SRP transport layer create a sysfs "delete" attribute for
initiator drivers that support this functionality.
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Acked-by: David Dillow <dillowda@ornl.gov>
Cc: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Cc: Robert Jennings <rcj@linux.vnet.ibm.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'drivers/infiniband/ulp')
-rw-r--r-- | drivers/infiniband/ulp/srp/ib_srp.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c index 84d9298ed989..d5088ce78290 100644 --- a/drivers/infiniband/ulp/srp/ib_srp.c +++ b/drivers/infiniband/ulp/srp/ib_srp.c | |||
@@ -549,6 +549,13 @@ static void srp_remove_work(struct work_struct *work) | |||
549 | srp_remove_target(target); | 549 | srp_remove_target(target); |
550 | } | 550 | } |
551 | 551 | ||
552 | static void srp_rport_delete(struct srp_rport *rport) | ||
553 | { | ||
554 | struct srp_target_port *target = rport->lld_data; | ||
555 | |||
556 | srp_queue_remove_work(target); | ||
557 | } | ||
558 | |||
552 | static int srp_connect_target(struct srp_target_port *target) | 559 | static int srp_connect_target(struct srp_target_port *target) |
553 | { | 560 | { |
554 | int retries = 3; | 561 | int retries = 3; |
@@ -1958,6 +1965,8 @@ static int srp_add_target(struct srp_host *host, struct srp_target_port *target) | |||
1958 | return PTR_ERR(rport); | 1965 | return PTR_ERR(rport); |
1959 | } | 1966 | } |
1960 | 1967 | ||
1968 | rport->lld_data = target; | ||
1969 | |||
1961 | spin_lock(&host->target_lock); | 1970 | spin_lock(&host->target_lock); |
1962 | list_add_tail(&target->list, &host->target_list); | 1971 | list_add_tail(&target->list, &host->target_list); |
1963 | spin_unlock(&host->target_lock); | 1972 | spin_unlock(&host->target_lock); |
@@ -2524,6 +2533,7 @@ static void srp_remove_one(struct ib_device *device) | |||
2524 | } | 2533 | } |
2525 | 2534 | ||
2526 | static struct srp_function_template ib_srp_transport_functions = { | 2535 | static struct srp_function_template ib_srp_transport_functions = { |
2536 | .rport_delete = srp_rport_delete, | ||
2527 | }; | 2537 | }; |
2528 | 2538 | ||
2529 | static int __init srp_init_module(void) | 2539 | static int __init srp_init_module(void) |