taglinefilesource code
new_dma_malloc_pages2591drivers/scsi/scsi.cunsigned char ** new_dma_malloc_pages = NULL;
new_dma_malloc_pages2662drivers/scsi/scsi.csize = (new_dma_sectors / SECTORS_PER_PAGE)*sizeof(*new_dma_malloc_pages);
new_dma_malloc_pages2663drivers/scsi/scsi.cnew_dma_malloc_pages = (unsigned char **) scsi_init_malloc(size, GFP_ATOMIC);
new_dma_malloc_pages2664drivers/scsi/scsi.cmemset(new_dma_malloc_pages, 0, size);
new_dma_malloc_pages2672drivers/scsi/scsi.cnew_dma_malloc_pages[i] = (unsigned char *)
new_dma_malloc_pages2692drivers/scsi/scsi.cmemcpy(new_dma_malloc_pages, dma_malloc_pages, size);
new_dma_malloc_pages2697drivers/scsi/scsi.cdma_malloc_pages = new_dma_malloc_pages;