]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: lustre: o2iblnd: handle unmapping of FMR in kiblnd_fmr_pool_unmap
authorDmitry Eremin <dmitry.eremin@intel.com>
Thu, 5 May 2016 18:53:05 +0000 (14:53 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 9 May 2016 12:03:33 +0000 (14:03 +0200)
Move FMR unmapping from kiblnd_unmap_tx() to the function
kiblnd_fmr_pool_unmap() so kiblnd_unmap_tx() can be used
with the Fast Registration API as well.

Signed-off-by: Dmitry Eremin <dmitry.eremin@intel.com>
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-5783
Reviewed-on: http://review.whamcloud.com/17606
Reviewed-by: James Simmons <uja.ornl@yahoo.com>
Reviewed-by: Doug Oucharek <doug.s.oucharek@intel.com>
Reviewed-by: Oleg Drokin <oleg.drokin@intel.com>
Signed-off-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd.c
drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd_cb.c

index 491bd6cd146043ce44a125de35fb63ead852a9f1..fc29d5c0f769000e8b4bffd02e9624f325c97a2c 100644 (file)
@@ -1470,13 +1470,20 @@ void kiblnd_fmr_pool_unmap(kib_fmr_t *fmr, int status)
 {
        LIST_HEAD(zombies);
        kib_fmr_pool_t *fpo = fmr->fmr_pool;
-       kib_fmr_poolset_t *fps = fpo->fpo_owner;
+       kib_fmr_poolset_t *fps;
        unsigned long now = cfs_time_current();
        kib_fmr_pool_t *tmp;
        int rc;
 
-       rc = ib_fmr_pool_unmap(fmr->fmr_pfmr);
-       LASSERT(!rc);
+       if (!fpo)
+               return;
+
+       fps = fpo->fpo_owner;
+       if (fmr->fmr_pfmr) {
+               rc = ib_fmr_pool_unmap(fmr->fmr_pfmr);
+               LASSERT(!rc);
+               fmr->fmr_pfmr = NULL;
+       }
 
        if (status) {
                rc = ib_flush_fmr_pool(fpo->fmr.fpo_fmr_pool);
@@ -1484,7 +1491,6 @@ void kiblnd_fmr_pool_unmap(kib_fmr_t *fmr, int status)
        }
 
        fmr->fmr_pool = NULL;
-       fmr->fmr_pfmr = NULL;
 
        spin_lock(&fps->fps_lock);
        fpo->fpo_map_count--;  /* decref the pool */
index b243f1faa3485e2e851fcc1f2ecd415b75e693ac..7d1c750d3b1fa111dbe56221a3ad5d6f3c1fccd6 100644 (file)
@@ -613,10 +613,8 @@ static void kiblnd_unmap_tx(lnet_ni_t *ni, kib_tx_t *tx)
 
        LASSERT(net);
 
-       if (net->ibn_fmr_ps && tx->fmr.fmr_pfmr) {
+       if (net->ibn_fmr_ps)
                kiblnd_fmr_pool_unmap(&tx->fmr, tx->tx_status);
-               tx->fmr.fmr_pfmr = NULL;
-       }
 
        if (tx->tx_nfrags) {
                kiblnd_dma_unmap_sg(tx->tx_pool->tpo_hdev->ibh_ibdev,