All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>
Cc: intel-gfx@lists.freedesktop.org, kbuild-all@lists.01.org
Subject: Re: [Intel-gfx] [PATCH] drm/i915/gt: Apply Enable Boot Fetch to MBC control register
Date: Sun, 9 Feb 2020 11:11:42 +0800	[thread overview]
Message-ID: <202002091148.y1R4TQG5%lkp@intel.com> (raw)
In-Reply-To: <20200206174658.2576421-1-chris@chris-wilson.co.uk>

[-- Attachment #1: Type: text/plain, Size: 3347 bytes --]

Hi Chris,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on drm-intel/for-linux-next]
[also build test ERROR on drm-tip/drm-tip v5.5 next-20200207]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Chris-Wilson/drm-i915-gt-Apply-Enable-Boot-Fetch-to-MBC-control-register/20200209-081806
base:   git://anongit.freedesktop.org/drm-intel for-linux-next
config: x86_64-allyesconfig (attached as .config)
compiler: gcc-7 (Debian 7.5.0-3) 7.5.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   drivers/gpu/drm/i915/gt/intel_workarounds.c: In function 'gt_init_workarounds':
>> drivers/gpu/drm/i915/gt/intel_workarounds.c:973:3: error: implicit declaration of function 'gen7_gt_workarounds'; did you mean 'gt_init_workarounds'? [-Werror=implicit-function-declaration]
      gen7_gt_workarounds(i915, wal);
      ^~~~~~~~~~~~~~~~~~~
      gt_init_workarounds
>> drivers/gpu/drm/i915/gt/intel_workarounds.c:975:3: error: implicit declaration of function 'gen6_gt_workarounds'; did you mean 'gt_init_workarounds'? [-Werror=implicit-function-declaration]
      gen6_gt_workarounds(i915, wal);
      ^~~~~~~~~~~~~~~~~~~
      gt_init_workarounds
   At top level:
   drivers/gpu/drm/i915/gt/intel_workarounds.c:783:1: warning: 'gen6_gt_workarounds_init' defined but not used [-Wunused-function]
    gen6_gt_workarounds_init(struct drm_i915_private *i915, struct i915_wa_list *wal)
    ^~~~~~~~~~~~~~~~~~~~~~~~
   drivers/gpu/drm/i915/gt/intel_workarounds.c:777:1: warning: 'gen7_gt_workarounds_init' defined but not used [-Wunused-function]
    gen7_gt_workarounds_init(struct drm_i915_private *i915, struct i915_wa_list *wal)
    ^~~~~~~~~~~~~~~~~~~~~~~~
   cc1: some warnings being treated as errors

vim +973 drivers/gpu/drm/i915/gt/intel_workarounds.c

   952	
   953	static void
   954	gt_init_workarounds(struct drm_i915_private *i915, struct i915_wa_list *wal)
   955	{
   956		if (IS_GEN(i915, 12))
   957			tgl_gt_workarounds_init(i915, wal);
   958		else if (IS_GEN(i915, 11))
   959			icl_gt_workarounds_init(i915, wal);
   960		else if (IS_CANNONLAKE(i915))
   961			cnl_gt_workarounds_init(i915, wal);
   962		else if (IS_COFFEELAKE(i915))
   963			cfl_gt_workarounds_init(i915, wal);
   964		else if (IS_GEMINILAKE(i915))
   965			glk_gt_workarounds_init(i915, wal);
   966		else if (IS_KABYLAKE(i915))
   967			kbl_gt_workarounds_init(i915, wal);
   968		else if (IS_BROXTON(i915))
   969			bxt_gt_workarounds_init(i915, wal);
   970		else if (IS_SKYLAKE(i915))
   971			skl_gt_workarounds_init(i915, wal);
   972		else if (IS_GEN(i915, 7))
 > 973			gen7_gt_workarounds(i915, wal);
   974		else if (IS_GEN(i915, 6))
 > 975			gen6_gt_workarounds(i915, wal);
   976		else if (INTEL_GEN(i915) < 6)
   977			return;
   978		else
   979			MISSING_CASE(INTEL_GEN(i915));
   980	}
   981	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 71196 bytes --]

