Release 4.11 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 | 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 | 8 | 66.67% | 2 | 50.00% |
Muli Ben-Yehuda | 3 | 25.00% | 1 | 25.00% |
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 | 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 | 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 | 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 | 45 | 27.95% | 1 | 9.09% |
Konrad Rzeszutek Wilk | 38 | 23.60% | 1 | 9.09% |
FUJITA Tomonori | 34 | 21.12% | 4 | 36.36% |
Andi Kleen | 21 | 13.04% | 1 | 9.09% |
Jan Beulich | 13 | 8.07% | 1 | 9.09% |
Krzysztof Kozlowski | 4 | 2.48% | 1 | 9.09% |
Muli Ben-Yehuda | 3 | 1.86% | 1 | 9.09% |
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.