module: remove use of uninitialized variable len
authorTom Rix <trix@redhat.com>
Mon, 17 Apr 2023 23:09:57 +0000 (19:09 -0400)
committerLuis Chamberlain <mcgrof@kernel.org>
Tue, 18 Apr 2023 18:36:24 +0000 (11:36 -0700)
commit9f5cab173e19201eebeaca853ff664a9a269fed0
tree093f391ee9288063a748750df290390fccf0bc1f
parent719ccd803ed5bd1ad92b0b46fc095b8fe266827e
module: remove use of uninitialized variable len

clang build reports
kernel/module/stats.c:307:34: error: variable
  'len' is uninitialized when used here [-Werror,-Wuninitialized]
        len = scnprintf(buf + 0, size - len,
                                        ^~~
At the start of this sequence, neither the '+ 0', nor the '- len' are needed.
So remove them and fix using 'len' uninitalized.

Fixes: df3e764d8e5c ("module: add debug stats to help identify memory pressure")
Signed-off-by: Tom Rix <trix@redhat.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
kernel/module/stats.c