mirror of https://github.com/torvalds/linux.git
RDMA/rtrs-clt: Kill rtrs_clt_{start,stop}_hb
The two wrappers are not needed since we can call rtrs_{start,stop}_hb
directly.
Link: https://lore.kernel.org/r/20210528113018.52290-9-jinpu.wang@ionos.com
Signed-off-by: Guoqing Jiang <guoqing.jiang@ionos.com>
Signed-off-by: Jack Wang <jinpu.wang@ionos.com>
Signed-off-by: Gioh Kim <gi-oh.kim@ionos.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
This commit is contained in:
parent
2d612f0d3d
commit
5e82ac7c00
|
|
@ -1449,16 +1449,6 @@ static void rtrs_clt_init_hb(struct rtrs_clt_sess *sess)
|
|||
rtrs_wq);
|
||||
}
|
||||
|
||||
static void rtrs_clt_start_hb(struct rtrs_clt_sess *sess)
|
||||
{
|
||||
rtrs_start_hb(&sess->s);
|
||||
}
|
||||
|
||||
static void rtrs_clt_stop_hb(struct rtrs_clt_sess *sess)
|
||||
{
|
||||
rtrs_stop_hb(&sess->s);
|
||||
}
|
||||
|
||||
static void rtrs_clt_reconnect_work(struct work_struct *work);
|
||||
static void rtrs_clt_close_work(struct work_struct *work);
|
||||
|
||||
|
|
@ -2098,7 +2088,7 @@ static void rtrs_clt_stop_and_destroy_conns(struct rtrs_clt_sess *sess)
|
|||
*/
|
||||
synchronize_rcu();
|
||||
|
||||
rtrs_clt_stop_hb(sess);
|
||||
rtrs_stop_hb(&sess->s);
|
||||
|
||||
/*
|
||||
* The order it utterly crucial: firstly disconnect and complete all
|
||||
|
|
@ -2291,7 +2281,7 @@ static int init_conns(struct rtrs_clt_sess *sess)
|
|||
if (err)
|
||||
goto destroy;
|
||||
|
||||
rtrs_clt_start_hb(sess);
|
||||
rtrs_start_hb(&sess->s);
|
||||
|
||||
return 0;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue