]> git.baikalelectronics.ru Git - kernel.git/commit
selftests/powerpc: Fix compile error on tlbie_test due to newer gcc
authorDesnes A. Nunes do Rosario <desnesn@linux.ibm.com>
Thu, 3 Oct 2019 21:10:10 +0000 (18:10 -0300)
committerMichael Ellerman <mpe@ellerman.id.au>
Wed, 9 Oct 2019 06:16:59 +0000 (17:16 +1100)
commitb69567a097e7071c6e297ac0913a2d900ef7fe03
tree663b059fff3b304a058059aea48efc22143e2d44
parentc198fb8a510c31b8ba509d0a41fb41adeb073d29
selftests/powerpc: Fix compile error on tlbie_test due to newer gcc

Newer versions of GCC (>= 9) demand that the size of the string to be
copied must be explicitly smaller than the size of the destination.
Thus, the NULL char has to be taken into account on strncpy.

This will avoid the following compiling error:

  tlbie_test.c: In function 'main':
  tlbie_test.c:639:4: error: 'strncpy' specified bound 100 equals destination size
      strncpy(logdir, optarg, LOGDIR_NAME_SIZE);
      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  cc1: all warnings being treated as errors

Signed-off-by: Desnes A. Nunes do Rosario <desnesn@linux.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20191003211010.9711-1-desnesn@linux.ibm.com
tools/testing/selftests/powerpc/mm/tlbie_test.c