RDMA/rtrs-clt: Rename __rtrs_clt_change_state to rtrs_clt_change_state

Let's rename it to rtrs_clt_change_state since the previous one is
killed.

Also update the comment to make it more clear.

Link: https://lore.kernel.org/r/20201217141915.56989-13-jinpu.wang@cloud.ionos.com
Signed-off-by: Guoqing Jiang <guoqing.jiang@cloud.ionos.com>
Reviewed-by: Md Haris Iqbal <haris.iqbal@cloud.ionos.com>
Signed-off-by: Jack Wang <jinpu.wang@cloud.ionos.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
This commit is contained in:
Guoqing Jiang 2020-12-17 15:19:08 +01:00 committed by Jason Gunthorpe
parent 11f7b3940d
commit 7a8732a6f9

View file

@ -178,18 +178,18 @@ struct rtrs_clt_con *rtrs_permit_to_clt_con(struct rtrs_clt_sess *sess,
} }
/** /**
* __rtrs_clt_change_state() - change the session state through session state * rtrs_clt_change_state() - change the session state through session state
* machine. * machine.
* *
* @sess: client session to change the state of. * @sess: client session to change the state of.
* @new_state: state to change to. * @new_state: state to change to.
* *
* returns true if successful, false if the requested state can not be set. * returns true if sess's state is changed to new state, otherwise return false.
* *
* Locks: * Locks:
* state_wq lock must be hold. * state_wq lock must be hold.
*/ */
static bool __rtrs_clt_change_state(struct rtrs_clt_sess *sess, static bool rtrs_clt_change_state(struct rtrs_clt_sess *sess,
enum rtrs_clt_state new_state) enum rtrs_clt_state new_state)
{ {
enum rtrs_clt_state old_state; enum rtrs_clt_state old_state;
@ -286,7 +286,7 @@ static bool rtrs_clt_change_state_from_to(struct rtrs_clt_sess *sess,
spin_lock_irq(&sess->state_wq.lock); spin_lock_irq(&sess->state_wq.lock);
if (sess->state == old_state) if (sess->state == old_state)
changed = __rtrs_clt_change_state(sess, new_state); changed = rtrs_clt_change_state(sess, new_state);
spin_unlock_irq(&sess->state_wq.lock); spin_unlock_irq(&sess->state_wq.lock);
return changed; return changed;
@ -1361,7 +1361,7 @@ static bool rtrs_clt_change_state_get_old(struct rtrs_clt_sess *sess,
spin_lock_irq(&sess->state_wq.lock); spin_lock_irq(&sess->state_wq.lock);
if (old_state) if (old_state)
*old_state = sess->state; *old_state = sess->state;
changed = __rtrs_clt_change_state(sess, new_state); changed = rtrs_clt_change_state(sess, new_state);
spin_unlock_irq(&sess->state_wq.lock); spin_unlock_irq(&sess->state_wq.lock);
return changed; return changed;