else {
                rc = sptlrpc_req_get_ctx(request);
                if (rc)
-                       GOTO(out_free, rc);
+                       goto out_free;
        }
 
        sptlrpc_req_set_flavor(request, opcode);
                                 lengths, bufs);
        if (rc) {
                LASSERT(!request->rq_pool);
-               GOTO(out_ctx, rc);
+               goto out_ctx;
        }
 
        lustre_msg_add_version(request->rq_reqmsg, version);
                        continue;
 
                if (req->rq_phase == RQ_PHASE_INTERPRET)
-                       GOTO(interpret, req->rq_status);
+                       goto interpret;
 
                /*
                 * Note that this also will start async reply unlink.
                                if (req->rq_status == 0)
                                        req->rq_status = -EIO;
                                ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
-                               GOTO(interpret, req->rq_status);
+                               goto interpret;
                        } else {
                                continue;
                        }
                        if (req->rq_status == 0)
                                req->rq_status = -EIO;
                        ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
-                       GOTO(interpret, req->rq_status);
+                       goto interpret;
                }
 
                /* ptlrpc_set_wait->l_wait_event sets lwi_allow_intr
                                     req->rq_wait_ctx)) {
                        req->rq_status = -EINTR;
                        ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
-                       GOTO(interpret, req->rq_status);
+                       goto interpret;
                }
 
                if (req->rq_phase == RQ_PHASE_RPC) {
                                        ptlrpc_rqphase_move(req,
                                                RQ_PHASE_INTERPRET);
                                        spin_unlock(&imp->imp_lock);
-                                       GOTO(interpret, req->rq_status);
+                                       goto interpret;
                                }
                                if (ptlrpc_no_resend(req) &&
                                    !req->rq_wait_ctx) {
                                        ptlrpc_rqphase_move(req,
                                                            RQ_PHASE_INTERPRET);
                                        spin_unlock(&imp->imp_lock);
-                                       GOTO(interpret, req->rq_status);
+                                       goto interpret;
                                }
 
                                list_del_init(&req->rq_list);
                         */
                        if (req->rq_bulk == NULL || req->rq_status < 0) {
                                ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
-                               GOTO(interpret, req->rq_status);
+                               goto interpret;
                        }
 
                        ptlrpc_rqphase_move(req, RQ_PHASE_BULK);
                }
                if (req->rq_import_generation < imp->imp_generation) {
                        DEBUG_REQ(D_RPCTRACE, req, "free request with old gen");
-                       GOTO(free_req, 0);
+                       goto free_req;
                }
 
                /* not yet committed */
 
        if (!ptlrpc_client_replied(req)) {
                CERROR("request replay timed out, restarting recovery\n");
-               GOTO(out, rc = -ETIMEDOUT);
+               rc = -ETIMEDOUT;
+               goto out;
        }
 
        if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR &&
            (lustre_msg_get_status(req->rq_repmsg) == -ENOTCONN ||
-            lustre_msg_get_status(req->rq_repmsg) == -ENODEV))
-               GOTO(out, rc = lustre_msg_get_status(req->rq_repmsg));
+            lustre_msg_get_status(req->rq_repmsg) == -ENODEV)) {
+               rc = lustre_msg_get_status(req->rq_repmsg);
+               goto out;
+       }
 
        /** VBR: check version failure */
        if (lustre_msg_get_status(req->rq_repmsg) == -EOVERFLOW) {
                          "Reported transno %llu is bigger than the replayed one: %llu",
                          req->rq_transno,
                          lustre_msg_get_transno(req->rq_reqmsg));
-               GOTO(out, rc = -EINVAL);
+               rc = -EINVAL;
+               goto out;
        }
 
        DEBUG_REQ(D_HA, req, "got rep");
 
 
        conn = cfs_hash_lookup(conn_hash, &peer);
        if (conn)
-               GOTO(out, conn);
+               goto out;
 
        OBD_ALLOC_PTR(conn);
        if (!conn)
 
 
        rc = import_select_connection(imp);
        if (rc)
-               GOTO(out, rc);
+               goto out;
 
        rc = sptlrpc_import_sec_adapt(imp, NULL, NULL);
        if (rc)
-               GOTO(out, rc);
+               goto out;
 
        /* Reset connect flags to the originally requested flags, in case
         * the server is updated on-the-fly we will get the new features. */
        rc = obd_reconnect(NULL, imp->imp_obd->obd_self_export, obd,
                           &obd->obd_uuid, &imp->imp_connect_data, NULL);
        if (rc)
