提交 e3d4440c 编写于 作者: A Andy Grover 提交者: Nicholas Bellinger

target/tcm_fc: Rename ft_tport_create to ft_tport_get

Because it doesn't always create, if there's an existing one it just
returns it.
Signed-off-by: NAndy Grover <agrover@redhat.com>
Signed-off-by: NNicholas Bellinger <nab@linux-iscsi.org>
上级 0d7cb932
...@@ -51,7 +51,7 @@ static void ft_sess_delete_all(struct ft_tport *); ...@@ -51,7 +51,7 @@ static void ft_sess_delete_all(struct ft_tport *);
* Lookup or allocate target local port. * Lookup or allocate target local port.
* Caller holds ft_lport_lock. * Caller holds ft_lport_lock.
*/ */
static struct ft_tport *ft_tport_create(struct fc_lport *lport) static struct ft_tport *ft_tport_get(struct fc_lport *lport)
{ {
struct ft_tpg *tpg; struct ft_tpg *tpg;
struct ft_tport *tport; struct ft_tport *tport;
...@@ -115,7 +115,7 @@ static void ft_tport_delete(struct ft_tport *tport) ...@@ -115,7 +115,7 @@ static void ft_tport_delete(struct ft_tport *tport)
void ft_lport_add(struct fc_lport *lport, void *arg) void ft_lport_add(struct fc_lport *lport, void *arg)
{ {
mutex_lock(&ft_lport_lock); mutex_lock(&ft_lport_lock);
ft_tport_create(lport); ft_tport_get(lport);
mutex_unlock(&ft_lport_lock); mutex_unlock(&ft_lport_lock);
} }
...@@ -352,7 +352,7 @@ static int ft_prli_locked(struct fc_rport_priv *rdata, u32 spp_len, ...@@ -352,7 +352,7 @@ static int ft_prli_locked(struct fc_rport_priv *rdata, u32 spp_len,
struct ft_node_acl *acl; struct ft_node_acl *acl;
u32 fcp_parm; u32 fcp_parm;
tport = ft_tport_create(rdata->local_port); tport = ft_tport_get(rdata->local_port);
if (!tport) if (!tport)
goto not_target; /* not a target for this local port */ goto not_target; /* not a target for this local port */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册