Release 4.7 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,
struct dma_attrs *attrs);
extern void x86_swiotlb_free_coherent(struct device *dev, size_t size,
void *vaddr, dma_addr_t dma_addr,
struct dma_attrs *attrs);
#endif /* _ASM_X86_SWIOTLB_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| akinobu mita | akinobu mita | 51 | 31.29% | 1 | 10.00% |
| konrad rzeszutek wilk | konrad rzeszutek wilk | 38 | 23.31% | 1 | 10.00% |
| fujita tomonori | fujita tomonori | 34 | 20.86% | 4 | 40.00% |
| andi kleen | andi kleen | 21 | 12.88% | 1 | 10.00% |
| jan beulich | jan beulich | 13 | 7.98% | 1 | 10.00% |
| muli ben-yehuda | muli ben-yehuda | 3 | 1.84% | 1 | 10.00% |
| h. peter anvin | h. peter anvin | 3 | 1.84% | 1 | 10.00% |
| Total | 163 | 100.00% | 10 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.