Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'iommu/fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu

* 'iommu/fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu:
MAINTAINERS: Update amd-iommu F: patterns
iommu/amd: Fix typo in kernel-parameters.txt
iommu/msm: Fix compile error in mach-msm/devices-iommu.c
Fix comparison using wrong pointer variable in dma debug code

+5 -4
+1 -1
Documentation/kernel-parameters.txt
··· 320 320 on: enable for both 32- and 64-bit processes 321 321 off: disable for both 32- and 64-bit processes 322 322 323 - amd_iommu= [HW,X86-84] 323 + amd_iommu= [HW,X86-64] 324 324 Pass parameters to the AMD IOMMU driver in the system. 325 325 Possible values are: 326 326 fullflush - enable flushing of IO/TLB entries when
+2 -2
MAINTAINERS
··· 511 511 L: iommu@lists.linux-foundation.org 512 512 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git 513 513 S: Supported 514 - F: arch/x86/kernel/amd_iommu*.c 515 - F: arch/x86/include/asm/amd_iommu*.h 514 + F: drivers/iommu/amd_iommu*.[ch] 515 + F: include/linux/amd-iommu.h 516 516 517 517 AMD MICROCODE UPDATE SUPPORT 518 518 M: Andreas Herrmann <andreas.herrmann3@amd.com>
+1
arch/arm/mach-msm/devices-iommu.c
··· 18 18 #include <linux/kernel.h> 19 19 #include <linux/platform_device.h> 20 20 #include <linux/bootmem.h> 21 + #include <linux/module.h> 21 22 #include <mach/irqs.h> 22 23 #include <mach/iommu.h> 23 24
+1 -1
lib/dma-debug.c
··· 245 245 246 246 static bool exact_match(struct dma_debug_entry *a, struct dma_debug_entry *b) 247 247 { 248 - return ((a->dev_addr == a->dev_addr) && 248 + return ((a->dev_addr == b->dev_addr) && 249 249 (a->dev == b->dev)) ? true : false; 250 250 } 251 251