diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-31 14:54:13 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-31 14:54:13 -0500 |
commit | 2d959e95658a0224b0dd0d787926d5ffc95f9574 (patch) | |
tree | 50654e11ffbc1ee913f6ebd174add04d2daeabe7 /lib | |
parent | 9d6e323c687c7b94c703c9b0900a74e5d262d462 (diff) | |
parent | f405d2c02395a74d3883bd03ded36457aa3697ad (diff) |
Merge branch 'x86-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'x86-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
x86/agp: Fix agp_amd64_init() initialization with CONFIG_GART_IOMMU enabled
x86: SGI UV: Fix writes to led registers on remote uv hubs
x86, kmemcheck: Use KERN_WARNING for error reporting
x86: Use KERN_DEFAULT log-level in __show_regs()
x86, compress: Force i386 instructions for the decompressor
x86/amd-iommu: Fix initialization failure panic
dma-debug: Do not add notifier when dma debugging is disabled.
x86: Fix objdump version check in chkobjdump.awk for different formats.
Trivial conflicts in arch/x86/include/asm/uv/uv_hub.h due to me having
applied an earlier version of an SGI UV fix.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/dma-debug.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/dma-debug.c b/lib/dma-debug.c index d9b08e0f7f55..739974460c32 100644 --- a/lib/dma-debug.c +++ b/lib/dma-debug.c | |||
@@ -676,6 +676,8 @@ static int dma_debug_device_change(struct notifier_block *nb, | |||
676 | struct device *dev = data; | 676 | struct device *dev = data; |
677 | int count; | 677 | int count; |
678 | 678 | ||
679 | if (global_disable) | ||
680 | return; | ||
679 | 681 | ||
680 | switch (action) { | 682 | switch (action) { |
681 | case BUS_NOTIFY_UNBOUND_DRIVER: | 683 | case BUS_NOTIFY_UNBOUND_DRIVER: |
@@ -697,6 +699,9 @@ void dma_debug_add_bus(struct bus_type *bus) | |||
697 | { | 699 | { |
698 | struct notifier_block *nb; | 700 | struct notifier_block *nb; |
699 | 701 | ||
702 | if (global_disable) | ||
703 | return; | ||
704 | |||
700 | nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL); | 705 | nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL); |
701 | if (nb == NULL) { | 706 | if (nb == NULL) { |
702 | pr_err("dma_debug_add_bus: out of memory\n"); | 707 | pr_err("dma_debug_add_bus: out of memory\n"); |