• N
    rcu: Change function declaration to bool · 82072c4f
    Nicholas Mc Guire 提交于
    rcu_cpu_has_callbacks() is declared int. The current declaration was introduced
    in commit c0f4dfd4 (rcu: Make RCU_FAST_NO_HZ take advantage of numbered
    callbacks). But it is actually returning bool and as the function description
    states " * Return true if the specified CPU has any callback....", this probably
    should be a bool as all (3) call-sites currently treat it as bool.
    
    Type-checking coccinelle spatches are being used to locate type mismatches
    between function signatures and return values in this case this produced:
    ./kernel/rcu/tree.c:3538 WARNING: return of wrong type
                        int != bool,
    
    Patch was compile tested with x86_64_defconfig (implies CONFIG_TREE_RCU=y)
    
    Patch is against 4.1-rc3 (localversion-next is -next-20150511) and fixes
    Signed-off-by: NNicholas Mc Guire <hofrat@osadl.org>
    Reviewed-by: NJosh Triplett <josh@joshtriplett.org>
    Signed-off-by: NPaul E. McKenney <paulmck@linux.vnet.ibm.com>
    82072c4f
tree.c 128.1 KB