From: Dmitry Vyukov Date: Sat, 13 Dec 2014 00:56:30 +0000 (-0800) Subject: mm/vmalloc.c: fix memory ordering bug X-Git-Tag: v3.19-rc1~93^2~50 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=7e5b528b4ce31208ef5c240c14beec4853d8262c;p=~emulex%2Finfiniband.git mm/vmalloc.c: fix memory ordering bug Read memory barriers must follow the read operations. Signed-off-by: Dmitry Vyukov Cc: Eric Dumazet Acked-by: Joonsoo Kim Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/vmalloc.c b/mm/vmalloc.c index 8a18196fcdf..39c33889641 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c @@ -2574,10 +2574,10 @@ static void show_numa_info(struct seq_file *m, struct vm_struct *v) if (!counters) return; - /* Pair with smp_wmb() in clear_vm_uninitialized_flag() */ - smp_rmb(); if (v->flags & VM_UNINITIALIZED) return; + /* Pair with smp_wmb() in clear_vm_uninitialized_flag() */ + smp_rmb(); memset(counters, 0, nr_node_ids * sizeof(unsigned int));