Re: [PATCH v8 10/16] i915/gvt: remove spaces in pr_debug "gvt: core:" etc prefixes

2021-09-23 Thread Zhenyu Wang
(fmt, args...) \ > - pr_debug("gvt: dpy: "fmt, ##args) > + pr_debug("gvt:dpy: " fmt, ##args) > > #define gvt_dbg_el(fmt, args...) \ > - pr_debug("gvt: el: "fmt, ##args) > + pr_debug("gvt:el: " fmt, ##args) > >

Re: [PATCH 3/6] i915/gvt: remove unused xen bits

2020-04-13 Thread Zhenyu Wang
On 2020.04.13 15:08:06 +0200, Christoph Hellwig wrote: > On Wed, Apr 08, 2020 at 09:44:37AM +0800, Zhenyu Wang wrote: > > On 2020.04.04 11:40:58 +0200, Christoph Hellwig wrote: > > > No Xen support anywhere here. Remove a dead declaration and an unused > > > include.

Re: [PATCH 3/6] i915/gvt: remove unused xen bits

2020-04-07 Thread Zhenyu Wang
On 2020.04.04 11:40:58 +0200, Christoph Hellwig wrote: > No Xen support anywhere here. Remove a dead declaration and an unused > include. > > Signed-off-by: Christoph Hellwig > --- We'll keep that off-tree. Acked-by: Zhenyu Wang Thanks > drivers/gpu/drm/i

Re: Possible use_mm() mis-uses

2018-08-22 Thread Zhenyu Wang
vmgt_guest_exit, or maybe mmget_not_zero. > yeah, that's the clear way to fix this imo. We only depend on guest life cycle to access guest memory properly. Here's proposed fix, will verify and integrate it later. Thanks! From 5e5a8d0409aa150884adf5a4d0b956fd0b9906b3 Mon Sep 17 00:00:00 2001 From: Zhen