All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH] drm/i915: fix build issue when using clang
@ 2022-02-13  6:51 ` Tong Zhang
  0 siblings, 0 replies; 20+ messages in thread
From: Tong Zhang @ 2022-02-13  6:51 UTC (permalink / raw)
  To: Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin,
	David Airlie, Daniel Vetter, Nathan Chancellor, Nick Desaulniers,
	intel-gfx, dri-devel, linux-kernel, llvm
  Cc: Tong Zhang

drm/i915 target adds some extra cflags, especially it does re-apply -Wall.
In clang this will override -Wno-format-security and cause the build to
fail when CONFIG_DRM_I915_WERROR=y. While with GCC this does not happen.
We reapply -Wno-format-security here to get around this issue.

drivers/gpu/drm/i915/gt/intel_gt.c:983:2: error: format string is not a string literal (potentially insecure) [-Werror,-Wformat-security]
        GEM_TRACE("ERROR\n");
        ^~~~~~~~~~~~~~~~~~~~
./drivers/gpu/drm/i915/i915_gem.h:76:24: note: expanded from macro 'GEM_TRACE'
 #define GEM_TRACE(...) trace_printk(__VA_ARGS__)
                       ^~~~~~~~~~~~~~~~~~~~~~~~~
./include/linux/kernel.h:369:3: note: expanded from macro 'trace_printk'
                do_trace_printk(fmt, ##__VA_ARGS__);    \
                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./include/linux/kernel.h:383:30: note: expanded from macro 'do_trace_printk'
                __trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args);   \
                                           ^~~~~~~~~~~~~~~~
drivers/gpu/drm/i915/gt/intel_gt.c:983:2: note: treat the string as an argument to avoid this

Signed-off-by: Tong Zhang <ztong0001@gmail.com>
---
 drivers/gpu/drm/i915/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
index 1b62b9f65196..c04e05a3d39f 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -13,6 +13,7 @@
 # will most likely get a sudden build breakage... Hopefully we will fix
 # new warnings before CI updates!
 subdir-ccflags-y := -Wall -Wextra
+subdir-ccflags-y += -Wno-format-security
 subdir-ccflags-y += -Wno-unused-parameter
 subdir-ccflags-y += -Wno-type-limits
 subdir-ccflags-y += -Wno-missing-field-initializers
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2022-02-17  7:48 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-13  6:51 [Intel-gfx] [PATCH] drm/i915: fix build issue when using clang Tong Zhang
2022-02-13  6:51 ` Tong Zhang
2022-02-13 18:39 ` [Intel-gfx] " Nathan Chancellor
2022-02-13 18:39   ` Nathan Chancellor
2022-02-13 18:39   ` Nathan Chancellor
2022-02-14 19:58   ` [Intel-gfx] " Tong Zhang
2022-02-14 19:58     ` Tong Zhang
2022-02-14 19:58     ` Tong Zhang
2022-02-14 19:58   ` [Intel-gfx] [PATCH v2] " Tong Zhang
2022-02-14 19:58     ` Tong Zhang
2022-02-15 18:52     ` [Intel-gfx] " Nathan Chancellor
2022-02-15 18:52       ` Nathan Chancellor
2022-02-15 18:52       ` Nathan Chancellor
2022-02-17  7:48       ` [Intel-gfx] " Jani Nikula
2022-02-17  7:48         ` Jani Nikula
2022-02-17  7:48         ` Jani Nikula
2022-02-16 22:24 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: fix build issue when using clang (rev2) Patchwork
2022-02-16 22:25 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2022-02-16 22:53 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2022-02-17  7:11 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.