-
Notifications
You must be signed in to change notification settings - Fork 298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP Fork DMG storage query commands from daos_test #2840
base: master
Are you sure you want to change the base?
Conversation
(DAOS-4658 & DAOS-4659) Currently adds functions for running dmg storage query smd --devices & dmg storage query blobstore-health --devuuid=UUID Necessary output from the commands such as the device uuids as well as the I/O error counters in the blobstore health data are parsed and returned. A daos_nvme_recovery test was added to demonstrate using these forking functions. Signed-off-by: Sydney Vanda <sydney.m.vanda@intel.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style warning(s) for job https://build.hpdd.intel.com/job/daos-stack/job/daos/job/PR-2840/1/
Please review https://wiki.hpdd.intel.com/display/DC/Coding+Rules
return -1; | ||
|
||
while (fgets(buf, sizeof(buf), bs_health) != 0) { | ||
//printf("%s\n", buf); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) do not use C99 // comments
Test stage checkpatch completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-2840/1/execution/node/56/log |
Test stage Build RPM on Leap 15 completed with status UNSTABLE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-2840/1/execution/node/206/log |
Test stage Functional_Hardware_Small completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-2840/1/execution/node/670/log |
Test stage Functional_Hardware_Medium completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-2840/1/execution/node/791/log |
Test stage Functional_Hardware_Large completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-2840/1/execution/node/860/log |
(DAOS-4658 & DAOS-4659)
Currently adds functions for running
dmg storage query smd --devices
&
dmg storage query blobstore-health --devuuid=UUID
Necessary output from the commands such as the device uuids as well as
the I/O error counters in the blobstore health data are parsed and
returned.
A daos_nvme_recovery test was added to demonstrate using these
forking functions.
Signed-off-by: Sydney Vanda sydney.m.vanda@intel.com