-               GOTO(out, rc);
+               goto out;
 
        request = ptlrpc_request_alloc(imp, &RQF_MDS_CONNECT);
-       if (request == NULL)
-               GOTO(out, rc = -ENOMEM);
+       if (request == NULL) {
+               rc = -ENOMEM;
+               goto out;
+       }
 
        rc = ptlrpc_request_bufs_pack(request, LUSTRE_OBD_VERSION,
                                      imp->imp_connect_op, bufs, NULL);
        if (rc) {
                ptlrpc_request_free(request);
-               GOTO(out, rc);
+               goto out;
        }
 
        /* Report the rpc service time to the server so that it knows how long
                imp->imp_force_reconnect = ptlrpc_busy_reconnect(rc);
                spin_unlock(&imp->imp_lock);
                ptlrpc_maybe_ping_import_soon(imp);
-               GOTO(out, rc);
+               goto out;
        }
        spin_unlock(&imp->imp_lock);
 
                CERROR("%s: no connect data from server\n",
                       imp->imp_obd->obd_name);
                rc = -EPROTO;
-               GOTO(out, rc);
+               goto out;
        }
 
        spin_lock(&imp->imp_lock);
                CERROR("%s: Server didn't granted asked subset of flags: asked=%#llx grranted=%#llx\n",
                       imp->imp_obd->obd_name, imp->imp_connect_flags_orig,
                       ocd->ocd_connect_flags);
-               GOTO(out, rc = -EPROTO);
+               rc = -EPROTO;
+               goto out;
        }
 
        if (!exp) {
                   connect attempt */
                CERROR("%s: missing export after connect\n",
                       imp->imp_obd->obd_name);
-               GOTO(out, rc = -ENODEV);
+               rc = -ENODEV;
+               goto out;
        }
        old_connect_flags = exp_connect_flags(exp);
        exp->exp_connect_data = *ocd;
                        ptlrpc_activate_import(imp);
                }
 
-               GOTO(finish, rc = 0);
+               rc = 0;
+               goto finish;
        }
 
        /* Determine what recovery state to move the import to. */
                                      obd2cli_tgt(imp->imp_obd),
                                      imp->imp_connection->c_remote_uuid.uuid,
                                      imp->imp_dlm_handle.cookie);
-                       GOTO(out, rc = -ENOTCONN);
+                       rc = -ENOTCONN;
+                       goto out;
                }
 
                if (memcmp(&imp->imp_remote_handle,
 
                        if (!(MSG_CONNECT_RECOVERING & msg_flags)) {
                                IMPORT_SET_STATE(imp, LUSTRE_IMP_EVICTED);
-                               GOTO(finish, rc = 0);
+                               rc = 0;
+                               goto finish;
                        }
 
                } else {
                                      imp->imp_connection->c_remote_uuid.uuid,
                                      imp->imp_connect_flags_orig,
                                      ocd->ocd_connect_flags);
-                       GOTO(out, rc = -EPROTO);
+                       rc = -EPROTO;
+                       goto out;
                }
 
                if ((ocd->ocd_connect_flags & OBD_CONNECT_VERSION) &&
                        IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY_LOCKS);
                        rc = ldlm_replay_locks(imp);
                        if (rc)
-                               GOTO(out, rc);
+                               goto out;
                }
                rc = 0;
        }
                        IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY_WAIT);
                        rc = signal_completed_replay(imp);
                        if (rc)
-                               GOTO(out, rc);
+                               goto out;
                }
 
        }
 
                rc = ptlrpc_resend(imp);
                if (rc)
-                       GOTO(out, rc);
+                       goto out;
                IMPORT_SET_STATE(imp, LUSTRE_IMP_FULL);
                ptlrpc_activate_import(imp);
 
        int rq_opc, rc = 0;
 
        if (imp->imp_obd->obd_force)
