Release 4.10 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;
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 at tulip | fujita at tulip | 14 | 82.35% | 1 | 50.00% |
tony luck | tony luck | 3 | 17.65% | 1 | 50.00% |
| Total | 17 | 100.00% | 2 | 100.00% |
fs_initcall(dma_init);
struct dma_map_ops *dma_get_ops(struct device *dev)
{
return dma_ops;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
fujita tomonori | fujita tomonori | 15 | 100.00% | 2 | 100.00% |
| Total | 15 | 100.00% | 2 | 100.00% |
EXPORT_SYMBOL(dma_get_ops);
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
fujita tomonori | fujita tomonori | 38 | 56.72% | 4 | 57.14% |
fujita at tulip | fujita at tulip | 23 | 34.33% | 1 | 14.29% |
tony luck | tony luck | 3 | 4.48% | 1 | 14.29% |
paul gortmaker | paul gortmaker | 3 | 4.48% | 1 | 14.29% |
| Total | 67 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.