[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20240326112448.29332-1-ilpo.jarvinen@linux.intel.com>
Date: Tue, 26 Mar 2024 13:24:47 +0200
From: Ilpo Järvinen <ilpo.jarvinen@...ux.intel.com>
To: "David E . Box" <david.e.box@...ux.intel.com>,
Hans de Goede <hdegoede@...hat.com>,
platform-driver-x86@...r.kernel.org,
Peter Zijlstra <peterz@...radead.org>,
linux-kernel@...r.kernel.org
Cc: Linus Torvalds <torvalds@...ux-foundation.org>,
Ilpo Järvinen <ilpo.jarvinen@...ux.intel.com>,
kernel test robot <lkp@...el.com>,
Andy Shevchenko <andriy.shevchenko@...ux.intel.com>,
Dan Williams <dan.j.williams@...el.com>
Subject: [PATCH 1/1] cleanup: Fix sparse complaining about passing iomem ptr to no_free_ptr()
Calling no_free_ptr() for an __iomem pointer results in sparse
complaining about the types:
sparse: warning: incorrect type in argument 1 (different address spaces)
sparse: expected void const volatile *val
sparse: got void [noderef] __iomem *__val
(The example from drivers/platform/x86/intel/pmc/core_ssram.c:277).
The problem is caused by the signature of __must_check_fn() added in
the commit 85be6d842447 ("cleanup: Make no_free_ptr() __must_check") to
enforce return value is always used.
Use __force to allow both iomem and non-iomem pointers to be given for
no_free_ptr().
Reported-by: kernel test robot <lkp@...el.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202403050547.qnZtuNlN-lkp@intel.com/
Reviewed-by: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
Reviewed-by: Dan Williams <dan.j.williams@...el.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@...ux.intel.com>
---
include/linux/cleanup.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/cleanup.h b/include/linux/cleanup.h
index c2d09bc4f976..4f4d709c3967 100644
--- a/include/linux/cleanup.h
+++ b/include/linux/cleanup.h
@@ -73,7 +73,7 @@ const volatile void * __must_check_fn(const volatile void *val)
{ return val; }
#define no_free_ptr(p) \
- ((typeof(p)) __must_check_fn(__get_and_null_ptr(p)))
+ ((typeof(p)) __must_check_fn((__force const volatile void *)__get_and_null_ptr(p)))
#define return_ptr(p) return no_free_ptr(p)
--
2.39.2
Powered by blists - more mailing lists