Searched defs:map_storep (Results 1 - 1 of 1) sorted by last modified time

/drivers/scsi/
H A Dscsi_debug.c319 static void *map_storep; /* provisioning map */ variable
2172 mapped = test_bit(index, map_storep);
2175 next = find_next_zero_bit(map_storep, map_size, index);
2177 next = find_next_bit(map_storep, map_size, index);
2193 set_bit(index, map_storep);
2209 clear_bit(index, map_storep);
3684 count = bitmap_scnlistprintf(buf, PAGE_SIZE, map_storep, map_size);
3921 map_storep = vmalloc(BITS_TO_LONGS(map_size) * sizeof(long));
3925 if (map_storep == NULL) {
3931 bitmap_zero(map_storep, map_siz
[all...]

Completed in 102 milliseconds