lkml.org 
[lkml]   [2023]   [Oct]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v5 2/8] selftests/cachestat: Fix print_cachestat format
    Date
    The format specifier in printf() call expects long int variables and
    received long long int.

    Change format specifiers to long long int so they match passed
    variables.

    Signed-off-by: Maciej Wieczor-Retman <maciej.wieczor-retman@intel.com>
    Acked-by: Nhat Pham <nphamcs@gmail.com>
    ---
    Changelog v2:
    - Added Acked-by tag (Nhat)

    tools/testing/selftests/cachestat/test_cachestat.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/tools/testing/selftests/cachestat/test_cachestat.c b/tools/testing/selftests/cachestat/test_cachestat.c
    index 4804c7dc7b31..b171fd53b004 100644
    --- a/tools/testing/selftests/cachestat/test_cachestat.c
    +++ b/tools/testing/selftests/cachestat/test_cachestat.c
    @@ -27,7 +27,7 @@ static const char * const dev_files[] = {
    void print_cachestat(struct cachestat *cs)
    {
    ksft_print_msg(
    - "Using cachestat: Cached: %lu, Dirty: %lu, Writeback: %lu, Evicted: %lu, Recently Evicted: %lu\n",
    + "Using cachestat: Cached: %llu, Dirty: %llu, Writeback: %llu, Evicted: %llu, Recently Evicted: %llu\n",
    cs->nr_cache, cs->nr_dirty, cs->nr_writeback,
    cs->nr_evicted, cs->nr_recently_evicted);
    }
    --
    2.42.0
    \
     
     \ /
      Last update: 2023-10-11 10:25    [W:2.679 / U:0.812 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site