staging: lustre: handle lnet_check_routes() errors
authorAmir Shehata <amir.shehata@intel.com>
Mon, 22 Feb 2016 22:29:15 +0000 (17:29 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 23 Feb 2016 02:05:49 +0000 (18:05 -0800)
After adding a route, lnet_check_routes() is called to ensure that
the route added doesn't invalidate the routing configuration.  If
lnet_check_routes() fails then the route just added, which caused the
current configuration to be invalidated is deleted, and an error
is returned to the user.

Signed-off-by: Amir Shehata <amir.shehata@intel.com>
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-6218
Reviewed-on: http://review.whamcloud.com/13445
Reviewed-by: Liang Zhen <liang.zhen@intel.com>
Reviewed-by: Doug Oucharek <doug.s.oucharek@intel.com>
Reviewed-by: Oleg Drokin <oleg.drokin@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lnet/lnet/api-ni.c

index ccd7dcdac71fa549128f88972e7c057f420f0dde..ed121a8692054ce49a3a705d686145cceee445f2 100644 (file)
@@ -1907,8 +1907,14 @@ LNetCtl(unsigned int cmd, void *arg)
                                    config->cfg_config_u.cfg_route.rtr_hop,
                                    config->cfg_nid,
                                    config->cfg_config_u.cfg_route.rtr_priority);
+               if (!rc) {
+                       rc = lnet_check_routes();
+                       if (rc)
+                               lnet_del_route(config->cfg_net,
+                                              config->cfg_nid);
+               }
                mutex_unlock(&the_lnet.ln_api_mutex);
-               return rc ? rc : lnet_check_routes();
+               return rc;
 
        case IOC_LIBCFS_DEL_ROUTE:
                config = arg;
This page took 0.026636 seconds and 5 git commands to generate.