Lines Matching refs:rport
226 struct fcloop_rport *rport; member
313 struct fcloop_rport *rport = remoteport->private; in fcloop_ls_req() local
319 if (!rport->targetport) { in fcloop_ls_req()
327 tls_req->tport = rport->targetport->private; in fcloop_ls_req()
328 ret = nvmet_fc_rcv_ls_req(rport->targetport, &tls_req->tgt_ls_req, in fcloop_ls_req()
396 struct fcloop_rport *rport = remoteport->private; in fcloop_fcp_req() local
401 if (!rport->targetport) in fcloop_fcp_req()
412 tfcp_req->tport = rport->targetport->private; in fcloop_fcp_req()
416 ret = nvmet_fc_rcv_fcp_req(rport->targetport, &tfcp_req->tgt_fcp_req, in fcloop_fcp_req()
615 struct fcloop_rport *rport = remoteport->private; in fcloop_fcp_abort() local
629 if (rport->targetport) in fcloop_fcp_abort()
630 nvmet_fc_rcv_fcp_abort(rport->targetport, in fcloop_fcp_abort()
678 struct fcloop_rport *rport = remoteport->private; in fcloop_remoteport_delete() local
680 fcloop_nport_put(rport->nport); in fcloop_remoteport_delete()
908 if ((remoteport && nport->rport) || in fcloop_alloc_nport()
950 struct fcloop_rport *rport; in fcloop_create_remote_port() local
972 rport = remoteport->private; in fcloop_create_remote_port()
973 rport->remoteport = remoteport; in fcloop_create_remote_port()
974 rport->targetport = (nport->tport) ? nport->tport->targetport : NULL; in fcloop_create_remote_port()
979 rport->nport = nport; in fcloop_create_remote_port()
980 rport->lport = nport->lport; in fcloop_create_remote_port()
981 nport->rport = rport; in fcloop_create_remote_port()
990 struct fcloop_rport *rport = nport->rport; in __unlink_remote_port() local
992 if (rport && nport->tport) in __unlink_remote_port()
994 nport->rport = NULL; in __unlink_remote_port()
996 return rport; in __unlink_remote_port()
1000 __remoteport_unreg(struct fcloop_nport *nport, struct fcloop_rport *rport) in __remoteport_unreg() argument
1002 if (!rport) in __remoteport_unreg()
1005 return nvme_fc_unregister_remoteport(rport->remoteport); in __remoteport_unreg()
1013 static struct fcloop_rport *rport; in fcloop_delete_remote_port() local
1026 tmpport->port_name == portname && tmpport->rport) { in fcloop_delete_remote_port()
1028 rport = __unlink_remote_port(nport); in fcloop_delete_remote_port()
1038 ret = __remoteport_unreg(nport, rport); in fcloop_delete_remote_port()
1071 tport->remoteport = (nport->rport) ? nport->rport->remoteport : NULL; in fcloop_create_target_port()
1072 if (nport->rport) in fcloop_create_target_port()
1073 nport->rport->targetport = targetport; in fcloop_create_target_port()
1087 if (tport && nport->rport) in __unlink_target_port()
1088 nport->rport->targetport = NULL; in __unlink_target_port()
1203 struct fcloop_rport *rport; in fcloop_exit() local
1216 rport = __unlink_remote_port(nport); in fcloop_exit()
1224 ret = __remoteport_unreg(nport, rport); in fcloop_exit()