/
githubmirror
/
nvme-cli
Обзор
Документация
Войти
/
githubmirror
/
nvme-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
libnvme/tests/tree.py
22 строки
461 B
Daniel Wagner
libnvme: rename test to tests
10 авг 2026, 19:54
10 авг 2026, 19:54
50f3246
Код
Авторство
О чём код?
#!/usr/bin/python3 ''' SPDX-License-Identifier: LGPL-2.1-or-later This file is part of libnvme. Copyright (c) 2021 SUSE Software Solutions AG Authors: Hannes Reinecke <hare@suse.de> Scans the NVMe subsystem and prints out all found hosts, subsystems, and controllers ''' from libnvme3 import nvme r = nvme.nvme_root() for h in r.hosts(): print (h) for s in h.subsystems(): print (s) for c in s.controllers(): print (c)