diff options
author | 2016-11-17 14:35:44 -0500 | |
---|---|---|
committer | 2016-11-18 08:47:31 +0100 | |
commit | 3d277bf5fc763efd7f7d1b050fd51259afcf294a (patch) | |
tree | ce3e376e9bf70c529997d44e2a89e51b80f81f73 | |
parent | staging: lustre: libcfs: fix aligment issue (diff) | |
download | linux-dev-3d277bf5fc763efd7f7d1b050fd51259afcf294a.tar.xz linux-dev-3d277bf5fc763efd7f7d1b050fd51259afcf294a.zip |
staging: lustre: lnet: fix misspelled word destroy
Fix misspelling of destroy in LNet core.
Signed-off-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/lustre/lnet/lnet/api-ni.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/lustre/lnet/lnet/api-ni.c b/drivers/staging/lustre/lnet/lnet/api-ni.c index 4daf828198c3..b2ba10d59f84 100644 --- a/drivers/staging/lustre/lnet/lnet/api-ni.c +++ b/drivers/staging/lustre/lnet/lnet/api-ni.c @@ -1551,16 +1551,16 @@ LNetNIInit(lnet_pid_t requested_pid) rc = lnet_check_routes(); if (rc) - goto err_destory_routes; + goto err_destroy_routes; rc = lnet_rtrpools_alloc(im_a_router); if (rc) - goto err_destory_routes; + goto err_destroy_routes; } rc = lnet_acceptor_start(); if (rc) - goto err_destory_routes; + goto err_destroy_routes; the_lnet.ln_refcount = 1; /* Now I may use my own API functions... */ @@ -1587,7 +1587,7 @@ err_stop_ping: err_acceptor_stop: the_lnet.ln_refcount = 0; lnet_acceptor_stop(); -err_destory_routes: +err_destroy_routes: if (!the_lnet.ln_nis_from_mod_params) lnet_destroy_routes(); err_shutdown_lndnis: |