rbd: log stderror when running modprobe

logging the error is not user-friendly and
it contains system error message. Log the
stderr which is user-friendly error message
for identifying the problem.

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
Madhu Rajanna
2022-02-14 16:48:31 +05:30
committed by mergify[bot]
parent 0311eb5f44
commit 46378f3bfc
2 changed files with 6 additions and 4 deletions

View File

@ -214,6 +214,7 @@ var supportedFeatures = map[string]imageFeature{
// GetKrbdSupportedFeatures load the module if needed and return supported
// features attribute as a string.
func GetKrbdSupportedFeatures() (string, error) {
var stderr string
// check if the module is loaded or compiled in
_, err := os.Stat(krbdSupportedFeaturesFile)
if err != nil {
@ -223,9 +224,9 @@ func GetKrbdSupportedFeatures() (string, error) {
return "", err
}
// try to load the module
_, _, err = util.ExecCommand(context.TODO(), "modprobe", rbdDefaultMounter)
_, stderr, err = util.ExecCommand(context.TODO(), "modprobe", rbdDefaultMounter)
if err != nil {
log.ErrorLogMsg("modprobe failed: %v", err)
log.ErrorLogMsg("modprobe failed (%v): %q", err, stderr)
return "", err
}