Home
last modified time | relevance | path

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

/linux/drivers/nvme/target/
H A Dpassthru.c45 data = kzalloc(NVME_IDENTIFY_DATA_SIZE, GFP_KERNEL); in nvmet_passthru_override_id_descs()
49 status = nvmet_copy_from_sgl(req, 0, data, NVME_IDENTIFY_DATA_SIZE); in nvmet_passthru_override_id_descs()
53 for (pos = 0; pos < NVME_IDENTIFY_DATA_SIZE; pos += len) { in nvmet_passthru_override_id_descs()
66 memset(data, 0, NVME_IDENTIFY_DATA_SIZE); in nvmet_passthru_override_id_descs()
74 status = nvmet_copy_to_sgl(req, 0, data, NVME_IDENTIFY_DATA_SIZE); in nvmet_passthru_override_id_descs()
H A Dadmin-cmd.c915 static const int buf_size = NVME_IDENTIFY_DATA_SIZE; in nvmet_execute_identify_endgrp_list()
947 static const int buf_size = NVME_IDENTIFY_DATA_SIZE; in nvmet_execute_identify_nslist()
1041 if (sg_zero_buffer(req->sg, req->sg_cnt, NVME_IDENTIFY_DATA_SIZE - off, in nvmet_execute_identify_desclist()
1042 off) != NVME_IDENTIFY_DATA_SIZE - off) in nvmet_execute_identify_desclist()
1114 if (!nvmet_check_transfer_len(req, NVME_IDENTIFY_DATA_SIZE)) in nvmet_execute_identify()
1634 return NVME_IDENTIFY_DATA_SIZE; in nvmet_admin_cmd_data_len()
/linux/include/linux/
H A Dnvme.h1383 #define NVME_IDENTIFY_DATA_SIZE 4096 macro