diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-02-17 17:26:35 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-02-17 17:26:35 -0500 |
commit | 8ce9a75a307e142a8871c649627555e0e4a1eefb (patch) | |
tree | ba4ef31238311bd1089507b7a27c6802488fc9db /drivers | |
parent | b30b77493039b7b95b4d569a66af425b02651edd (diff) | |
parent | 9af88143b277f52fc6ce0d69137f435c73c39c1a (diff) |
Merge branch 'core-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'core-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
iommu: fix Intel IOMMU write-buffer flushing
futex: fix reference leak
Trivial conflicts fixed manually in drivers/pci/intel-iommu.c
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pci/intel-iommu.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/pci/intel-iommu.c b/drivers/pci/intel-iommu.c index fa9e41626bfc..f3f686581a90 100644 --- a/drivers/pci/intel-iommu.c +++ b/drivers/pci/intel-iommu.c | |||
@@ -61,7 +61,7 @@ | |||
61 | /* global iommu list, set NULL for ignored DMAR units */ | 61 | /* global iommu list, set NULL for ignored DMAR units */ |
62 | static struct intel_iommu **g_iommus; | 62 | static struct intel_iommu **g_iommus; |
63 | 63 | ||
64 | static int rwbf_quirk = 0; | 64 | static int rwbf_quirk; |
65 | 65 | ||
66 | /* | 66 | /* |
67 | * 0: Present | 67 | * 0: Present |
@@ -3142,8 +3142,10 @@ static struct iommu_ops intel_iommu_ops = { | |||
3142 | 3142 | ||
3143 | static void __devinit quirk_iommu_rwbf(struct pci_dev *dev) | 3143 | static void __devinit quirk_iommu_rwbf(struct pci_dev *dev) |
3144 | { | 3144 | { |
3145 | /* Mobile 4 Series Chipset neglects to set RWBF capability, | 3145 | /* |
3146 | but needs it */ | 3146 | * Mobile 4 Series Chipset neglects to set RWBF capability, |
3147 | * but needs it: | ||
3148 | */ | ||
3147 | printk(KERN_INFO "DMAR: Forcing write-buffer flush capability\n"); | 3149 | printk(KERN_INFO "DMAR: Forcing write-buffer flush capability\n"); |
3148 | rwbf_quirk = 1; | 3150 | rwbf_quirk = 1; |
3149 | } | 3151 | } |