All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL] gvt-fixes for 5.1-rc1
@ 2019-03-07  6:08 Zhenyu Wang
  2019-03-07 23:44 ` Rodrigo Vivi
  0 siblings, 1 reply; 4+ messages in thread
From: Zhenyu Wang @ 2019-03-07  6:08 UTC (permalink / raw)
  To: Jani Nikula, Joonas Lahtinen, Vivi, Rodrigo
  Cc: intel-gfx, intel-gvt-dev, Lv, Zhiyuan, Yuan, Hang


[-- Attachment #1.1: Type: text/plain, Size: 2109 bytes --]


Hi,

Here's gvt-fixes for 5.1-rc1. This contains fixes for newer
version of Windows driver, e.g fix parser for MI_FLUSH_DW and
font render error. And with other stable fix in error path,
fix unexpected workload submission when vGPU idle, etc. Details
are below.

Thanks
--
The following changes since commit 0f75551216091223efe1f18295f655aff6415385:

  drm/i915/gvt: release shadow batch buffer and wa_ctx before destroy one workload (2019-01-23 13:58:46 +0800)

are available in the Git repository at:

  https://github.com/intel/gvt-linux.git tags/gvt-fixes-2019-03-07

for you to fetch changes up to 72aabfb862e40ee83c136c4f87877c207e6859b7:

  drm/i915/gvt: Add mutual lock for ppgtt mm LRU list (2019-03-04 14:45:28 +0800)

----------------------------------------------------------------
gvt-fixes-2019-03-07

- Fix MI_FLUSH_DW cmd parser on index check (Zhenyu)
- Fix Windows guest font render error (Colin)
- Fix unexpected workload submission for inactive vGPU (Weinan)
- Fix incorrect workload submission in error path (Zhenyu)
- Fix warning for shadow ppgtt mm reclaim list walk with locking (Zhenyu)

----------------------------------------------------------------
Colin Xu (1):
      drm/i915/gvt: Add in context mmio 0x20D8 to gen9 mmio list

Weinan Li (1):
      drm/i915/gvt: stop scheduling workload when vgpu is inactive

Zhenyu Wang (4):
      drm/i915/gvt: Fix MI_FLUSH_DW parsing with correct index check
      drm/i915/gvt: Don't submit request for error workload dispatch
      drm/i915/gvt: Only assign ppgtt root at dispatch time
      drm/i915/gvt: Add mutual lock for ppgtt mm LRU list

 drivers/gpu/drm/i915/gvt/cmd_parser.c   |  2 +-
 drivers/gpu/drm/i915/gvt/gtt.c          | 14 +++++++++++++-
 drivers/gpu/drm/i915/gvt/gtt.h          |  1 +
 drivers/gpu/drm/i915/gvt/mmio_context.c |  1 +
 drivers/gpu/drm/i915/gvt/scheduler.c    | 28 ++++++++++++++++++++--------
 5 files changed, 36 insertions(+), 10 deletions(-)


-- 
Open Source Technology Center, Intel ltd.

$gpg --keyserver wwwkeys.pgp.net --recv-keys 4D781827

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

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

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

* Re: [PULL] gvt-fixes for 5.1-rc1
  2019-03-07  6:08 [PULL] gvt-fixes for 5.1-rc1 Zhenyu Wang
@ 2019-03-07 23:44 ` Rodrigo Vivi
  2019-03-08  2:04   ` Zhenyu Wang
  2019-03-08  2:47   ` Zhenyu Wang
  0 siblings, 2 replies; 4+ messages in thread
From: Rodrigo Vivi @ 2019-03-07 23:44 UTC (permalink / raw)
  To: Zhenyu Wang
  Cc: Jani Nikula, intel-gfx, Yuan, Hang, Lv, Zhiyuan, intel-gvt-dev

On Thu, Mar 07, 2019 at 02:08:10PM +0800, Zhenyu Wang wrote:
> 
> Hi,
> 
> Here's gvt-fixes for 5.1-rc1.

I'm kind of confused here. this should be -next-fixes right?

$ dim apply-pull drm-intel-next-fixes

Pulling https://github.com/intel/gvt-linux.git tags/gvt-fixes-2019-03-07 ...
From https://github.com/intel/gvt-linux
 * tag                         gvt-fixes-2019-03-07 -> FETCH_HEAD
dim: Pull request contains commits from drm/drm-fixes
dim: Please backmerge first
dim: ERROR: Issues in pull request detected, aborting

or am I missing something?

Thanks,
Rodrigo.

