block: sed-opal: don't repeat opal_discovery0 in each steps array

Originally each of the opal functions that call next include
opal_discovery0 in the array of steps. This is superfluous and
can be done always inside next.

Acked-by: Jon Derrick <jonathan.derrick@intel.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Scott Bauer <sbauer@plzdonthack.me>
Signed-off-by: David Kozub <zub@linux.fjfi.cvut.cz>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
David Kozub 2019-02-14 01:16:07 +01:00 committed by Jens Axboe
parent 3db87236cf
commit 0af2648ec3

View File

@ -216,6 +216,7 @@ static const u8 opalmethod[][OPAL_METHOD_LENGTH] = {
}; };
static int end_opal_session_error(struct opal_dev *dev); static int end_opal_session_error(struct opal_dev *dev);
static int opal_discovery0_step(struct opal_dev *dev);
struct opal_suspend_data { struct opal_suspend_data {
struct opal_lock_unlock unlk; struct opal_lock_unlock unlk;
@ -381,17 +382,33 @@ static void check_geometry(struct opal_dev *dev, const void *data)
dev->lowest_lba = geo->lowest_aligned_lba; dev->lowest_lba = geo->lowest_aligned_lba;
} }
static int execute_step(struct opal_dev *dev,
const struct opal_step *step, size_t stepIndex)
{
int error = step->fn(dev, step->data);
if (error) {
pr_debug("Step %zu (%pS) failed with error %d: %s\n",
stepIndex, step->fn, error,
opal_error_to_human(error));
}
return error;
}
static int next(struct opal_dev *dev, const struct opal_step *steps, static int next(struct opal_dev *dev, const struct opal_step *steps,
size_t n_steps) size_t n_steps)
{ {
const struct opal_step *step; size_t state = 0;
size_t state; int error;
int error = 0;
/* first do a discovery0 */
error = opal_discovery0_step(dev);
if (error)
return error;
for (state = 0; state < n_steps; state++) { for (state = 0; state < n_steps; state++) {
step = &steps[state]; error = execute_step(dev, &steps[state], state);
error = step->fn(dev, step->data);
if (error) if (error)
goto out_error; goto out_error;
} }
@ -400,14 +417,14 @@ static int next(struct opal_dev *dev, const struct opal_step *steps,
out_error: out_error:
/* /*
* For each OPAL command the first step in steps does a discovery0 * For each OPAL command the first step in steps starts some sort of
* and the second step starts some sort of session. If an error occurred * session. If an error occurred in the initial discovery0 or if an
* in the first two steps (and thus stopping the loop with state <= 1) * error occurred in the first step (and thus stopping the loop with
* then there was an error before or during the attempt to start a * state == 0) then there was an error before or during the attempt to
* session. Therefore we shouldn't attempt to terminate a session, as * start a session. Therefore we shouldn't attempt to terminate a
* one has not yet been created. * session, as one has not yet been created.
*/ */
if (state > 1) if (state > 0)
end_opal_session_error(dev); end_opal_session_error(dev);
return error; return error;
@ -506,6 +523,14 @@ static int opal_discovery0(struct opal_dev *dev, void *data)
return opal_discovery0_end(dev); return opal_discovery0_end(dev);
} }
static int opal_discovery0_step(struct opal_dev *dev)
{
const struct opal_step discovery0_step = {
opal_discovery0,
};
return execute_step(dev, &discovery0_step, 0);
}
static bool can_add(int *err, struct opal_dev *cmd, size_t len) static bool can_add(int *err, struct opal_dev *cmd, size_t len)
{ {
if (*err) if (*err)
@ -1831,10 +1856,10 @@ static int end_opal_session(struct opal_dev *dev, void *data)
static int end_opal_session_error(struct opal_dev *dev) static int end_opal_session_error(struct opal_dev *dev)
{ {
const struct opal_step error_end_session[] = { const struct opal_step error_end_session = {
{ end_opal_session, } end_opal_session,
}; };
return next(dev, error_end_session, ARRAY_SIZE(error_end_session)); return execute_step(dev, &error_end_session, 0);
} }
static inline void setup_opal_dev(struct opal_dev *dev) static inline void setup_opal_dev(struct opal_dev *dev)
@ -1846,14 +1871,11 @@ static inline void setup_opal_dev(struct opal_dev *dev)
static int check_opal_support(struct opal_dev *dev) static int check_opal_support(struct opal_dev *dev)
{ {
const struct opal_step steps[] = {
{ opal_discovery0, }
};
int ret; int ret;
mutex_lock(&dev->dev_lock); mutex_lock(&dev->dev_lock);
setup_opal_dev(dev); setup_opal_dev(dev);
ret = next(dev, steps, ARRAY_SIZE(steps)); ret = opal_discovery0_step(dev);
dev->supported = !ret; dev->supported = !ret;
mutex_unlock(&dev->dev_lock); mutex_unlock(&dev->dev_lock);
return ret; return ret;
@ -1906,7 +1928,6 @@ static int opal_secure_erase_locking_range(struct opal_dev *dev,
struct opal_session_info *opal_session) struct opal_session_info *opal_session)
{ {
const struct opal_step erase_steps[] = { const struct opal_step erase_steps[] = {
{ opal_discovery0, },
{ start_auth_opal_session, opal_session }, { start_auth_opal_session, opal_session },
{ get_active_key, &opal_session->opal_key.lr }, { get_active_key, &opal_session->opal_key.lr },
{ gen_key, }, { gen_key, },
@ -1925,7 +1946,6 @@ static int opal_erase_locking_range(struct opal_dev *dev,
struct opal_session_info *opal_session) struct opal_session_info *opal_session)
{ {
const struct opal_step erase_steps[] = { const struct opal_step erase_steps[] = {
{ opal_discovery0, },
{ start_auth_opal_session, opal_session }, { start_auth_opal_session, opal_session },
{ erase_locking_range, opal_session }, { erase_locking_range, opal_session },
{ end_opal_session, } { end_opal_session, }
@ -1946,7 +1966,6 @@ static int opal_enable_disable_shadow_mbr(struct opal_dev *dev,
OPAL_TRUE : OPAL_FALSE; OPAL_TRUE : OPAL_FALSE;
const struct opal_step mbr_steps[] = { const struct opal_step mbr_steps[] = {
{ opal_discovery0, },
{ start_admin1LSP_opal_session, &opal_mbr->key }, { start_admin1LSP_opal_session, &opal_mbr->key },
{ set_mbr_done, &enable_disable }, { set_mbr_done, &enable_disable },
{ end_opal_session, }, { end_opal_session, },
@ -1989,7 +2008,6 @@ static int opal_add_user_to_lr(struct opal_dev *dev,
struct opal_lock_unlock *lk_unlk) struct opal_lock_unlock *lk_unlk)
{ {
const struct opal_step steps[] = { const struct opal_step steps[] = {
{ opal_discovery0, },
{ start_admin1LSP_opal_session, &lk_unlk->session.opal_key }, { start_admin1LSP_opal_session, &lk_unlk->session.opal_key },
{ add_user_to_lr, lk_unlk }, { add_user_to_lr, lk_unlk },
{ end_opal_session, } { end_opal_session, }
@ -2023,7 +2041,6 @@ static int opal_add_user_to_lr(struct opal_dev *dev,
static int opal_reverttper(struct opal_dev *dev, struct opal_key *opal) static int opal_reverttper(struct opal_dev *dev, struct opal_key *opal)
{ {
const struct opal_step revert_steps[] = { const struct opal_step revert_steps[] = {
{ opal_discovery0, },
{ start_SIDASP_opal_session, opal }, { start_SIDASP_opal_session, opal },
{ revert_tper, } /* controller will terminate session */ { revert_tper, } /* controller will terminate session */
}; };
@ -2048,13 +2065,11 @@ static int __opal_lock_unlock(struct opal_dev *dev,
struct opal_lock_unlock *lk_unlk) struct opal_lock_unlock *lk_unlk)
{ {
const struct opal_step unlock_steps[] = { const struct opal_step unlock_steps[] = {
{ opal_discovery0, },
{ start_auth_opal_session, &lk_unlk->session }, { start_auth_opal_session, &lk_unlk->session },
{ lock_unlock_locking_range, lk_unlk }, { lock_unlock_locking_range, lk_unlk },
{ end_opal_session, } { end_opal_session, }
}; };
const struct opal_step unlock_sum_steps[] = { const struct opal_step unlock_sum_steps[] = {
{ opal_discovery0, },
{ start_auth_opal_session, &lk_unlk->session }, { start_auth_opal_session, &lk_unlk->session },
{ lock_unlock_locking_range_sum, lk_unlk }, { lock_unlock_locking_range_sum, lk_unlk },
{ end_opal_session, } { end_opal_session, }
@ -2071,7 +2086,6 @@ static int __opal_set_mbr_done(struct opal_dev *dev, struct opal_key *key)
{ {
u8 mbr_done_tf = OPAL_TRUE; u8 mbr_done_tf = OPAL_TRUE;
const struct opal_step mbrdone_step[] = { const struct opal_step mbrdone_step[] = {
{ opal_discovery0, },
{ start_admin1LSP_opal_session, key }, { start_admin1LSP_opal_session, key },
{ set_mbr_done, &mbr_done_tf }, { set_mbr_done, &mbr_done_tf },
{ end_opal_session, } { end_opal_session, }
@ -2098,7 +2112,6 @@ static int opal_lock_unlock(struct opal_dev *dev,
static int opal_take_ownership(struct opal_dev *dev, struct opal_key *opal) static int opal_take_ownership(struct opal_dev *dev, struct opal_key *opal)
{ {
const struct opal_step owner_steps[] = { const struct opal_step owner_steps[] = {
{ opal_discovery0, },
{ start_anybodyASP_opal_session, }, { start_anybodyASP_opal_session, },
{ get_msid_cpin_pin, }, { get_msid_cpin_pin, },
{ end_opal_session, }, { end_opal_session, },
@ -2122,7 +2135,6 @@ static int opal_activate_lsp(struct opal_dev *dev,
struct opal_lr_act *opal_lr_act) struct opal_lr_act *opal_lr_act)
{ {
const struct opal_step active_steps[] = { const struct opal_step active_steps[] = {
{ opal_discovery0, },
{ start_SIDASP_opal_session, &opal_lr_act->key }, { start_SIDASP_opal_session, &opal_lr_act->key },
{ get_lsp_lifecycle, }, { get_lsp_lifecycle, },
{ activate_lsp, opal_lr_act }, { activate_lsp, opal_lr_act },
@ -2144,7 +2156,6 @@ static int opal_setup_locking_range(struct opal_dev *dev,
struct opal_user_lr_setup *opal_lrs) struct opal_user_lr_setup *opal_lrs)
{ {
const struct opal_step lr_steps[] = { const struct opal_step lr_steps[] = {
{ opal_discovery0, },
{ start_auth_opal_session, &opal_lrs->session }, { start_auth_opal_session, &opal_lrs->session },
{ setup_locking_range, opal_lrs }, { setup_locking_range, opal_lrs },
{ end_opal_session, } { end_opal_session, }
@ -2161,7 +2172,6 @@ static int opal_setup_locking_range(struct opal_dev *dev,
static int opal_set_new_pw(struct opal_dev *dev, struct opal_new_pw *opal_pw) static int opal_set_new_pw(struct opal_dev *dev, struct opal_new_pw *opal_pw)
{ {
const struct opal_step pw_steps[] = { const struct opal_step pw_steps[] = {
{ opal_discovery0, },
{ start_auth_opal_session, &opal_pw->session }, { start_auth_opal_session, &opal_pw->session },
{ set_new_pw, &opal_pw->new_user_pw }, { set_new_pw, &opal_pw->new_user_pw },
{ end_opal_session, } { end_opal_session, }
@ -2185,7 +2195,6 @@ static int opal_activate_user(struct opal_dev *dev,
struct opal_session_info *opal_session) struct opal_session_info *opal_session)
{ {
const struct opal_step act_steps[] = { const struct opal_step act_steps[] = {
{ opal_discovery0, },
{ start_admin1LSP_opal_session, &opal_session->opal_key }, { start_admin1LSP_opal_session, &opal_session->opal_key },
{ internal_activate_user, opal_session }, { internal_activate_user, opal_session },
{ end_opal_session, } { end_opal_session, }