Lines Matching defs:nvmet_subsys
304 struct nvmet_subsys { struct
305 enum nvme_subsys_type type;
307 struct mutex lock;
308 struct kref ref;
310 struct xarray namespaces;
311 unsigned int nr_namespaces;
312 u32 max_nsid;
313 u16 cntlid_min;
314 u16 cntlid_max;
316 struct list_head ctrls;
318 struct list_head hosts;
319 bool allow_any_host;
321 struct dentry *debugfs_dir;
323 u16 max_qid;
325 u64 ver;
326 char serial[NVMET_SN_MAX_SIZE];
327 bool subsys_discovered;
328 char *subsysnqn;
329 bool pi_support;
331 struct config_group group;
356 static inline struct nvmet_subsys *to_subsys(struct config_item *item) in to_subsys() argument