-               GOTO(set_state, rc);
+               goto set_state;
 
        switch (imp->imp_connect_op) {
        case OST_CONNECT:
 
        spin_lock(&imp->imp_lock);
        if (imp->imp_state != LUSTRE_IMP_FULL)
-               GOTO(out, 0);
+               goto out;
        spin_unlock(&imp->imp_lock);
 
        req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_DISCONNECT,
 
        LASSERT(lgh);
 
        req = ptlrpc_request_alloc(imp, &RQF_LLOG_ORIGIN_HANDLE_CREATE);
-       if (req == NULL)
-               GOTO(out, rc = -ENOMEM);
+       if (req == NULL) {
+               rc = -ENOMEM;
+               goto out;
+       }
 
        if (name)
                req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
        if (rc) {
                ptlrpc_request_free(req);
                req = NULL;
-               GOTO(out, rc);
+               goto out;
        }
        ptlrpc_request_set_replen(req);
 
 
        rc = ptlrpc_queue_wait(req);
        if (rc)
-               GOTO(out, rc);
+               goto out;
 
        body = req_capsule_server_get(&req->rq_pill, &RMF_LLOGD_BODY);
-       if (body == NULL)
-               GOTO(out, rc = -EFAULT);
+       if (body == NULL) {
+               rc = -EFAULT;
+               goto out;
+       }
 
        lgh->lgh_id = body->lgd_logid;
        lgh->lgh_ctxt = ctxt;
        req = ptlrpc_request_alloc_pack(imp, &RQF_LLOG_ORIGIN_HANDLE_DESTROY,
                                        LUSTRE_LOG_VERSION,
                                        LLOG_ORIGIN_HANDLE_DESTROY);
-       if (req == NULL)
-               GOTO(err_exit, rc =-ENOMEM);
+       if (req == NULL) {
+               rc = -ENOMEM;
+               goto err_exit;
+       }
 
        body = req_capsule_client_get(&req->rq_pill, &RMF_LLOGD_BODY);
        body->lgd_logid = loghandle->lgh_id;
        req = ptlrpc_request_alloc_pack(imp, &RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK,
                                        LUSTRE_LOG_VERSION,
                                        LLOG_ORIGIN_HANDLE_NEXT_BLOCK);
-       if (req == NULL)
-               GOTO(err_exit, rc = -ENOMEM);
+       if (req == NULL) {
+               rc = -ENOMEM;
+               goto err_exit;
+       }
 
        body = req_capsule_client_get(&req->rq_pill, &RMF_LLOGD_BODY);
        body->lgd_logid = loghandle->lgh_id;
        ptlrpc_request_set_replen(req);
        rc = ptlrpc_queue_wait(req);
        if (rc)
-               GOTO(out, rc);
+               goto out;
 
        body = req_capsule_server_get(&req->rq_pill, &RMF_LLOGD_BODY);
-       if (body == NULL)
-               GOTO(out, rc = -EFAULT);
+       if (body == NULL) {
+               rc = -EFAULT;
+               goto out;
+       }
 
        /* The log records are swabbed as they are processed */
        ptr = req_capsule_server_get(&req->rq_pill, &RMF_EADATA);
-       if (ptr == NULL)
-               GOTO(out, rc = -EFAULT);
+       if (ptr == NULL) {
+               rc = -EFAULT;
+               goto out;
+       }
 
        *cur_idx = body->lgd_saved_index;
        *cur_offset = body->lgd_cur_offset;
        req = ptlrpc_request_alloc_pack(imp, &RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK,
                                        LUSTRE_LOG_VERSION,
                                        LLOG_ORIGIN_HANDLE_PREV_BLOCK);
-       if (req == NULL)
-               GOTO(err_exit, rc = -ENOMEM);
+       if (req == NULL) {
+               rc = -ENOMEM;
+               goto err_exit;
+       }
 
        body = req_capsule_client_get(&req->rq_pill, &RMF_LLOGD_BODY);
        body->lgd_logid = loghandle->lgh_id;
 
        rc = ptlrpc_queue_wait(req);
        if (rc)
-               GOTO(out, rc);
+               goto out;
 
        body = req_capsule_server_get(&req->rq_pill, &RMF_LLOGD_BODY);
-       if (body == NULL)
-               GOTO(out, rc = -EFAULT);
+       if (body == NULL) {
+               rc = -EFAULT;
+               goto out;
+       }
 
        ptr = req_capsule_server_get(&req->rq_pill, &RMF_EADATA);
-       if (ptr == NULL)
-               GOTO(out, rc = -EFAULT);
+       if (ptr == NULL) {
+               rc = -EFAULT;
+               goto out;
+       }
 
        memcpy(buf, ptr, len);
 out:
        req = ptlrpc_request_alloc_pack(imp, &RQF_LLOG_ORIGIN_HANDLE_READ_HEADER,
                                        LUSTRE_LOG_VERSION,
                                        LLOG_ORIGIN_HANDLE_READ_HEADER);
-       if (req == NULL)
-               GOTO(err_exit, rc = -ENOMEM);
+       if (req == NULL) {
+               rc = -ENOMEM;
+               goto err_exit;
+       }
 
        body = req_capsule_client_get(&req->rq_pill, &RMF_LLOGD_BODY);
        body->lgd_logid = handle->lgh_id;
        ptlrpc_request_set_replen(req);
        rc = ptlrpc_queue_wait(req);
        if (rc)
-               GOTO(out, rc);
+               goto out;
 
        hdr = req_capsule_server_get(&req->rq_pill, &RMF_LLOG_LOG_HDR);
-       if (hdr == NULL)
-               GOTO(out, rc = -EFAULT);
+       if (hdr == NULL) {
+               rc = -EFAULT;
+               goto out;
+       }
 
        memcpy(handle->lgh_hdr, hdr, sizeof(*hdr));
        handle->lgh_last_idx = handle->lgh_hdr->llh_tail.lrt_index;
 
        spin_unlock(&nrs->nrs_lock);
 
        OBD_ALLOC(infos, num_pols * sizeof(*infos));
-       if (infos == NULL)
-               GOTO(out, rc = -ENOMEM);
+       if (infos == NULL) {
+               rc = -ENOMEM;
+               goto out;
+       }
 again:
 
        ptlrpc_service_for_each_part(svcpt, i, svc) {
        char                           *token;
        int                             rc = 0;
 
-       if (count >= LPROCFS_NRS_WR_MAX_CMD)
-               GOTO(out, rc = -EINVAL);
+       if (count >= LPROCFS_NRS_WR_MAX_CMD) {
+               rc = -EINVAL;
+               goto out;
+       }
 
        OBD_ALLOC(cmd, LPROCFS_NRS_WR_MAX_CMD);
-       if (cmd == NULL)
-               GOTO(out, rc = -ENOMEM);
+       if (cmd == NULL) {
+               rc = -ENOMEM;
+               goto out;
+       }
        /**
         * strsep() modifies its argument, so keep a copy
         */
        cmd_copy = cmd;
 
-       if (copy_from_user(cmd, buffer, count))
-               GOTO(out, rc = -EFAULT);
+       if (copy_from_user(cmd, buffer, count)) {
+               rc = -EFAULT;
+               goto out;
+       }
 
        cmd[count] = '\0';
 
        token = strsep(&cmd, " ");
 
-       if (strlen(token) > NRS_POL_NAME_MAX - 1)
-               GOTO(out, rc = -EINVAL);
+       if (strlen(token) > NRS_POL_NAME_MAX - 1) {
+               rc = -EINVAL;
+               goto out;
+       }
 
        /**
         * No [reg|hp] token has been specified
                queue = PTLRPC_NRS_QUEUE_REG;
        else if (strcmp(cmd, "hp") == 0)
                queue = PTLRPC_NRS_QUEUE_HP;
-       else
-               GOTO(out, rc = -EINVAL);
+       else {
+               rc = -EINVAL;
+               goto out;
+       }
 
 default_queue:
 
-       if (queue == PTLRPC_NRS_QUEUE_HP && !nrs_svc_has_hp(svc))
-               GOTO(out, rc = -ENODEV);
+       if (queue == PTLRPC_NRS_QUEUE_HP && !nrs_svc_has_hp(svc)) {
+               rc = -ENODEV;
+               goto out;
+       }
        else if (queue == PTLRPC_NRS_QUEUE_BOTH && !nrs_svc_has_hp(svc))
                queue = PTLRPC_NRS_QUEUE_REG;
 
        if (kbuf == NULL)
                return -ENOMEM;
 
-       if (copy_from_user(kbuf, buffer, count))
-               GOTO(out, count = -EFAULT);
+       if (copy_from_user(kbuf, buffer, count)) {
+               count = -EFAULT;
+               goto out;
+       }
 
        kbuf[count] = 0;
 
        /* only support connection=uuid::instance now */
-       if (strncmp(prefix, kbuf, prefix_len) != 0)
-               GOTO(out, count = -EINVAL);
+       if (strncmp(prefix, kbuf, prefix_len) != 0) {
+               count = -EINVAL;
+               goto out;
+       }
 
        uuid = kbuf + prefix_len;
        ptr = strstr(uuid, "::");
 
 
        rc = sptlrpc_cli_wrap_request(request);
        if (rc)
-               GOTO(out, rc);
+               goto out;
 
        /* bulk register should be done after wrap_request() */
        if (request->rq_bulk != NULL) {
                rc = ptlrpc_register_bulk(request);
                if (rc != 0)
-                       GOTO(out, rc);
+                       goto out;
        }
 
        if (!noreply) {
                                request->rq_err = 1;
                                spin_unlock(&request->rq_lock);
                                request->rq_status = rc;
-                               GOTO(cleanup_bulk, rc);
+                               goto cleanup_bulk;
                        }
                } else {
                        request->rq_repdata = NULL;
                if (rc != 0) {
                        CERROR("LNetMEAttach failed: %d\n", rc);
                        LASSERT(rc == -ENOMEM);
-                       GOTO(cleanup_bulk, rc = -ENOMEM);
+                       rc = -ENOMEM;
+                       goto cleanup_bulk;
                }
        }
 
                        /* ...but the MD attach didn't succeed... */
                        request->rq_receiving_reply = 0;
                        spin_unlock(&request->rq_lock);
-                       GOTO(cleanup_me, rc = -ENOMEM);
+                       rc = -ENOMEM;
+                       goto cleanup_me;
                }
 
                CDEBUG(D_NET, "Setup reply buffer: %u bytes, xid %llu, portal %u\n",
                          request->rq_request_portal,
                          request->rq_xid, 0);
        if (rc == 0)
