From: Patchwork <patchwork@emeril.freedesktop.org>
To: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: ✗ Fi.CI.BUILD: failure for drm/i915: Vulkan performance query support (rev11)
Date: Wed, 28 Aug 2019 15:58:29 -0000 [thread overview]
Message-ID: <20190828155829.28912.56294@emeril.freedesktop.org> (raw)
In-Reply-To: <20190828143327.7965-1-lionel.g.landwerlin@intel.com>
== Series Details ==
Series: drm/i915: Vulkan performance query support (rev11)
URL : https://patchwork.freedesktop.org/series/60916/
State : failure
== Summary ==
CALL scripts/checksyscalls.sh
CALL scripts/atomic/check-atomics.sh
DESCEND objtool
CHK include/generated/compile.h
AR drivers/gpu/drm/i915/built-in.a
CC drivers/gpu/drm/i915/i915_perf.h.s
In file included from <command-line>:0:0:
./drivers/gpu/drm/i915/i915_perf.h:34:15: error: ‘struct i915_oa_config’ declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
struct i915_oa_config **out_config);
^~~~~~~~~~~~~~
./drivers/gpu/drm/i915/i915_perf.h:38:15: error: ‘struct drm_i915_gem_object’ declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
struct drm_i915_gem_object **out_obj);
^~~~~~~~~~~~~~~~~~~
./drivers/gpu/drm/i915/i915_perf.h:37:15: error: ‘struct i915_oa_config’ declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
struct i915_oa_config **out_config,
^~~~~~~~~~~~~~
./drivers/gpu/drm/i915/i915_perf.h:35:43: error: ‘struct i915_perf_stream’ declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
int i915_perf_get_oa_config_and_bo(struct i915_perf_stream *stream,
^~~~~~~~~~~~~~~~
./drivers/gpu/drm/i915/i915_perf.h:39:36: error: ‘struct kref’ declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
void i915_oa_config_release(struct kref *ref);
^~~~
./drivers/gpu/drm/i915/i915_perf.h: In function ‘i915_oa_config_get’:
./drivers/gpu/drm/i915/i915_perf.h:43:2: error: implicit declaration of function ‘kref_get’ [-Werror=implicit-function-declaration]
kref_get(&oa_config->ref);
^~~~~~~~
./drivers/gpu/drm/i915/i915_perf.h:43:21: error: dereferencing pointer to incomplete type ‘struct i915_oa_config’
kref_get(&oa_config->ref);
^~
./drivers/gpu/drm/i915/i915_perf.h: In function ‘i915_oa_config_put’:
./drivers/gpu/drm/i915/i915_perf.h:52:2: error: implicit declaration of function ‘kref_put’ [-Werror=implicit-function-declaration]
kref_put(&oa_config->ref, i915_oa_config_release);
^~~~~~~~
cc1: all warnings being treated as errors
scripts/Makefile.build:308: recipe for target 'drivers/gpu/drm/i915/i915_perf.h.s' failed
make[4]: *** [drivers/gpu/drm/i915/i915_perf.h.s] Error 1
scripts/Makefile.build:497: recipe for target 'drivers/gpu/drm/i915' failed
make[3]: *** [drivers/gpu/drm/i915] Error 2
scripts/Makefile.build:497: recipe for target 'drivers/gpu/drm' failed
make[2]: *** [drivers/gpu/drm] Error 2
scripts/Makefile.build:497: recipe for target 'drivers/gpu' failed
make[1]: *** [drivers/gpu] Error 2
Makefile:1083: recipe for target 'drivers' failed
make: *** [drivers] Error 2
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2019-08-28 15:58 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-28 14:33 [PATCH v11 00/10] drm/i915: Vulkan performance query support Lionel Landwerlin
2019-08-28 14:33 ` [PATCH v11 01/10] drm/syncobj: add sideband payload Lionel Landwerlin
2019-08-29 5:26 ` Zhou, David(ChunMing)
2019-08-29 6:40 ` Lionel Landwerlin
2019-09-04 16:08 ` Lionel Landwerlin
2019-08-28 14:33 ` [PATCH v11 02/10] drm/i915: introduce a mechanism to extend execbuf2 Lionel Landwerlin
2019-08-28 14:33 ` [PATCH v11 03/10] drm/i915: add syncobj timeline support Lionel Landwerlin
2019-08-28 14:33 ` [PATCH v11 04/10] drm/i915/perf: introduce a versioning of the i915-perf uapi Lionel Landwerlin
2019-08-28 14:33 ` [PATCH v11 05/10] drm/i915/perf: allow for CS OA configs to be created lazily Lionel Landwerlin
2019-08-29 2:41 ` kbuild test robot
2019-08-28 14:33 ` [PATCH v11 06/10] drm/i915/perf: implement active wait for noa configurations Lionel Landwerlin
2019-08-28 19:34 ` kbuild test robot
2019-08-28 19:39 ` Chris Wilson
2019-08-29 6:43 ` Lionel Landwerlin
2019-08-28 20:00 ` kbuild test robot
2019-08-28 14:33 ` [PATCH v11 07/10] drm/i915: add a new perf configuration execbuf parameter Lionel Landwerlin
2019-08-28 14:33 ` [PATCH v11 08/10] drm/i915/perf: allow holding preemption on filtered ctx Lionel Landwerlin
2019-08-28 14:33 ` [PATCH v11 09/10] drm/i915/perf: execute OA configuration from command stream Lionel Landwerlin
2019-08-28 19:41 ` Chris Wilson
2019-08-29 6:45 ` Lionel Landwerlin
2019-08-29 6:58 ` Lionel Landwerlin
2019-08-28 14:33 ` [PATCH v11 10/10] drm/i915: add support for perf configuration queries Lionel Landwerlin
2019-08-28 15:58 ` Patchwork [this message]
2019-08-29 5:34 ` ✗ Fi.CI.BAT: failure for drm/i915: Vulkan performance query support (rev12) Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190828155829.28912.56294@emeril.freedesktop.org \
--to=patchwork@emeril.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=lionel.g.landwerlin@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox