Release 4.11 arch/ia64/kernel/dma-mapping.c
#include <linux/dma-mapping.h>
#include <linux/export.h>
/* Set this to 1 if there is a HW IOMMU in the system */
int iommu_detected __read_mostly;
const struct dma_map_ops *dma_ops;
EXPORT_SYMBOL(dma_ops);
#define PREALLOC_DMA_DEBUG_ENTRIES (1 << 16)
static int __init dma_init(void)
{
dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
fujita | 14 | 82.35% | 1 | 50.00% |
Tony Luck | 3 | 17.65% | 1 | 50.00% |
Total | 17 | 100.00% | 2 | 100.00% |
fs_initcall(dma_init);
const struct dma_map_ops *dma_get_ops(struct device *dev)
{
return dma_ops;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
FUJITA Tomonori | 15 | 93.75% | 2 | 66.67% |
Bart Van Assche | 1 | 6.25% | 1 | 33.33% |
Total | 16 | 100.00% | 3 | 100.00% |
EXPORT_SYMBOL(dma_get_ops);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
FUJITA Tomonori | 38 | 55.07% | 4 | 50.00% |
fujita | 23 | 33.33% | 1 | 12.50% |
Paul Gortmaker | 3 | 4.35% | 1 | 12.50% |
Tony Luck | 3 | 4.35% | 1 | 12.50% |
Bart Van Assche | 2 | 2.90% | 1 | 12.50% |
Total | 69 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.