> -----Original Message----- > From: Cheng, Michael <michael.cheng@xxxxxxxxx> > Sent: Friday, January 28, 2022 2:10 PM > To: intel-gfx@xxxxxxxxxxxxxxxxxxxxx > Cc: Cheng, Michael <michael.cheng@xxxxxxxxx>; Bowman, Casey G > <casey.g.bowman@xxxxxxxxx>; De Marchi, Lucas > <lucas.demarchi@xxxxxxxxx>; Boyer, Wayne <wayne.boyer@xxxxxxxxx>; > ville.syrjala@xxxxxxxxxxxxxxx; Kuoppala, Mika <mika.kuoppala@xxxxxxxxx>; > Auld, Matthew <matthew.auld@xxxxxxxxx> > Subject: [PATCH v2 3/4] drm/i915/gt: Re-work reset_csb > > Use drm_clflush_virt_range instead of directly invoking clflush. This will > prevent compiler errors when building for non-x86 architectures. > > Signed-off-by: Michael Cheng <michael.cheng@xxxxxxxxx> > --- > drivers/gpu/drm/i915/gt/intel_execlists_submission.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c > b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c > index 90b5daf9433d..e8a2e2683b81 100644 > --- a/drivers/gpu/drm/i915/gt/intel_execlists_submission.c > +++ b/drivers/gpu/drm/i915/gt/intel_execlists_submission.c > @@ -2951,6 +2951,8 @@ reset_csb(struct intel_engine_cs *engine, struct > i915_request **inactive) > > mb(); /* paranoia: read the CSB pointers from after the reset */ > clflush(execlists->csb_write); > + drm_clflush_virt_range(execlists->csb_write, > + sizeof(execlists->csb_write)); I only see the insertion of drm_clflush_virt_range() here, not the removal of the clflush() call, which sounds like it's supposed to be replaced here, based on your commit message. > mb(); > > inactive = process_csb(engine, inactive); /* drain preemption events > */ > -- > 2.25.1