diff options
author | Heiko Carstens <hca@linux.ibm.com> | 2023-08-28 17:31:42 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2023-09-01 07:47:43 -0600 |
commit | f7cf22424665043787a96a66a048ff6b2cfd473c (patch) | |
tree | 7825e8e52d9b03de5cf50581c98579ce1d0b6127 /drivers/block | |
parent | 1a721de8489fa559ff4471f73c58bb74ac5580d3 (diff) | |
download | lwn-f7cf22424665043787a96a66a048ff6b2cfd473c.tar.gz lwn-f7cf22424665043787a96a66a048ff6b2cfd473c.zip |
s390/dasd: fix string length handling
Building dasd_eckd.o with latest clang reveals this bug:
CC drivers/s390/block/dasd_eckd.o
drivers/s390/block/dasd_eckd.c:1082:3: warning: 'snprintf' will always be truncated;
specified size is 1, but format string expands to at least 11 [-Wfortify-source]
1082 | snprintf(print_uid, sizeof(*print_uid),
| ^
drivers/s390/block/dasd_eckd.c:1087:3: warning: 'snprintf' will always be truncated;
specified size is 1, but format string expands to at least 10 [-Wfortify-source]
1087 | snprintf(print_uid, sizeof(*print_uid),
| ^
Fix this by moving and using the existing UID_STRLEN for the arrays
that are being written to. Also rename UID_STRLEN to DASD_UID_STRLEN
to clarify its scope.
Fixes: 23596961b437 ("s390/dasd: split up dasd_eckd_read_conf")
Reviewed-by: Peter Oberparleiter <oberpar@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Tested-by: Nick Desaulniers <ndesaulniers@google.com> # build
Reported-by: Nathan Chancellor <nathan@kernel.org>
Closes: https://github.com/ClangBuiltLinux/linux/issues/1923
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Link: https://lore.kernel.org/r/20230828153142.2843753-2-hca@linux.ibm.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/block')
0 files changed, 0 insertions, 0 deletions