From: David Gow Date: Wed, 21 Feb 2024 09:27:19 +0000 (+0800) Subject: net: test: Fix printf format specifier in skb_segment kunit test X-Git-Tag: v6.9-rc1~223^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ff3b96f2c9e5c24fca12239cd519a8a18569e687;p=thirdparty%2Fkernel%2Flinux.git net: test: Fix printf format specifier in skb_segment kunit test KUNIT_FAIL() accepts a printf-style format string, but previously did not let gcc validate it with the __printf() attribute. The use of %lld for the result of PTR_ERR() is not correct. Instead, use %pe and pass the actual error pointer. printk() will format it correctly (and give a symbolic name rather than a number if available, which should make the output more readable, too). Fixes: b3098d32ed6e ("net: add skb_segment kunit test") Signed-off-by: David Gow Tested-by: Guenter Roeck Reviewed-by: Justin Stitt Signed-off-by: Shuah Khan --- diff --git a/net/core/gso_test.c b/net/core/gso_test.c index 4c2e77bd12f4b..358c44680d917 100644 --- a/net/core/gso_test.c +++ b/net/core/gso_test.c @@ -225,7 +225,7 @@ static void gso_test_func(struct kunit *test) segs = skb_segment(skb, features); if (IS_ERR(segs)) { - KUNIT_FAIL(test, "segs error %lld", PTR_ERR(segs)); + KUNIT_FAIL(test, "segs error %pe", segs); goto free_gso_skb; } else if (!segs) { KUNIT_FAIL(test, "no segments");