-               GOTO(out, rc);
+               goto out;
 
        ptlrpc_req_finished(request);
        if (noreply)
-               GOTO(out, rc);
+               goto out;
 
  cleanup_me:
        /* MEUnlink is safe; the PUT didn't even get off the ground, and
 
                                module_put(policy->pol_desc->pd_owner);
 
                        policy->pol_state = NRS_POL_STATE_STOPPED;
-                       GOTO(out, rc);
+                       goto out;
                }
        }
 
        spin_lock(&nrs->nrs_lock);
 
        policy = nrs_policy_find_locked(nrs, name);
-       if (policy == NULL)
-               GOTO(out, rc = -ENOENT);
+       if (policy == NULL) {
+               rc = -ENOENT;
+               goto out;
+       }
 
        switch (opc) {
                /**
        nrs = nrs_svcpt2nrs(svcpt, false);
        rc = nrs_svcpt_setup_locked0(nrs, svcpt);
        if (rc < 0)
-               GOTO(out, rc);
+               goto out;
 
        /**
         * Optionally allocate a high-priority NRS head.
         */
        if (svcpt->scp_service->srv_ops.so_hpreq_handler == NULL)
-               GOTO(out, rc);
+               goto out;
 
        OBD_CPT_ALLOC_PTR(svcpt->scp_nrs_hp,
                          svcpt->scp_service->srv_cptable,
                          svcpt->scp_cpt);
