[PATCH nvme-cli] delete unused header file
chengjike
chengjike.cheng at huawei.com
Wed Oct 13 06:03:48 PDT 2021
The base functions have been convert to "libnvme" library, so delete unused header file "nvme-private.h".
Signed-off-by: chengjike <chengjike.cheng at huawei.com>
---
nvme-private.h | 71 --------------------------------------------------
1 file changed, 71 deletions(-)
delete mode 100644 nvme-private.h
diff --git a/nvme-private.h b/nvme-private.h
deleted file mode 100644
index 1fd4eb2..0000000
--- a/nvme-private.h
+++ /dev/null
@@ -1,71 +0,0 @@
-#ifndef _NVME_PRIVATE_H
-#define _NVME_PRIVATE_H
-
-struct nvme_subsystem;
-struct nvme_ctrl;
-
-struct nvme_namespace {
- char *name;
- struct nvme_ctrl *ctrl;
-
- unsigned nsid;
- struct nvme_id_ns ns;
-};
-
-struct nvme_ctrl {
- char *name;
- char *path;
- struct nvme_subsystem *subsys;
-
- char *address;
- char *transport;
- char *state;
- char *ana_state;
- char *traddr;
- char *trsvcid;
- char *host_traddr;
- char *host_iface;
- char *hostnqn;
- char *hostid;
-
- struct nvme_id_ctrl id;
-
- int nr_namespaces;
- struct nvme_namespace *namespaces;
-};
-
-struct nvme_subsystem {
- char *name;
- char *subsysnqn;
-
- int nr_ctrls;
- struct nvme_ctrl *ctrls;
-
- int nr_namespaces;
- struct nvme_namespace *namespaces;
-};
-
-struct nvme_topology {
- int nr_subsystems;
- struct nvme_subsystem *subsystems;
-};
-
-void *mmap_registers(const char *dev);
-
-int scan_ctrl_namespace_filter(const struct dirent *d);
-int scan_namespace_filter(const struct dirent *d);
-int scan_ctrl_paths_filter(const struct dirent *d);
-int scan_ctrls_filter(const struct dirent *d);
-int scan_subsys_filter(const struct dirent *d);
-int scan_dev_filter(const struct dirent *d);
-
-int scan_subsystems(struct nvme_topology *t, const char *subsysnqn,
- __u32 ns_instance, int nsid, char *dev_dir);
-void free_topology(struct nvme_topology *t);
-char *get_nvme_subsnqn(char *path);
-char *nvme_get_ctrl_attr(const char *path, const char *attr);
-
-int uuid_from_dmi(char *uuid);
-int uuid_from_systemd(char *uuid);
-
-#endif /* _NVME_PRIVATE_H */
--
2.24.0.windows.2
More information about the Linux-nvme
mailing list