search for: tbl_dma_addr

Displaying 4 results from an estimated 4 matches for "tbl_dma_addr".

2020 Apr 30
0
[PATCH 3/5] swiotlb: Add alloc and free APIs
...APM_NO_ERROR include/linux/swiotlb.h:231:9: note: each undeclared identifier is reported only once for each function it appears in vim +231 include/linux/swiotlb.h 226 227 static inline phys_addr_t swiotlb_alloc(struct swiotlb_pool *pool, 228 size_t alloc_size, unsigned long tbl_dma_addr, 229 unsigned long mask) 230 { > 231 return DMA_MAPPING_ERROR; 232 } 233 --- 0-DAY CI Kernel Test Service, Intel Corporation https://lists.01.org/hyperkitty/list/kbuild-all at lists.01.org -------------- next part -------------- A non-text attachment was scrubbed... Name: .conf...
2013 Jan 24
1
[PATCH 35/35] x86: Don't panic if can not alloc buffer for swiotlb
...s_addr_t swiotlb_tbl_map_single(struct device *hwdev, unsigned long offset_slots; unsigned long max_slots; + if (no_iotlb_memory) + panic("Can not allocate SWIOTLB buffer earlier and can't now provide you with the DMA bounce buffer"); + mask = dma_get_seg_boundary(hwdev); tbl_dma_addr &= mask; -- 1.7.10.4
2013 Jan 24
1
[PATCH 35/35] x86: Don't panic if can not alloc buffer for swiotlb
...s_addr_t swiotlb_tbl_map_single(struct device *hwdev, unsigned long offset_slots; unsigned long max_slots; + if (no_iotlb_memory) + panic("Can not allocate SWIOTLB buffer earlier and can't now provide you with the DMA bounce buffer"); + mask = dma_get_seg_boundary(hwdev); tbl_dma_addr &= mask; -- 1.7.10.4
2020 Apr 28
0
[PATCH 5/5] virtio: Add bounce DMA ops
...| ^ vim +235 include/linux/swiotlb.h 9ab4c39d9f9298 Srivatsa Vaddagiri 2020-04-28 229 9ab4c39d9f9298 Srivatsa Vaddagiri 2020-04-28 230 static inline phys_addr_t swiotlb_alloc(struct swiotlb_pool *pool, 9ab4c39d9f9298 Srivatsa Vaddagiri 2020-04-28 231 size_t alloc_size, unsigned long tbl_dma_addr, 9ab4c39d9f9298 Srivatsa Vaddagiri 2020-04-28 232 unsigned long mask) 9ab4c39d9f9298 Srivatsa Vaddagiri 2020-04-28 233 { 9ab4c39d9f9298 Srivatsa Vaddagiri 2020-04-28 234 return DMA_MAPPING_ERROR; 9ab4c39d9f9298 Srivatsa Vaddagiri 2020-04-28 @235 } 9ab4c39d9f9298 Srivatsa Vaddagiri 2020-04...