|
@@ -122,22 +122,17 @@ static void __smc_lgr_unregister_conn(struct smc_connection *conn)
|
|
sock_put(&smc->sk); /* sock_hold in smc_lgr_register_conn() */
|
|
sock_put(&smc->sk); /* sock_hold in smc_lgr_register_conn() */
|
|
}
|
|
}
|
|
|
|
|
|
-/* Unregister connection and trigger lgr freeing if applicable
|
|
|
|
|
|
+/* Unregister connection from lgr
|
|
*/
|
|
*/
|
|
static void smc_lgr_unregister_conn(struct smc_connection *conn)
|
|
static void smc_lgr_unregister_conn(struct smc_connection *conn)
|
|
{
|
|
{
|
|
struct smc_link_group *lgr = conn->lgr;
|
|
struct smc_link_group *lgr = conn->lgr;
|
|
- int reduced = 0;
|
|
|
|
|
|
|
|
write_lock_bh(&lgr->conns_lock);
|
|
write_lock_bh(&lgr->conns_lock);
|
|
if (conn->alert_token_local) {
|
|
if (conn->alert_token_local) {
|
|
- reduced = 1;
|
|
|
|
__smc_lgr_unregister_conn(conn);
|
|
__smc_lgr_unregister_conn(conn);
|
|
}
|
|
}
|
|
write_unlock_bh(&lgr->conns_lock);
|
|
write_unlock_bh(&lgr->conns_lock);
|
|
- if (!reduced || lgr->conns_num)
|
|
|
|
- return;
|
|
|
|
- smc_lgr_schedule_free_work(lgr);
|
|
|
|
}
|
|
}
|
|
|
|
|
|
/* Send delete link, either as client to request the initiation
|
|
/* Send delete link, either as client to request the initiation
|
|
@@ -291,7 +286,8 @@ out:
|
|
return rc;
|
|
return rc;
|
|
}
|
|
}
|
|
|
|
|
|
-static void smc_buf_unuse(struct smc_connection *conn)
|
|
|
|
|
|
+static void smc_buf_unuse(struct smc_connection *conn,
|
|
|
|
+ struct smc_link_group *lgr)
|
|
{
|
|
{
|
|
if (conn->sndbuf_desc)
|
|
if (conn->sndbuf_desc)
|
|
conn->sndbuf_desc->used = 0;
|
|
conn->sndbuf_desc->used = 0;
|
|
@@ -301,8 +297,6 @@ static void smc_buf_unuse(struct smc_connection *conn)
|
|
conn->rmb_desc->used = 0;
|
|
conn->rmb_desc->used = 0;
|
|
} else {
|
|
} else {
|
|
/* buf registration failed, reuse not possible */
|
|
/* buf registration failed, reuse not possible */
|
|
- struct smc_link_group *lgr = conn->lgr;
|
|
|
|
-
|
|
|
|
write_lock_bh(&lgr->rmbs_lock);
|
|
write_lock_bh(&lgr->rmbs_lock);
|
|
list_del(&conn->rmb_desc->list);
|
|
list_del(&conn->rmb_desc->list);
|
|
write_unlock_bh(&lgr->rmbs_lock);
|
|
write_unlock_bh(&lgr->rmbs_lock);
|
|
@@ -315,16 +309,21 @@ static void smc_buf_unuse(struct smc_connection *conn)
|
|
/* remove a finished connection from its link group */
|
|
/* remove a finished connection from its link group */
|
|
void smc_conn_free(struct smc_connection *conn)
|
|
void smc_conn_free(struct smc_connection *conn)
|
|
{
|
|
{
|
|
- if (!conn->lgr)
|
|
|
|
|
|
+ struct smc_link_group *lgr = conn->lgr;
|
|
|
|
+
|
|
|
|
+ if (!lgr)
|
|
return;
|
|
return;
|
|
- if (conn->lgr->is_smcd) {
|
|
|
|
|
|
+ if (lgr->is_smcd) {
|
|
smc_ism_unset_conn(conn);
|
|
smc_ism_unset_conn(conn);
|
|
tasklet_kill(&conn->rx_tsklet);
|
|
tasklet_kill(&conn->rx_tsklet);
|
|
} else {
|
|
} else {
|
|
smc_cdc_tx_dismiss_slots(conn);
|
|
smc_cdc_tx_dismiss_slots(conn);
|
|
}
|
|
}
|
|
- smc_lgr_unregister_conn(conn);
|
|
|
|
- smc_buf_unuse(conn);
|
|
|
|
|
|
+ smc_lgr_unregister_conn(conn); /* unsets conn->lgr */
|
|
|
|
+ smc_buf_unuse(conn, lgr); /* allow buffer reuse */
|
|
|
|
+
|
|
|
|
+ if (!lgr->conns_num)
|
|
|
|
+ smc_lgr_schedule_free_work(lgr);
|
|
}
|
|
}
|
|
|
|
|
|
static void smc_link_clear(struct smc_link *lnk)
|
|
static void smc_link_clear(struct smc_link *lnk)
|