cregit-Linux how code gets into the kernel

Release 4.10 arch/ia64/kernel/dma-mapping.c

Directory: arch/ia64/kernel
#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

PersonTokensPropCommitsCommitProp
fujita at tulipfujita at tulip1482.35%150.00%
tony lucktony luck317.65%150.00%
Total17100.00%2100.00%

fs_initcall(dma_init);
struct dma_map_ops *dma_get_ops(struct device *dev) { return dma_ops; }

Contributors

PersonTokensPropCommitsCommitProp
fujita tomonorifujita tomonori15100.00%2100.00%
Total15100.00%2100.00%

EXPORT_SYMBOL(dma_get_ops);

Overall Contributors

PersonTokensPropCommitsCommitProp
fujita tomonorifujita tomonori3856.72%457.14%
fujita at tulipfujita at tulip2334.33%114.29%
tony lucktony luck34.48%114.29%
paul gortmakerpaul gortmaker34.48%114.29%
Total67100.00%7100.00%
Directory: arch/ia64/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.