-       if (svcpt->scp_nrs_hp == NULL)
-               GOTO(out, rc = -ENOMEM);
+       if (svcpt->scp_nrs_hp == NULL) {
+               rc = -ENOMEM;
+               goto out;
+       }
 
        nrs = nrs_svcpt2nrs(svcpt, true);
        rc = nrs_svcpt_setup_locked0(nrs, svcpt);
                CERROR("NRS: failing to register policy %s which has already "
                       "been registered with NRS core!\n",
                       conf->nc_name);
-               GOTO(fail, rc = -EEXIST);
+               rc = -EEXIST;
+               goto fail;
        }
 
        OBD_ALLOC_PTR(desc);
-       if (desc == NULL)
-               GOTO(fail, rc = -ENOMEM);
+       if (desc == NULL) {
+               rc = -ENOMEM;
+               goto fail;
+       }
 
        strncpy(desc->pd_name, conf->nc_name, NRS_POL_NAME_MAX);
        desc->pd_ops             = conf->nc_ops;
                                LASSERT(rc2 == 0);
                                mutex_unlock(&ptlrpc_all_services_mutex);
                                OBD_FREE_PTR(desc);
-                               GOTO(fail, rc);
+                               goto fail;
                        }
 
                        if (!hp && nrs_svc_has_hp(svc)) {
                                LASSERT(rc2 == 0);
                                mutex_unlock(&ptlrpc_all_services_mutex);
                                OBD_FREE_PTR(desc);
-                               GOTO(fail, rc);
+                               goto fail;
                        }
                }
        }
                CERROR("Failing to unregister NRS policy %s which has "
                       "not been registered with NRS core!\n",
                       conf->nc_name);
