taglinefilesource code
new_dma_malloc_pages2540drivers/scsi/scsi.cunsigned char ** new_dma_malloc_pages = NULL;
new_dma_malloc_pages2611drivers/scsi/scsi.csize = (new_dma_sectors / SECTORS_PER_PAGE)*sizeof(*new_dma_malloc_pages);
new_dma_malloc_pages2612drivers/scsi/scsi.cnew_dma_malloc_pages = (unsigned char **) scsi_init_malloc(size, GFP_ATOMIC);
new_dma_malloc_pages2613drivers/scsi/scsi.cmemset(new_dma_malloc_pages, 0, size);
new_dma_malloc_pages2621drivers/scsi/scsi.cnew_dma_malloc_pages[i] = (unsigned char *)
new_dma_malloc_pages2641drivers/scsi/scsi.cmemcpy(new_dma_malloc_pages, dma_malloc_pages, size);
new_dma_malloc_pages2646drivers/scsi/scsi.cdma_malloc_pages = new_dma_malloc_pages;