* Re: [Intel-gfx] [RFC PATCH 2/2] drm/i915: Enabling WD Transcoder
[not found] <20220223062043.8337-3-suraj.kandpal@intel.com>
@ 2022-02-23 12:46 ` kernel test robot
2022-02-23 12:47 ` kernel test robot
1 sibling, 0 replies; 3+ messages in thread
From: kernel test robot @ 2022-02-23 12:46 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: llvm, kbuild-all
Hi Suraj,
[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on drm-intel/for-linux-next]
[also build test ERROR on drm-tip/drm-tip next-20220222]
[cannot apply to v5.17-rc5]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Suraj-Kandpal/Patches-to-enable-writeback-in-i915/20220223-141252
base: git://anongit.freedesktop.org/drm-intel for-linux-next
config: i386-randconfig-a014-20220221 (https://download.01.org/0day-ci/archive/20220223/202202231835.QH8Iu0VY-lkp@intel.com/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project d271fc04d5b97b12e6b797c6067d3c96a8d7470e)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/0bebda2fa91f41b1cd2c0ff7aa92fc6c653bc03c
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Suraj-Kandpal/Patches-to-enable-writeback-in-i915/20220223-141252
git checkout 0bebda2fa91f41b1cd2c0ff7aa92fc6c653bc03c
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash drivers/gpu/drm/i915/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All error/warnings (new ones prefixed by >>):
>> drivers/gpu/drm/i915/display/intel_display.c:1575:38: error: no member named 'wb_connector' in 'struct drm_connector'
drm_writeback_queue_job(connector->wb_connector, new_conn_state);
~~~~~~~~~ ^
1 error generated.
--
>> drivers/gpu/drm/i915/display/intel_wd.c:50:38: error: no member named 'wb_connector' in 'struct drm_connector'
intel_wd->attached_connector->base.wb_connector;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
>> drivers/gpu/drm/i915/display/intel_wd.c:66:6: warning: no previous prototype for function 'print_connectors' [-Wmissing-prototypes]
void print_connectors(struct drm_i915_private *dev_priv)
^
drivers/gpu/drm/i915/display/intel_wd.c:66:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void print_connectors(struct drm_i915_private *dev_priv)
^
static
>> drivers/gpu/drm/i915/display/intel_wd.c:397:16: error: assigning to 'struct drm_connector' from incompatible type 'struct drm_connector *'; remove &
wb_conn->base = &intel_connector->base;
^ ~~~~~~~~~~~~~~~~~~~~~~
>> drivers/gpu/drm/i915/display/intel_wd.c:398:19: error: assigning to 'struct drm_encoder' from incompatible type 'struct drm_encoder *'; remove &
wb_conn->encoder = &intel_wd->base.base;
^ ~~~~~~~~~~~~~~~~~~~~
>> drivers/gpu/drm/i915/display/intel_wd.c:430:27: error: passing 'struct drm_connector' to parameter of incompatible type 'struct drm_connector *'; take the address with &
drm_connector_helper_add(wb_conn->base, &wd_connector_helper_funcs);
^~~~~~~~~~~~~
&
include/drm/drm_modeset_helper_vtables.h:1153:67: note: passing argument to parameter 'connector' here
static inline void drm_connector_helper_add(struct drm_connector *connector,
^
>> drivers/gpu/drm/i915/display/intel_wd.c:432:15: error: member reference type 'struct drm_connector' is not a pointer; did you mean to use '.'?
wb_conn->base->status = connector_status_connected;
~~~~~~~~~~~~~^~
.
>> drivers/gpu/drm/i915/display/intel_wd.c:432:24: error: expression is not assignable
wb_conn->base->status = connector_status_connected;
~~~~~~~~~~~~~~~~~~~~~ ^
drivers/gpu/drm/i915/display/intel_wd.c:444:38: error: no member named 'wb_connector' in 'struct drm_connector'
intel_wd->attached_connector->base.wb_connector;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
>> drivers/gpu/drm/i915/display/intel_wd.c:440:6: warning: no previous prototype for function 'intel_wd_writeback_complete' [-Wmissing-prototypes]
void intel_wd_writeback_complete(struct intel_wd *intel_wd,
^
drivers/gpu/drm/i915/display/intel_wd.c:440:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void intel_wd_writeback_complete(struct intel_wd *intel_wd,
^
static
>> drivers/gpu/drm/i915/display/intel_wd.c:448:5: warning: no previous prototype for function 'intel_wd_setup_transcoder' [-Wmissing-prototypes]
int intel_wd_setup_transcoder(struct intel_wd *intel_wd,
^
drivers/gpu/drm/i915/display/intel_wd.c:448:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
int intel_wd_setup_transcoder(struct intel_wd *intel_wd,
^
static
>> drivers/gpu/drm/i915/display/intel_wd.c:613:5: warning: no previous prototype for function 'intel_wd_capture' [-Wmissing-prototypes]
int intel_wd_capture(struct intel_wd *intel_wd,
^
drivers/gpu/drm/i915/display/intel_wd.c:613:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
int intel_wd_capture(struct intel_wd *intel_wd,
^
static
4 warnings and 7 errors generated.
vim +1575 drivers/gpu/drm/i915/display/intel_display.c
1551
1552 static void intel_queue_writeback_job(struct intel_atomic_state *state,
1553 struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
1554 {
1555 struct drm_connector_state *new_conn_state;
1556 struct drm_connector *connector;
1557 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
1558 struct intel_wd *intel_wd;
1559 struct intel_encoder *encoder;
1560 int i;
1561
1562 for_each_intel_encoder_with_wd(&dev_priv->drm, encoder) {
1563 intel_wd = enc_to_intel_wd(encoder);
1564
1565 if (intel_wd->wd_crtc != intel_crtc)
1566 return;
1567
1568 }
1569
1570 for_each_new_connector_in_state(&state->base, connector, new_conn_state,
1571 i) {
1572 if (!new_conn_state->writeback_job)
1573 continue;
1574
> 1575 drm_writeback_queue_job(connector->wb_connector, new_conn_state);
1576 drm_dbg_kms(&dev_priv->drm, "queueing writeback job\n");
1577 }
1578 }
1579
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Intel-gfx] [RFC PATCH 2/2] drm/i915: Enabling WD Transcoder
[not found] <20220223062043.8337-3-suraj.kandpal@intel.com>
2022-02-23 12:46 ` kernel test robot
@ 2022-02-23 12:47 ` kernel test robot
1 sibling, 0 replies; 3+ messages in thread
From: kernel test robot @ 2022-02-23 12:47 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: llvm, kbuild-all
Hi Suraj,
[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on drm-intel/for-linux-next]
[also build test ERROR on drm-tip/drm-tip next-20220222]
[cannot apply to v5.17-rc5]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Suraj-Kandpal/Patches-to-enable-writeback-in-i915/20220223-141252
base: git://anongit.freedesktop.org/drm-intel for-linux-next
config: x86_64-randconfig-a012-20220221 (https://download.01.org/0day-ci/archive/20220223/202202231929.Ljqdg1LQ-lkp@intel.com/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project d271fc04d5b97b12e6b797c6067d3c96a8d7470e)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/0bebda2fa91f41b1cd2c0ff7aa92fc6c653bc03c
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Suraj-Kandpal/Patches-to-enable-writeback-in-i915/20220223-141252
git checkout 0bebda2fa91f41b1cd2c0ff7aa92fc6c653bc03c
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
drivers/gpu/drm/i915/display/intel_wd.c:50:38: error: no member named 'wb_connector' in 'struct drm_connector'
intel_wd->attached_connector->base.wb_connector;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
>> drivers/gpu/drm/i915/display/intel_wd.c:66:6: error: no previous prototype for function 'print_connectors' [-Werror,-Wmissing-prototypes]
void print_connectors(struct drm_i915_private *dev_priv)
^
drivers/gpu/drm/i915/display/intel_wd.c:66:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void print_connectors(struct drm_i915_private *dev_priv)
^
static
drivers/gpu/drm/i915/display/intel_wd.c:397:16: error: assigning to 'struct drm_connector' from incompatible type 'struct drm_connector *'; remove &
wb_conn->base = &intel_connector->base;
^ ~~~~~~~~~~~~~~~~~~~~~~
drivers/gpu/drm/i915/display/intel_wd.c:398:19: error: assigning to 'struct drm_encoder' from incompatible type 'struct drm_encoder *'; remove &
wb_conn->encoder = &intel_wd->base.base;
^ ~~~~~~~~~~~~~~~~~~~~
drivers/gpu/drm/i915/display/intel_wd.c:430:27: error: passing 'struct drm_connector' to parameter of incompatible type 'struct drm_connector *'; take the address with &
drm_connector_helper_add(wb_conn->base, &wd_connector_helper_funcs);
^~~~~~~~~~~~~
&
include/drm/drm_modeset_helper_vtables.h:1153:67: note: passing argument to parameter 'connector' here
static inline void drm_connector_helper_add(struct drm_connector *connector,
^
drivers/gpu/drm/i915/display/intel_wd.c:432:15: error: member reference type 'struct drm_connector' is not a pointer; did you mean to use '.'?
wb_conn->base->status = connector_status_connected;
~~~~~~~~~~~~~^~
.
drivers/gpu/drm/i915/display/intel_wd.c:432:24: error: expression is not assignable
wb_conn->base->status = connector_status_connected;
~~~~~~~~~~~~~~~~~~~~~ ^
drivers/gpu/drm/i915/display/intel_wd.c:444:38: error: no member named 'wb_connector' in 'struct drm_connector'
intel_wd->attached_connector->base.wb_connector;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
>> drivers/gpu/drm/i915/display/intel_wd.c:440:6: error: no previous prototype for function 'intel_wd_writeback_complete' [-Werror,-Wmissing-prototypes]
void intel_wd_writeback_complete(struct intel_wd *intel_wd,
^
drivers/gpu/drm/i915/display/intel_wd.c:440:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void intel_wd_writeback_complete(struct intel_wd *intel_wd,
^
static
>> drivers/gpu/drm/i915/display/intel_wd.c:448:5: error: no previous prototype for function 'intel_wd_setup_transcoder' [-Werror,-Wmissing-prototypes]
int intel_wd_setup_transcoder(struct intel_wd *intel_wd,
^
drivers/gpu/drm/i915/display/intel_wd.c:448:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
int intel_wd_setup_transcoder(struct intel_wd *intel_wd,
^
static
>> drivers/gpu/drm/i915/display/intel_wd.c:613:5: error: no previous prototype for function 'intel_wd_capture' [-Werror,-Wmissing-prototypes]
int intel_wd_capture(struct intel_wd *intel_wd,
^
drivers/gpu/drm/i915/display/intel_wd.c:613:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
int intel_wd_capture(struct intel_wd *intel_wd,
^
static
11 errors generated.
vim +/print_connectors +66 drivers/gpu/drm/i915/display/intel_wd.c
65
> 66 void print_connectors(struct drm_i915_private *dev_priv)
67 {
68 struct drm_connector *connector;
69 struct drm_connector_list_iter conn_iter;
70 struct intel_connector *intel_connector;
71
72 drm_modeset_lock_all(&dev_priv->drm);
73 drm_connector_list_iter_begin(&dev_priv->drm, &conn_iter);
74 drm_for_each_connector_iter(connector, &conn_iter) {
75 intel_connector = to_intel_connector(connector);
76 drm_dbg_kms(&dev_priv->drm, "[CONNECTOR:%d:%s]: status: %s\n",
77 connector->base.id, connector->name,
78 drm_get_connector_status_name(connector->status));
79 }
80 drm_connector_list_iter_end(&conn_iter);
81 drm_modeset_unlock_all(&dev_priv->drm);
82 }
83
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Intel-gfx] [RFC PATCH 2/2] drm/i915: Enabling WD Transcoder
[not found] <20220601082200.368911-3-suraj.kandpal@intel.com>
@ 2022-06-01 12:02 ` kernel test robot
0 siblings, 0 replies; 3+ messages in thread
From: kernel test robot @ 2022-06-01 12:02 UTC (permalink / raw)
To: Suraj Kandpal; +Cc: llvm, kbuild-all
Hi Suraj,
[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on drm-tip/drm-tip]
url: https://github.com/intel-lab-lkp/linux/commits/Suraj-Kandpal/i915-writeback-enablement/20220601-162509
base: git://anongit.freedesktop.org/drm/drm-tip drm-tip
config: x86_64-randconfig-a005 (https://download.01.org/0day-ci/archive/20220601/202206011906.FVEKyYoi-lkp@intel.com/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project c825abd6b0198fb088d9752f556a70705bc99dfd)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/intel-lab-lkp/linux/commit/86bdd6544954d8a7336e5b797538677c9001d0fc
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Suraj-Kandpal/i915-writeback-enablement/20220601-162509
git checkout 86bdd6544954d8a7336e5b797538677c9001d0fc
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash drivers/gpu/drm/i915/
If you fix the issue, kindly add following tag where applicable
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> drivers/gpu/drm/i915/display/intel_wd.c:66:6: warning: no previous prototype for function 'print_connectors' [-Wmissing-prototypes]
void print_connectors(struct drm_i915_private *dev_priv)
^
drivers/gpu/drm/i915/display/intel_wd.c:66:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void print_connectors(struct drm_i915_private *dev_priv)
^
static
>> drivers/gpu/drm/i915/display/intel_wd.c:414:6: warning: no previous prototype for function 'intel_wd_writeback_complete' [-Wmissing-prototypes]
void intel_wd_writeback_complete(struct intel_wd *intel_wd,
^
drivers/gpu/drm/i915/display/intel_wd.c:414:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void intel_wd_writeback_complete(struct intel_wd *intel_wd,
^
static
>> drivers/gpu/drm/i915/display/intel_wd.c:422:5: warning: no previous prototype for function 'intel_wd_setup_transcoder' [-Wmissing-prototypes]
int intel_wd_setup_transcoder(struct intel_wd *intel_wd,
^
drivers/gpu/drm/i915/display/intel_wd.c:422:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
int intel_wd_setup_transcoder(struct intel_wd *intel_wd,
^
static
>> drivers/gpu/drm/i915/display/intel_wd.c:587:5: warning: no previous prototype for function 'intel_wd_capture' [-Wmissing-prototypes]
int intel_wd_capture(struct intel_wd *intel_wd,
^
drivers/gpu/drm/i915/display/intel_wd.c:587:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
int intel_wd_capture(struct intel_wd *intel_wd,
^
static
4 warnings generated.
vim +/print_connectors +66 drivers/gpu/drm/i915/display/intel_wd.c
65
> 66 void print_connectors(struct drm_i915_private *dev_priv)
67 {
68 struct drm_connector *connector;
69 struct drm_connector_list_iter conn_iter;
70 struct intel_connector *intel_connector;
71
72 drm_modeset_lock_all(&dev_priv->drm);
73 drm_connector_list_iter_begin(&dev_priv->drm, &conn_iter);
74 drm_for_each_connector_iter(connector, &conn_iter) {
75 intel_connector = to_intel_connector(connector);
76 drm_dbg_kms(&dev_priv->drm, "[CONNECTOR:%d:%s]: status: %s\n",
77 connector->base.id, connector->name,
78 drm_get_connector_status_name(connector->status));
79 }
80 drm_connector_list_iter_end(&conn_iter);
81 drm_modeset_unlock_all(&dev_priv->drm);
82 }
83
--
0-DAY CI Kernel Test Service
https://01.org/lkp
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-06-01 12:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20220601082200.368911-3-suraj.kandpal@intel.com>
2022-06-01 12:02 ` [Intel-gfx] [RFC PATCH 2/2] drm/i915: Enabling WD Transcoder kernel test robot
[not found] <20220223062043.8337-3-suraj.kandpal@intel.com>
2022-02-23 12:46 ` kernel test robot
2022-02-23 12:47 ` kernel test robot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox