From 2b58b22845a76baf24141155eb4d4a882f509e97 Mon Sep 17 00:00:00 2001 From: David Gibson Date: Wed, 5 Mar 2025 17:15:08 +1100 Subject: cppcheck: Add suppressions for "logically" exported functions We have some functions in our headers which are definitely there on purpose. However, they're not yet used outside the files in which they're defined. That causes sufficiently recent cppcheck versions (2.17) to complain they should be static. Suppress the errors for these "logically" exported functions. Signed-off-by: David Gibson Signed-off-by: Stefano Brivio --- iov.c | 1 + log.c | 1 + 2 files changed, 2 insertions(+) diff --git a/iov.c b/iov.c index 3b12272..8c63b7e 100644 --- a/iov.c +++ b/iov.c @@ -203,6 +203,7 @@ size_t iov_tail_size(struct iov_tail *tail) * overruns the IO vector, is not contiguous or doesn't have the * requested alignment. */ +/* cppcheck-suppress [staticFunction,unmatchedSuppression] */ void *iov_peek_header_(struct iov_tail *tail, size_t len, size_t align) { char *p; diff --git a/log.c b/log.c index 6eda4c4..d40d7ae 100644 --- a/log.c +++ b/log.c @@ -281,6 +281,7 @@ static void passt_vsyslog(bool newline, int pri, const char *format, va_list ap) * @format: Message * @ap: Variable argument list */ +/* cppcheck-suppress [staticFunction,unmatchedSuppression] */ void vlogmsg(bool newline, bool cont, int pri, const char *format, va_list ap) { bool debug_print = (log_mask & LOG_MASK(LOG_DEBUG)) && log_file == -1; -- cgit v1.2.3