taglinefilesource code
new_dma_malloc_pages2552drivers/scsi/scsi.cunsigned char ** new_dma_malloc_pages = NULL;
new_dma_malloc_pages2623drivers/scsi/scsi.csize = (new_dma_sectors / SECTORS_PER_PAGE)*sizeof(*new_dma_malloc_pages);
new_dma_malloc_pages2624drivers/scsi/scsi.cnew_dma_malloc_pages = (unsigned char **) scsi_init_malloc(size, GFP_ATOMIC);
new_dma_malloc_pages2625drivers/scsi/scsi.cmemset(new_dma_malloc_pages, 0, size);
new_dma_malloc_pages2633drivers/scsi/scsi.cnew_dma_malloc_pages[i] = (unsigned char *)
new_dma_malloc_pages2653drivers/scsi/scsi.cmemcpy(new_dma_malloc_pages, dma_malloc_pages, size);
new_dma_malloc_pages2658drivers/scsi/scsi.cdma_malloc_pages = new_dma_malloc_pages;