Lines Matching refs:alloc_len

1564 	u32 alloc_len, n;  in resp_inquiry()  local
1568 alloc_len = get_unaligned_be16(cmd + 3); in resp_inquiry()
1680 len = min_t(u32, get_unaligned_be16(arr + 2) + 4, alloc_len); in resp_inquiry()
1718 min_t(u32, alloc_len, SDEBUG_LONG_INQ_SZ)); in resp_inquiry()
1733 u32 alloc_len = cmd[4]; in resp_requests() local
1778 return fill_from_dev_buffer(scp, arr, min_t(u32, len, alloc_len)); in resp_requests()
1860 u32 alloc_len; in resp_readcap16() local
1862 alloc_len = get_unaligned_be32(cmd + 10); in resp_readcap16()
1896 min_t(u32, alloc_len, SDEBUG_READCAP16_ARR_SZ)); in resp_readcap16()
1984 u32 alloc_len, a_len; in resp_rsup_opcodes() local
1995 alloc_len = get_unaligned_be32(cmd + 6); in resp_rsup_opcodes()
1996 if (alloc_len < 4 || alloc_len > 0xffff) { in resp_rsup_opcodes()
2000 if (alloc_len > 8192) in resp_rsup_opcodes()
2003 a_len = alloc_len; in resp_rsup_opcodes()
2123 len = (offset < alloc_len) ? offset : alloc_len; in resp_rsup_opcodes()
2133 u32 alloc_len, len; in resp_rsup_tmfs() local
2139 alloc_len = get_unaligned_be32(cmd + 6); in resp_rsup_tmfs()
2140 if (alloc_len < 4) { in resp_rsup_tmfs()
2152 len = (len < alloc_len) ? len : alloc_len; in resp_rsup_tmfs()
2323 u32 alloc_len, offset, len; in resp_mode_sense() local
2343 alloc_len = msense_6 ? cmd[4] : get_unaligned_be16(cmd + 7); in resp_mode_sense()
2480 return fill_from_dev_buffer(scp, arr, min_t(u32, alloc_len, offset)); in resp_mode_sense()
2596 u32 alloc_len, len, n; in resp_log_sense() local
2609 alloc_len = get_unaligned_be16(cmd + 7); in resp_log_sense()
2666 len = min_t(u32, get_unaligned_be16(arr + 2) + 4, alloc_len); in resp_log_sense()
4019 u32 alloc_len, mapped, num; in resp_get_lba_status() local
4024 alloc_len = get_unaligned_be32(cmd + 10); in resp_get_lba_status()
4026 if (alloc_len < 24) in resp_get_lba_status()
4146 unsigned int alloc_len; in resp_report_luns() local
4162 alloc_len = get_unaligned_be32(cmd + 6); in resp_report_luns()
4164 if (alloc_len < 4) { in resp_report_luns()
4165 pr_err("alloc len too small %d\n", alloc_len); in resp_report_luns()
4320 u32 alloc_len, rep_opts, rep_len; in resp_report_zones() local
4334 alloc_len = get_unaligned_be32(cmd + 10); in resp_report_zones()
4335 if (alloc_len == 0) in resp_report_zones()
4346 rep_max_zones = min((alloc_len - 64) >> ilog2(RZONES_DESC_HD), in resp_report_zones()
4349 arr = kzalloc(alloc_len, GFP_ATOMIC); in resp_report_zones()
4441 ret = fill_from_dev_buffer(scp, arr, min_t(u32, alloc_len, rep_len)); in resp_report_zones()