lkml.org 
[lkml]   [2018]   [Sep]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 4.14 115/173] KVM: PPC: Book3S HV: Add of_node_put() in success path
    Date
    4.14-stable review patch.  If anyone has any objections, please let me know.

    ------------------

    From: Nicholas Mc Guire <hofrat@osadl.org>

    [ Upstream commit 51eaa08f029c7343df846325d7cf047be8b96e81 ]

    The call to of_find_compatible_node() is returning a pointer with
    incremented refcount so it must be explicitly decremented after the
    last use. As here it is only being used for checking of node presence
    but the result is not actually used in the success path it can be
    dropped immediately.

    Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
    Fixes: commit f725758b899f ("KVM: PPC: Book3S HV: Use OPAL XICS emulation on POWER9")
    Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
    Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    ---
    arch/powerpc/kvm/book3s_hv.c | 2 ++
    1 file changed, 2 insertions(+)

    --- a/arch/powerpc/kvm/book3s_hv.c
    +++ b/arch/powerpc/kvm/book3s_hv.c
    @@ -4356,6 +4356,8 @@ static int kvmppc_book3s_init_hv(void)
    pr_err("KVM-HV: Cannot determine method for accessing XICS\n");
    return -ENODEV;
    }
    + /* presence of intc confirmed - node can be dropped again */
    + of_node_put(np);
    }
    #endif


    \
     
     \ /
      Last update: 2018-09-24 14:19    [W:2.487 / U:0.168 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site