-               GOTO(not_exist, rc = -ENOENT);
+               rc = -ENOENT;
+               goto not_exist;
        }
 
        mutex_lock(&ptlrpc_all_services_mutex);
                        CERROR("Please first stop policy %s on all service "
                               "partitions and then retry to unregister the "
                               "policy.\n", conf->nc_name);
-               GOTO(fail, rc);
+               goto fail;
        }
 
        CDEBUG(D_INFO, "Unregistering policy %s from NRS core.\n",
        ptlrpc_service_for_each_part(svcpt, i, svc) {
                rc = nrs_svcpt_setup_locked(svcpt);
                if (rc != 0)
-                       GOTO(failed, rc);
+                       goto failed;
        }
 
        /**
                if (desc->pd_ops->op_lprocfs_init != NULL) {
                        rc = desc->pd_ops->op_lprocfs_init(svc);
                        if (rc != 0)
-                               GOTO(failed, rc);
+                               goto failed;
                }
        }
 
                                            opc, arg);
                        if (rc != 0 || (queue == PTLRPC_NRS_QUEUE_REG &&
                                        single))
-                               GOTO(out, rc);
+                               goto out;
                }
 
                if ((queue & PTLRPC_NRS_QUEUE_HP) != 0) {
                        rc = nrs_policy_ctl(nrs_svcpt2nrs(svcpt, true), name,
                                            opc, arg);
                        if (rc != 0 || single)
-                               GOTO(out, rc);
+                               goto out;
                }
        }
 out:
 
        rc = ptlrpc_nrs_policy_register(&nrs_conf_fifo);
        if (rc != 0)
-               GOTO(fail, rc);
+               goto fail;
 
 
        return rc;
 
        cleanup_phase = 1;
        rc = ptlrpc_request_cache_init();
        if (rc)
-               GOTO(cleanup, rc);
+               goto cleanup;
 
        cleanup_phase = 2;
        rc = ptlrpc_init_portals();
        if (rc)
-               GOTO(cleanup, rc);
+               goto cleanup;
 
        cleanup_phase = 3;
 
        rc = ptlrpc_connection_init();
        if (rc)
-               GOTO(cleanup, rc);
+               goto cleanup;
 
        cleanup_phase = 4;
        ptlrpc_put_connection_superhack = ptlrpc_connection_put;
 
        rc = ptlrpc_start_pinger();
        if (rc)
-               GOTO(cleanup, rc);
+               goto cleanup;
 
        cleanup_phase = 5;
        rc = ldlm_init();
        if (rc)
-               GOTO(cleanup, rc);
+               goto cleanup;
 
        cleanup_phase = 6;
        rc = sptlrpc_init();
        if (rc)
-               GOTO(cleanup, rc);
+               goto cleanup;
 
        cleanup_phase = 7;
        rc = ptlrpc_nrs_init();
        if (rc)
-               GOTO(cleanup, rc);
+               goto cleanup;
 
        cleanup_phase = 8;
        rc = tgt_mod_init();
        if (rc)
-               GOTO(cleanup, rc);
+               goto cleanup;
        return 0;
 
 cleanup:
 
        spin_lock_init(&pc->pc_lock);
        strlcpy(pc->pc_name, name, sizeof(pc->pc_name));
        pc->pc_set = ptlrpc_prep_set();
-       if (pc->pc_set == NULL)
-               GOTO(out, rc = -ENOMEM);
+       if (pc->pc_set == NULL) {
+               rc = -ENOMEM;
+               goto out;
+       }
 
        /*
         * So far only "client" ptlrpcd uses an environment. In the future,
         */
        rc = lu_context_init(&pc->pc_env.le_ctx, LCT_CL_THREAD|LCT_REMEMBER);
        if (rc != 0)
-               GOTO(out_set, rc);
+               goto out_set;
 
        {
                struct task_struct *task;
                if (index >= 0) {
                        rc = ptlrpcd_bind(index, max);
                        if (rc < 0)
-                               GOTO(out_env, rc);
+                               goto out_env;
                }
 
                task = kthread_run(ptlrpcd, pc, "%s", pc->pc_name);
-               if (IS_ERR(task))
-                       GOTO(out_env, rc = PTR_ERR(task));
+               if (IS_ERR(task)) {
+                       rc = PTR_ERR(task);
+                       goto out_env;
+               }
 
                wait_for_completion(&pc->pc_starting);
        }
 
        size = offsetof(struct ptlrpcd, pd_threads[nthreads]);
        OBD_ALLOC(ptlrpcds, size);
-       if (ptlrpcds == NULL)
-               GOTO(out, rc = -ENOMEM);
+       if (ptlrpcds == NULL) {
+               rc = -ENOMEM;
+               goto out;
+       }
 
        snprintf(name, sizeof(name), "ptlrpcd_rcv");
        set_bit(LIOD_RECOVERY, &ptlrpcds->pd_thread_rcv.pc_flags);
        rc = ptlrpcd_start(-1, nthreads, name, &ptlrpcds->pd_thread_rcv);
        if (rc < 0)
-               GOTO(out, rc);
+               goto out;
 
        /* XXX: We start nthreads ptlrpc daemons. Each of them can process any
         *      non-recovery async RPC to improve overall async RPC efficiency.
                snprintf(name, sizeof(name), "ptlrpcd_%d", i);
                rc = ptlrpcd_start(i, nthreads, name, &ptlrpcds->pd_threads[i]);
                if (rc < 0)
-                       GOTO(out, rc);
+                       goto out;
        }
 
        ptlrpcds->pd_size = size;
 
                rc = -EINVAL;
        spin_unlock(&imp->imp_lock);
        if (rc)
-               GOTO(out, rc);
+               goto out;
 
        /* force import to be disconnected. */
        ptlrpc_set_import_discon(imp, 0);
                obd_str2uuid(&uuid, new_uuid);
                rc = import_set_conn_priority(imp, &uuid);
                if (rc)
-                       GOTO(out, rc);
+                       goto out;
        }
 
        /* Check if reconnect is already in progress */
        }
        spin_unlock(&imp->imp_lock);
        if (rc)
