Merging upstream version 1.1~rc0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
537ee18b08
commit
73281abe5f
764 changed files with 32602 additions and 5874 deletions
examples
|
@ -11,6 +11,7 @@
|
|||
* selected attributes for each component.
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include <inttypes.h>
|
||||
#include <libnvme.h>
|
||||
|
||||
int main()
|
||||
|
@ -34,7 +35,7 @@ int main()
|
|||
nvme_subsystem_get_nqn(s));
|
||||
|
||||
nvme_subsystem_for_each_ns_safe(s, n, _n) {
|
||||
printf("%c |-- %s lba size:%d lba max:%lu\n",
|
||||
printf("%c |-- %s lba size:%d lba max:%" PRIu64 "\n",
|
||||
_s ? '|' : ' ',
|
||||
nvme_ns_get_name(n),
|
||||
nvme_ns_get_lba_size(n),
|
||||
|
@ -50,7 +51,7 @@ int main()
|
|||
nvme_ctrl_get_state(c));
|
||||
|
||||
nvme_ctrl_for_each_ns_safe(c, n, _n)
|
||||
printf("%c %c %c-- %s lba size:%d lba max:%lu\n",
|
||||
printf("%c %c %c-- %s lba size:%d lba max:%" PRIu64 "\n",
|
||||
_s ? '|' : ' ', _c ? '|' : ' ',
|
||||
_n ? '|' : '`',
|
||||
nvme_ns_get_name(n),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue