]> Git Repo - linux.git/commitdiff
xen: remove redundant NULL check before unregister_and_remove_pcpu().
authorCyril Roelandt <[email protected]>
Tue, 12 Feb 2013 04:01:53 +0000 (05:01 +0100)
committerKonrad Rzeszutek Wilk <[email protected]>
Wed, 13 Feb 2013 20:40:33 +0000 (15:40 -0500)
unregister_and_remove_pcpu on a NULL pointer is a no-op, so the NULL check in
sync_pcpu can be removed.

Signed-off-by: Cyril Roelandt <[email protected]>
Signed-off-by: Konrad Rzeszutek Wilk <[email protected]>
drivers/xen/pcpu.c

index 067fcfa1723e0b846b9522038edb5ef1dc96f4e0..5a27a4599a4a8dbb28aab05c305b799b7883d2ac 100644 (file)
@@ -278,8 +278,7 @@ static int sync_pcpu(uint32_t cpu, uint32_t *max_cpu)
         * Only those at cpu present map has its sys interface.
         */
        if (info->flags & XEN_PCPU_FLAGS_INVALID) {
-               if (pcpu)
-                       unregister_and_remove_pcpu(pcpu);
+               unregister_and_remove_pcpu(pcpu);
                return 0;
        }
 
This page took 0.057188 seconds and 4 git commands to generate.