summaryrefslogtreecommitdiff
path: root/kernel/dma
AgeCommit message (Expand)AuthorFilesLines
2024-12-14dma-debug: fix a possible deadlock on radix_lockLevi Yun1-2/+6
2024-09-12dma-debug: avoid deadlock between dma debug vs printk and netconsoleRik van Riel1-1/+4
2024-08-19dma: fix call order in dmam_free_coherentLance Richardson1-1/+1
2024-01-25dma-mapping: clear dev->dma_mem to NULL after freeing itJoakim Zhang1-1/+3
2024-01-25dma-mapping: Add dma_release_coherent_memory to DMA APIMark-PK Tsai1-2/+8
2023-10-10dma-debug: don't call __dma_entry_alloc_check_leak() under free_entries_lockSergey Senozhatsky1-5/+15
2023-08-26dma-remap: use kvmalloc_array/kvfree for larger dma memory remapgaoxu1-2/+2
2022-10-05swiotlb: max mapping size takes min align mask into accountTianyu Lan1-1/+12
2022-09-15swiotlb: avoid potential left shift overflowChao Gao1-1/+4
2022-06-22dma-direct: don't over-decrypt memoryRobin Murphy1-10/+6
2022-06-22dma-debug: make things less spammy under memory pressureRob Clark1-1/+1
2022-06-09dma-debug: change allocation mode from GFP_NOWAIT to GFP_ATIOMICMikulas Patocka1-1/+1
2022-05-25Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE""Linus Torvalds1-3/+8
2022-05-25Revert "swiotlb: fix info leak with DMA_FROM_DEVICE"Sasha Levin1-2/+1
2022-04-20dma-direct: avoid redundant memory sync for swiotlbChao Gao1-1/+2
2022-04-08dma-debug: fix return value of __setup handlersRandy Dunlap1-2/+2
2022-04-08swiotlb: fix info leak with DMA_FROM_DEVICEHalil Pasic1-1/+2
2022-01-27dma/pool: create dma atomic pool only if dma zone has managed pagesBaoquan He1-2/+2
2021-10-27dma-debug: fix sg checks in debug_dma_map_sg()Gerald Schaefer1-6/+6
2021-09-18dma-debug: fix debugfs initialization orderAnthony Iliopoulos1-3/+4
2021-07-28dma-mapping: handle vmalloc addresses in dma_common_{mmap,get_sgtable}Roman Skakun1-2/+10
2021-06-30swiotlb: manipulate orig_addr when tlb_addr has offsetBumyong Lee1-0/+3
2021-05-19swiotlb: Fix the type of indexClaire Chang1-1/+2
2021-05-07swiotlb: respect min_align_maskJianxiong Gao1-10/+31
2021-05-07swiotlb: don't modify orig_addr in swiotlb_tbl_sync_singleJianxiong Gao1-1/+0
2021-05-07swiotlb: refactor swiotlb_tbl_map_singleJianxiong Gao1-90/+89
2021-05-07swiotlb: clean up swiotlb_tbl_unmap_singleJianxiong Gao1-20/+21
2021-05-07swiotlb: factor out a nr_slots helperJianxiong Gao1-4/+9
2021-05-07swiotlb: factor out an io_tlb_offset helperJianxiong Gao1-7/+13
2021-05-07swiotlb: add a IO_TLB_SIZE defineJianxiong Gao1-6/+6
2020-11-02swiotlb: remove the tbl_dma_addr argument to swiotlb_tbl_map_singleChristoph Hellwig1-10/+6
2020-11-02swiotlb: fix "x86: Don't panic if can not alloc buffer for swiotlb"Stefano Stabellini1-1/+5
2020-10-20dma-mapping: move more functions to dma-map-ops.hChristoph Hellwig1-1/+1
2020-10-16kernel/: fix repeated words in commentsRandy Dunlap1-1/+1
2020-10-15Merge tag 'dma-mapping-5.10' of git://git.infradead.org/users/hch/dma-mappingLinus Torvalds14-210/+773
2020-10-14Merge branch 'stable/for-linus-5.10' of git://git.kernel.org/pub/scm/linux/ke...Linus Torvalds1-4/+2
2020-10-13dma-contiguous: simplify cma_early_percent_memory()Mike Rapoport1-10/+1
2020-10-07dma-direct: simplify the DMA_ATTR_NO_KERNEL_MAPPING handlingChristoph Hellwig1-61/+39
2020-10-07dma-direct: factor out a dma_direct_alloc_from_pool helperChristoph Hellwig1-19/+20
2020-10-07dma-direct check for highmem pages in dma_direct_alloc_pagesChristoph Hellwig1-0/+11
2020-10-06dma-mapping: merge <linux/dma-noncoherent.h> into <linux/dma-map-ops.h>Christoph Hellwig3-3/+1
2020-10-06dma-mapping: move large parts of <linux/dma-direct.h> to kernel/dmaChristoph Hellwig3-2/+121
2020-10-06dma-mapping: move dma-debug.h to kernel/dma/Christoph Hellwig3-3/+125
2020-10-06dma-mapping: remove <asm/dma-contiguous.h>Christoph Hellwig1-1/+5
2020-10-06dma-mapping: merge <linux/dma-contiguous.h> into <linux/dma-map-ops.h>Christoph Hellwig5-5/+31
2020-10-06dma-contiguous: remove dma_contiguous_set_defaultChristoph Hellwig1-1/+1
2020-10-06dma-contiguous: remove dev_set_cma_areaChristoph Hellwig1-2/+2
2020-10-06dma-mapping: split <linux/dma-mapping.h>Christoph Hellwig6-3/+6
2020-10-06cma: decrease CMA_ALIGNMENT lower limit to 2Paul Cercueil1-1/+1
2020-09-25dma-mapping: add new {alloc,free}_noncoherent dma_map_ops methodsChristoph Hellwig1-6/+27