[-- Attachment #3: Type: text/plain, Size: 160 bytes --]

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [Intel-gfx] [PATCH] drm/i915/gt: Apply Enable Boot Fetch to MBC control register
Date: Sun, 09 Feb 2020 11:11:42 +0800	[thread overview]
Message-ID: <202002091148.y1R4TQG5%lkp@intel.com> (raw)
In-Reply-To: <20200206174658.2576421-1-chris@chris-wilson.co.uk>

[-- Attachment #1: Type: text/plain, Size: 3424 bytes --]

Hi Chris,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on drm-intel/for-linux-next]
[also build test ERROR on drm-tip/drm-tip v5.5 next-20200207]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Chris-Wilson/drm-i915-gt-Apply-Enable-Boot-Fetch-to-MBC-control-register/20200209-081806
base:   git://anongit.freedesktop.org/drm-intel for-linux-next
config: x86_64-allyesconfig (attached as .config)
compiler: gcc-7 (Debian 7.5.0-3) 7.5.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   drivers/gpu/drm/i915/gt/intel_workarounds.c: In function 'gt_init_workarounds':
>> drivers/gpu/drm/i915/gt/intel_workarounds.c:973:3: error: implicit declaration of function 'gen7_gt_workarounds'; did you mean 'gt_init_workarounds'? [-Werror=implicit-function-declaration]
      gen7_gt_workarounds(i915, wal);
      ^~~~~~~~~~~~~~~~~~~
      gt_init_workarounds
>> drivers/gpu/drm/i915/gt/intel_workarounds.c:975:3: error: implicit declaration of function 'gen6_gt_workarounds'; did you mean 'gt_init_workarounds'? [-Werror=implicit-function-declaration]
      gen6_gt_workarounds(i915, wal);
      ^~~~~~~~~~~~~~~~~~~
      gt_init_workarounds
   At top level:
   drivers/gpu/drm/i915/gt/intel_workarounds.c:783:1: warning: 'gen6_gt_workarounds_init' defined but not used [-Wunused-function]
    gen6_gt_workarounds_init(struct drm_i915_private *i915, struct i915_wa_list *wal)
    ^~~~~~~~~~~~~~~~~~~~~~~~
   drivers/gpu/drm/i915/gt/intel_workarounds.c:777:1: warning: 'gen7_gt_workarounds_init' defined but not used [-Wunused-function]
    gen7_gt_workarounds_init(struct drm_i915_private *i915, struct i915_wa_list *wal)
    ^~~~~~~~~~~~~~~~~~~~~~~~
   cc1: some warnings being treated as errors

vim +973 drivers/gpu/drm/i915/gt/intel_workarounds.c

   952	
   953	static void
   954	gt_init_workarounds(struct drm_i915_private *i915, struct i915_wa_list *wal)
   955	{
   956		if (IS_GEN(i915, 12))
   957			tgl_gt_workarounds_init(i915, wal);
   958		else if (IS_GEN(i915, 11))
   959			icl_gt_workarounds_init(i915, wal);
   960		else if (IS_CANNONLAKE(i915))
   961			cnl_gt_workarounds_init(i915, wal);
   962		else if (IS_COFFEELAKE(i915))
   963			cfl_gt_workarounds_init(i915, wal);
   964		else if (IS_GEMINILAKE(i915))
   965			glk_gt_workarounds_init(i915, wal);
   966		else if (IS_KABYLAKE(i915))
   967			kbl_gt_workarounds_init(i915, wal);
   968		else if (IS_BROXTON(i915))
   969			bxt_gt_workarounds_init(i915, wal);
   970		else if (IS_SKYLAKE(i915))
   971			skl_gt_workarounds_init(i915, wal);
   972		else if (IS_GEN(i915, 7))
 > 973			gen7_gt_workarounds(i915, wal);
   974		else if (IS_GEN(i915, 6))
 > 975			gen6_gt_workarounds(i915, wal);
   976		else if (INTEL_GEN(i915) < 6)
   977			return;
   978		else
   979			MISSING_CASE(INTEL_GEN(i915));
   980	}
   981	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 71196 bytes --]

  parent reply	other threads:[~2020-02-09  3:12 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-06 17:46 [Intel-gfx] [PATCH] drm/i915/gt: Apply Enable Boot Fetch to MBC control register Chris Wilson
2020-02-06 17:49 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for " Patchwork
2020-02-06 17:53 ` [Intel-gfx] [PATCH] " Chris Wilson
2020-02-06 18:33 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/gt: Apply Enable Boot Fetch to MBC control register (rev2) Patchwork
2020-02-06 18:45   ` Chris Wilson
2020-02-07  9:44     ` Mika Kuoppala
2020-02-07  9:49       ` Chris Wilson
2020-02-09  3:11 ` kbuild test robot [this message]
2020-02-09  3:11   ` [Intel-gfx] [PATCH] drm/i915/gt: Apply Enable Boot Fetch to MBC control register kbuild test robot

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=202002091148.y1R4TQG5%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=chris@chris-wilson.co.uk \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=kbuild-all@lists.01.org \
    /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 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.