Home
last modified time | relevance | path

Searched refs:NVME_IDENTIFY_DATA_SIZE (Results 1 – 5 of 5) sorted by relevance

/Linux-v5.10/drivers/nvme/target/
Dadmin-cmd.c552 static const int buf_size = NVME_IDENTIFY_DATA_SIZE; in nvmet_execute_identify_nslist()
632 if (sg_zero_buffer(req->sg, req->sg_cnt, NVME_IDENTIFY_DATA_SIZE - off, in nvmet_execute_identify_desclist()
633 off) != NVME_IDENTIFY_DATA_SIZE - off) in nvmet_execute_identify_desclist()
643 if (!nvmet_check_transfer_len(req, NVME_IDENTIFY_DATA_SIZE)) in nvmet_execute_identify()
Ddiscovery.c247 if (!nvmet_check_transfer_len(req, NVME_IDENTIFY_DATA_SIZE)) in nvmet_execute_disc_identify()
/Linux-v5.10/drivers/nvme/host/
Dcore.c1297 data = kzalloc(NVME_IDENTIFY_DATA_SIZE, GFP_KERNEL); in nvme_identify_ns_descs()
1302 NVME_IDENTIFY_DATA_SIZE); in nvme_identify_ns_descs()
1309 for (pos = 0; pos < NVME_IDENTIFY_DATA_SIZE; pos += len) { in nvme_identify_ns_descs()
4024 const int nr_entries = NVME_IDENTIFY_DATA_SIZE / sizeof(__le32); in nvme_scan_ns_list()
4032 ns_list = kzalloc(NVME_IDENTIFY_DATA_SIZE, GFP_KERNEL); in nvme_scan_ns_list()
4044 NVME_IDENTIFY_DATA_SIZE); in nvme_scan_ns_list()
4637 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != NVME_IDENTIFY_DATA_SIZE); in _nvme_check_size()
4638 BUILD_BUG_ON(sizeof(struct nvme_id_ns) != NVME_IDENTIFY_DATA_SIZE); in _nvme_check_size()
4639 BUILD_BUG_ON(sizeof(struct nvme_id_ns_zns) != NVME_IDENTIFY_DATA_SIZE); in _nvme_check_size()
4640 BUILD_BUG_ON(sizeof(struct nvme_id_ctrl_zns) != NVME_IDENTIFY_DATA_SIZE); in _nvme_check_size()
Dlightnvm.c251 BUILD_BUG_ON(sizeof(struct nvme_nvm_id12) != NVME_IDENTIFY_DATA_SIZE); in _nvme_nvm_check_size()
254 BUILD_BUG_ON(sizeof(struct nvme_nvm_id20) != NVME_IDENTIFY_DATA_SIZE); in _nvme_nvm_check_size()
/Linux-v5.10/include/linux/
Dnvme.h1094 #define NVME_IDENTIFY_DATA_SIZE 4096 macro