-               GOTO(out, rc);
+               goto out;
 
        rc = ptlrpc_connect_import(imp);
        if (rc)
-               GOTO(out, rc);
+               goto out;
 
        if (!async) {
                struct l_wait_info lwi;
 
        early_size = req->rq_nob_received;
        early_bufsz = size_roundup_power2(early_size);
        OBD_ALLOC_LARGE(early_buf, early_bufsz);
-       if (early_buf == NULL)
-               GOTO(err_req, rc = -ENOMEM);
+       if (early_buf == NULL) {
+               rc = -ENOMEM;
+               goto err_req;
+       }
 
        /* sanity checkings and copy data out, do it inside spinlock */
        spin_lock(&req->rq_lock);
 
        if (req->rq_replied) {
                spin_unlock(&req->rq_lock);
-               GOTO(err_buf, rc = -EALREADY);
+               rc = -EALREADY;
+               goto err_buf;
        }
 
        LASSERT(req->rq_repbuf);
        if (req->rq_reply_off != 0) {
                CERROR("early reply with offset %u\n", req->rq_reply_off);
                spin_unlock(&req->rq_lock);
-               GOTO(err_buf, rc = -EPROTO);
+               rc = -EPROTO;
+               goto err_buf;
        }
 
        if (req->rq_nob_received != early_size) {
                CERROR("data size has changed from %u to %u\n",
                       early_size, req->rq_nob_received);
                spin_unlock(&req->rq_lock);
-               GOTO(err_buf, rc = -EINVAL);
+               rc = -EINVAL;
+               goto err_buf;
        }
 
        if (req->rq_nob_received < sizeof(struct lustre_msg)) {
                CERROR("early reply length %d too small\n",
                       req->rq_nob_received);
                spin_unlock(&req->rq_lock);
-               GOTO(err_buf, rc = -EALREADY);
+               rc = -EALREADY;
+               goto err_buf;
        }
 
        memcpy(early_buf, req->rq_repbuf, early_size);
        if (rc) {
                DEBUG_REQ(D_ADAPTTO, early_req,
                          "error %d unwrap early reply", rc);
-               GOTO(err_ctx, rc);
+               goto err_ctx;
        }
 
        LASSERT(early_req->rq_repmsg);
                char    str2[24];
 
                if (flavor_equal(&sf, &sec->ps_flvr))
-                       GOTO(out, rc);
+                       goto out;
 
                CDEBUG(D_SEC, "import %s->%s: changing flavor %s -> %s\n",
                       imp->imp_obd->obd_name,
                    SPTLRPC_FLVR_MECH(sf.sf_rpc) ==
                    SPTLRPC_FLVR_MECH(sec->ps_flvr.sf_rpc)) {
                        sptlrpc_import_sec_adapt_inplace(imp, sec, &sf);
-                       GOTO(out, rc);
+                       goto out;
                }
        } else if (SPTLRPC_FLVR_BASE(sf.sf_rpc) !=
                   SPTLRPC_FLVR_BASE(SPTLRPC_FLVR_NULL)) {
 
                        cpt = cpts != NULL ? cpts[i] : i;
 
                OBD_CPT_ALLOC(svcpt, cptable, cpt, sizeof(*svcpt));
-               if (svcpt == NULL)
-                       GOTO(failed, rc = -ENOMEM);
+               if (svcpt == NULL) {
+                       rc = -ENOMEM;
+                       goto failed;
+               }
 
                service->srv_parts[i] = svcpt;
                rc = ptlrpc_service_part_init(service, svcpt, cpt);
                if (rc != 0)
-                       GOTO(failed, rc);
+                       goto failed;
        }
 
        ptlrpc_server_nthreads_check(service, conf);
 
        rc = ptlrpc_service_nrs_setup(service);
        if (rc != 0)
