[PATCH 6/11] drivers/dma: Correct NULL test
From: Julia Lawall <julia(a)diku.dk> cohd_fin has already been verified not to be NULL, so the argument to BUG_ON cannot be true. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @r@ expression *x; expression e; identifier l; @@ if... 6 Feb 2010 04:15
[PATCH 11/11] fs/xfs: Correct NULL test
From: Julia Lawall <julia(a)diku.dk> Test the value that was just allocated rather than the previously tested one. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @r@ expression *x; expression e; identifier l; @@ if (x == NULL || .... 6 Feb 2010 04:15
[PATCH 4/11] arch/x86/kvm: Correct NULL test
From: Julia Lawall <julia(a)diku.dk> msr was tested above, so the second test is not needed. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @r@ expression *x; expression e; identifier l; @@ if (x == NULL || ...) { ... when fo... 6 Feb 2010 04:15
ocfs2: Fix contiguousness check in ocfs2_try_to_merge_extent_map()
On Fri, Feb 05, 2010 at 10:26:27AM +0100, Roel Kluin wrote: The wrong member was compared in the continguousness check. Acked-by: Tao Ma <tao.ma(a)oracle.com> Signed-off-by: Roel Kluin <roel.kluin(a)gmail.com> This patch is now in the fixes branch of ocfs2.git. Joel -- "Sometimes when reading Goet... 5 Feb 2010 19:33
[PATCH 4/7] MTD: nand: make reads using MTD_OOB_RAW affect only ECC validation
This changes the behavier of MTD_OOB_RAW. It used to read both OOB and data to the data buffer, however you would still need to specify the dummy oob buffer. This is only used in one place, but makes it hard to read data+oob without ECC test, thus I removed that behavier, and fixed the user. Now MTD_OOB_RAW beh... 5 Feb 2010 18:26
dmaengine: correct onstack wait_queue_head declaration
On Fri, Feb 5, 2010 at 6:52 AM, Yong Zhang <yong.zhang0(a)gmail.com> wrote: Use DECLARE_WAIT_QUEUE_HEAD_ONSTACK to make lockdep happy Signed-off-by: Yong Zhang <yong.zhang0(a)gmail.com> Thanks, applied and pushed back out on async_tx.git#fixes. -- To unsubscribe from this list: send the line "unsubscribe linu... 5 Feb 2010 18:25
x86: keep chip_data in create_irq_nr and destroy_irq
On 02/05/2010 01:09 PM, Brandon Philips wrote: When two drivers are setting up MSI-X at the same time via pci_enable_msix() there is a race. See this dmesg excerpt: [ 85.170610] ixgbe 0000:02:00.1: irq 97 for MSI/MSI-X [ 85.170611] alloc irq_desc for 99 on node -1 [ 85.170613] igb 0000:08:00... 7 Feb 2010 16:28
[PATCHv4 0/2] sched: arch_scale_smt_powers
The new Power7 processor has 4 way SMT. This 4 way SMT benefits from dynamic power updates that arch_scale_smt_power was designed to provide. The first patch fixes a generic scheduler bug necessary for arch_scale_smt to properly function. The second patch implements arch_scale_smt_power for powerpc, and in parti... 5 Feb 2010 16:12
[PATCHv4 1/2] sched: enable ARCH_POWER
Enable the scheduler feature that allows use of arch_scale_smt_power. Stub out the broken x86 implementation. Signed-off-by: Joel Schopp <jschopp(a)austin.ibm.com> --- Index: linux-2.6.git/kernel/sched_features.h =================================================================== --- linux-2.6.git.orig/kernel/sc... 5 Feb 2010 16:12
[4/4] SLAB: Fix node add timer race in cache_reap
Acked-by: Christoph Lameter <cl(a)linux-foundation.org> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ ... 2 Mar 2010 08:58