[PATCH 1/1] drm/amdkfd: Add format attribute to kfd_smi_event_add
Felix Kuehling
felix.kuehling at amd.com
Fri Mar 4 16:32:10 UTC 2022
Am 2022-03-04 um 09:48 schrieb Philip Yang:
> To enable compiler type-checked against the format string in callers.
>
> All warnings (new ones prefixed by >>):
>
>>> warning: function 'kfd_smi_event_add' might be a candidate for
> 'gnu_printf' format attribute [-Wsuggest-attribute=format]
>
> Fixes: 67e874c2fa ("drm/amdkfd: Add SMI add event helper")
> Reported-by: kernel test robot <lkp at intel.com>
> Signed-off-by: Philip Yang <Philip.Yang at amd.com>
> ---
> drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c b/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c
> index bba8d9692a4c..02b6b26ee8f3 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c
> @@ -176,6 +176,7 @@ static void add_event_to_kfifo(struct kfd_dev *dev, unsigned int smi_event,
> rcu_read_unlock();
> }
>
> +__attribute__ ((format (printf, 3, 4)))
I see that there is a shortcut for this defined in
include/linux/compiler_attributes.h. It's just
__printf(3, 4)
With that fixed, the patch is
Reviewed-by: Felix Kuehling <Felix.Kuehling at amd.com>
> static void kfd_smi_event_add(struct kfd_dev *dev, unsigned int event,
> char *fmt, ...)
> {
More information about the amd-gfx
mailing list