-               GOTO(failed, rc);
+               goto failed;
 
        CDEBUG(D_NET, "%s: Started, listening on portal %d\n",
               service->srv_name, service->srv_req_portal);
        if (rc != 0) {
                CERROR("Failed to start threads for service %s: %d\n",
                       service->srv_name, rc);
-               GOTO(failed, rc);
+               goto failed;
        }
 
        return service;
        if (reqcopy == NULL)
                return -ENOMEM;
        OBD_ALLOC_LARGE(reqmsg, req->rq_reqlen);
-       if (!reqmsg)
-               GOTO(out_free, rc = -ENOMEM);
+       if (!reqmsg) {
+               rc = -ENOMEM;
+               goto out_free;
+       }
 
        *reqcopy = *req;
        reqcopy->rq_reply_state = NULL;
        if (atomic_read(&req->rq_refcount) == 1) {
                DEBUG_REQ(D_ADAPTTO, reqcopy, "Normal reply already sent out, "
                          "abort sending early reply\n");
-               GOTO(out, rc = -EINVAL);
+               rc = -EINVAL;
+               goto out;
        }
 
        /* Connection ref */
        reqcopy->rq_export = class_conn2export(
                                     lustre_msg_get_handle(reqcopy->rq_reqmsg));
-       if (reqcopy->rq_export == NULL)
-               GOTO(out, rc = -ENODEV);
+       if (reqcopy->rq_export == NULL) {
+               rc = -ENODEV;
+               goto out;
+       }
 
        /* RPC ref */
        class_export_rpc_inc(reqcopy->rq_export);
        if (reqcopy->rq_export->exp_obd &&
-           reqcopy->rq_export->exp_obd->obd_fail)
-               GOTO(out_put, rc = -ENODEV);
+           reqcopy->rq_export->exp_obd->obd_fail) {
+               rc = -ENODEV;
+               goto out_put;
+       }
 
        rc = lustre_pack_reply_flags(reqcopy, 1, NULL, NULL, LPRFL_EARLY_REPLY);
        if (rc)
-               GOTO(out_put, rc);
+               goto out_put;
 
        rc = ptlrpc_send_reply(reqcopy, PTLRPC_REPLY_EARLY);
 
        /* Move it over to the request processing queue */
        rc = ptlrpc_server_request_add(svcpt, req);
        if (rc)
-               GOTO(err_req, rc);
+               goto err_req;
 
        wake_up(&svcpt->scp_waitq);
        return 1;
                LASSERT(hrp->hrp_nthrs > 0);
                OBD_CPT_ALLOC(hrp->hrp_thrs, ptlrpc_hr.hr_cpt_table, i,
                              hrp->hrp_nthrs * sizeof(*hrt));
-               if (hrp->hrp_thrs == NULL)
-                       GOTO(out, rc = -ENOMEM);
+               if (hrp->hrp_thrs == NULL) {
+                       rc = -ENOMEM;
+                       goto out;
+               }
 
                for (j = 0; j < hrp->hrp_nthrs; j++) {
                        hrt = &hrp->hrp_thrs[j];