lkml.org 
[lkml]   [2020]   [Feb]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    Subject[PATCH] vfs: fix boolreturn.cocci warnings
    From: kbuild test robot <lkp@intel.com>

    mm/truncate.c:41:9-10: WARNING: return of 0/1 in function '__clear_shadow_entry' with return type bool

    Return statements in functions returning bool should use
    true/false instead of 1/0.
    Generated by: scripts/coccinelle/misc/boolreturn.cocci

    Fixes: 98e2565539a0 ("vfs: keep inodes with page cache off the inode shrinker LRU")
    CC: Johannes Weiner <hannes@cmpxchg.org>
    Signed-off-by: kbuild test robot <lkp@intel.com>
    ---

    url: https://github.com/0day-ci/linux/commits/Johannes-Weiner/vfs-keep-inodes-with-page-cache-off-the-inode-shrinker-LRU/20200214-083756
    base: https://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git for-next

    truncate.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    --- a/mm/truncate.c
    +++ b/mm/truncate.c
    @@ -38,7 +38,7 @@ static bool __must_check __clear_shadow_

    xas_set_update(&xas, workingset_update_node);
    if (xas_load(&xas) != entry)
    - return 0;
    + return false;
    xas_store(&xas, NULL);
    mapping->nrexceptional--;

    \
     
     \ /
      Last update: 2020-02-14 22:32    [W:3.317 / U:0.112 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site