Release 4.10 arch/x86/include/asm/swiotlb.h
#ifndef _ASM_X86_SWIOTLB_H
#define _ASM_X86_SWIOTLB_H
#include <linux/swiotlb.h>
#ifdef CONFIG_SWIOTLB
extern int swiotlb;
extern int __init pci_swiotlb_detect_override(void);
extern int __init pci_swiotlb_detect_4gb(void);
extern void __init pci_swiotlb_init(void);
extern void __init pci_swiotlb_late_init(void);
#else
#define swiotlb 0
static inline int pci_swiotlb_detect_override(void)
{
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
konrad rzeszutek wilk | konrad rzeszutek wilk | 12 | 100.00% | 1 | 100.00% |
| Total | 12 | 100.00% | 1 | 100.00% |
static inline int pci_swiotlb_detect_4gb(void)
{
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
fujita tomonori | fujita tomonori | 8 | 66.67% | 2 | 50.00% |
muli ben-yehuda | muli ben-yehuda | 3 | 25.00% | 1 | 25.00% |
konrad rzeszutek wilk | konrad rzeszutek wilk | 1 | 8.33% | 1 | 25.00% |
| Total | 12 | 100.00% | 4 | 100.00% |
static inline void pci_swiotlb_init(void)
{
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
fujita tomonori | fujita tomonori | 8 | 100.00% | 1 | 100.00% |
| Total | 8 | 100.00% | 1 | 100.00% |
static inline void pci_swiotlb_late_init(void)
{
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
konrad rzeszutek wilk | konrad rzeszutek wilk | 8 | 100.00% | 1 | 100.00% |
| Total | 8 | 100.00% | 1 | 100.00% |
#endif
static inline void dma_mark_clean(void *addr, size_t size) {}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
jan beulich | jan beulich | 13 | 100.00% | 1 | 100.00% |
| Total | 13 | 100.00% | 1 | 100.00% |
extern void *x86_swiotlb_alloc_coherent(struct device *hwdev, size_t size,
dma_addr_t *dma_handle, gfp_t flags,
unsigned long attrs);
extern void x86_swiotlb_free_coherent(struct device *dev, size_t size,
void *vaddr, dma_addr_t dma_addr,
unsigned long attrs);
#endif /* _ASM_X86_SWIOTLB_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
akinobu mita | akinobu mita | 45 | 27.95% | 1 | 9.09% |
konrad rzeszutek wilk | konrad rzeszutek wilk | 38 | 23.60% | 1 | 9.09% |
fujita tomonori | fujita tomonori | 34 | 21.12% | 4 | 36.36% |
andi kleen | andi kleen | 21 | 13.04% | 1 | 9.09% |
jan beulich | jan beulich | 13 | 8.07% | 1 | 9.09% |
krzysztof kozlowski | krzysztof kozlowski | 4 | 2.48% | 1 | 9.09% |
muli ben-yehuda | muli ben-yehuda | 3 | 1.86% | 1 | 9.09% |
h. peter anvin | h. peter anvin | 3 | 1.86% | 1 | 9.09% |
| Total | 161 | 100.00% | 11 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.