Commit b2f9c6eb authored by Jonas Rabenstein's avatar Jonas Rabenstein Committed by Jens Axboe

block: sed-opal: print failed function address

Add function address (and if available its symbol) to the message if a
step function fails.
Signed-off-by: default avatarJonas Rabenstein <jonas.rabenstein@studium.uni-erlangen.de>
Signed-off-by: default avatarDavid Kozub <zub@linux.fjfi.cvut.cz>
Reviewed-by: default avatarScott Bauer <sbauer@plzdonthack.me>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: Jon Derrick <jonathan.derrick@intel.com
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent b68f09ec
......@@ -394,8 +394,8 @@ static int next(struct opal_dev *dev)
error = step->fn(dev, step->data);
if (error) {
pr_debug("Error on step function: %d with error %d: %s\n",
state, error,
pr_debug("Step %d (%pS) failed with error %d: %s\n",
state, step->fn, error,
opal_error_to_human(error));
/* For each OPAL command we do a discovery0 then we
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment