lkml.org 
[lkml]   [2015]   [Nov]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Subject[PATCH] x86: AMD-perf_event: Delete unnecessary checks before the function call "free_percpu"
    From
    Date
    From: Markus Elfring <elfring@users.sourceforge.net>
    Date: Mon, 16 Nov 2015 09:00:20 +0100

    The free_percpu() function tests whether its argument is NULL and then
    returns immediately. Thus the test around the calls is not needed.

    This issue was detected by using the Coccinelle software.

    Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
    ---
    arch/x86/kernel/cpu/perf_event_amd_uncore.c | 6 ++----
    1 file changed, 2 insertions(+), 4 deletions(-)

    diff --git a/arch/x86/kernel/cpu/perf_event_amd_uncore.c b/arch/x86/kernel/cpu/perf_event_amd_uncore.c
    index cc6cedb..240ecee 100644
    --- a/arch/x86/kernel/cpu/perf_event_amd_uncore.c
    +++ b/arch/x86/kernel/cpu/perf_event_amd_uncore.c
    @@ -588,11 +588,9 @@ fail_online:
    fail_l2:
    if (cpu_has_perfctr_nb)
    perf_pmu_unregister(&amd_nb_pmu);
    - if (amd_uncore_l2)
    - free_percpu(amd_uncore_l2);
    + free_percpu(amd_uncore_l2);
    fail_nb:
    - if (amd_uncore_nb)
    - free_percpu(amd_uncore_nb);
    + free_percpu(amd_uncore_nb);

    fail_nodev:
    return ret;
    --
    2.6.2


    \
     
     \ /
      Last update: 2015-11-16 09:21    [W:4.044 / U:0.232 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site