> This contains fixes for newer
> version of Windows driver, e.g fix parser for MI_FLUSH_DW and
> font render error. And with other stable fix in error path,
> fix unexpected workload submission when vGPU idle, etc. Details
> are below.
> 
> Thanks
> --
> The following changes since commit 0f75551216091223efe1f18295f655aff6415385:
> 
>   drm/i915/gvt: release shadow batch buffer and wa_ctx before destroy one workload (2019-01-23 13:58:46 +0800)
> 
> are available in the Git repository at:
> 
>   https://github.com/intel/gvt-linux.git tags/gvt-fixes-2019-03-07
> 
> for you to fetch changes up to 72aabfb862e40ee83c136c4f87877c207e6859b7:
> 
>   drm/i915/gvt: Add mutual lock for ppgtt mm LRU list (2019-03-04 14:45:28 +0800)
> 
> ----------------------------------------------------------------
> gvt-fixes-2019-03-07
> 
> - Fix MI_FLUSH_DW cmd parser on index check (Zhenyu)
> - Fix Windows guest font render error (Colin)
> - Fix unexpected workload submission for inactive vGPU (Weinan)
> - Fix incorrect workload submission in error path (Zhenyu)
> - Fix warning for shadow ppgtt mm reclaim list walk with locking (Zhenyu)
> 
> ----------------------------------------------------------------
> Colin Xu (1):
>       drm/i915/gvt: Add in context mmio 0x20D8 to gen9 mmio list
> 
> Weinan Li (1):
>       drm/i915/gvt: stop scheduling workload when vgpu is inactive
> 
> Zhenyu Wang (4):
>       drm/i915/gvt: Fix MI_FLUSH_DW parsing with correct index check
>       drm/i915/gvt: Don't submit request for error workload dispatch
>       drm/i915/gvt: Only assign ppgtt root at dispatch time
>       drm/i915/gvt: Add mutual lock for ppgtt mm LRU list
> 
>  drivers/gpu/drm/i915/gvt/cmd_parser.c   |  2 +-
>  drivers/gpu/drm/i915/gvt/gtt.c          | 14 +++++++++++++-
>  drivers/gpu/drm/i915/gvt/gtt.h          |  1 +
>  drivers/gpu/drm/i915/gvt/mmio_context.c |  1 +
>  drivers/gpu/drm/i915/gvt/scheduler.c    | 28 ++++++++++++++++++++--------
>  5 files changed, 36 insertions(+), 10 deletions(-)
> 
> 
> -- 
> Open Source Technology Center, Intel ltd.
> 
> $gpg --keyserver wwwkeys.pgp.net --recv-keys 4D781827


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

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

* Re: [PULL] gvt-fixes for 5.1-rc1
  2019-03-07 23:44 ` Rodrigo Vivi
@ 2019-03-08  2:04   ` Zhenyu Wang
  2019-03-08  2:47   ` Zhenyu Wang
  1 sibling, 0 replies; 4+ messages in thread
From: Zhenyu Wang @ 2019-03-08  2:04 UTC (permalink / raw)
  To: Rodrigo Vivi
  Cc: Jani Nikula, intel-gfx, Yuan, Hang, Lv, Zhiyuan, intel-gvt-dev


[-- Attachment #1.1: Type: text/plain, Size: 894 bytes --]

On 2019.03.07 15:44:35 -0800, Rodrigo Vivi wrote:
> On Thu, Mar 07, 2019 at 02:08:10PM +0800, Zhenyu Wang wrote:
> > 
> > Hi,
> > 
> > Here's gvt-fixes for 5.1-rc1.
> 
> I'm kind of confused here. this should be -next-fixes right?
>

oops, you're right, it should be -next-fixes

> $ dim apply-pull drm-intel-next-fixes
> 
> Pulling https://github.com/intel/gvt-linux.git tags/gvt-fixes-2019-03-07 ...
> From https://github.com/intel/gvt-linux
>  * tag                         gvt-fixes-2019-03-07 -> FETCH_HEAD
> dim: Pull request contains commits from drm/drm-fixes
> dim: Please backmerge first
> dim: ERROR: Issues in pull request detected, aborting
> 
> or am I missing something?

I generated against drm-intel-fixes, will resend for -next-fixes.

Thanks

-- 
Open Source Technology Center, Intel ltd.

$gpg --keyserver wwwkeys.pgp.net --recv-keys 4D781827

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

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

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

* Re: [PULL] gvt-fixes for 5.1-rc1
  2019-03-07 23:44 ` Rodrigo Vivi
  2019-03-08  2:04   ` Zhenyu Wang
@ 2019-03-08  2:47   ` Zhenyu Wang
  1 sibling, 0 replies; 4+ messages in thread
From: Zhenyu Wang @ 2019-03-08  2:47 UTC (permalink / raw)
  To: Rodrigo Vivi
  Cc: Jani Nikula, intel-gfx, Yuan, Hang, Lv, Zhiyuan, intel-gvt-dev


[-- Attachment #1.1: Type: text/plain, Size: 1072 bytes --]

On 2019.03.07 15:44:35 -0800, Rodrigo Vivi wrote:
> On Thu, Mar 07, 2019 at 02:08:10PM +0800, Zhenyu Wang wrote:
> > 
> > Hi,
> > 
> > Here's gvt-fixes for 5.1-rc1.
> 
> I'm kind of confused here. this should be -next-fixes right?
> 
> $ dim apply-pull drm-intel-next-fixes
> 
> Pulling https://github.com/intel/gvt-linux.git tags/gvt-fixes-2019-03-07 ...
> From https://github.com/intel/gvt-linux
>  * tag                         gvt-fixes-2019-03-07 -> FETCH_HEAD
> dim: Pull request contains commits from drm/drm-fixes
> dim: Please backmerge first
> dim: ERROR: Issues in pull request detected, aborting
> 
> or am I missing something?
> 

Looks drm-intel-next-queued has backmerge of 5.0-rc7 from drm-next,
but drm-intel-next-fixes doesn't, some fixes depend on upstreamn
commit, e.g for f0e994372518 ("drm/i915/gvt: Fix workload request
allocation before request add"). For current window, I might hold till
drm-intel-fixes updated.

-- 
Open Source Technology Center, Intel ltd.

$gpg --keyserver wwwkeys.pgp.net --recv-keys 4D781827

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

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

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

end of thread, other threads:[~2019-03-08  2:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-07  6:08 [PULL] gvt-fixes for 5.1-rc1 Zhenyu Wang
2019-03-07 23:44 ` Rodrigo Vivi
2019-03-08  2:04   ` Zhenyu Wang
2019-03-08  2:47   ` Zhenyu Wang

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.