All of lore.kernel.org
 help / color / mirror / Atom feed
From: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
To: "Vivi, Rodrigo" <rodrigo.vivi@intel.com>
Cc: "chris.p.wilson@linux.intel.com" <chris.p.wilson@linux.intel.com>,
	"tursulin@ursulin.net" <tursulin@ursulin.net>,
	"intel-gfx@lists.freedesktop.org"
	<intel-gfx@lists.freedesktop.org>,
	"jani.nikula@linux.intel.com" <jani.nikula@linux.intel.com>
Subject: Re: [PATCH] drm/i915: Add includes for BUG_ON/BUILD_BUG_ON in i915_memcpy.c
Date: Tue, 19 Mar 2024 11:07:06 +0200	[thread overview]
Message-ID: <171083922601.5991.17880071082447108987@jlahtine-mobl.ger.corp.intel.com> (raw)
In-Reply-To: <0b7482ea82d770474cb6d1cc342beab58372143d.camel@intel.com>

Pushed this, thanks for the review.

Regards, Joonas

Quoting Vivi, Rodrigo (2024-03-18 14:40:56)
> On Thu, 2024-03-14 at 14:48 +0200, Joonas Lahtinen wrote:
> > Quoting Rodrigo Vivi (2024-03-08 16:58:04)
> > > On Fri, Mar 08, 2024 at 04:46:43PM +0200, Joonas Lahtinen wrote:
> > > > Add standalone includes for BUG_ON and BUILD_BUG_ON to avoid
> > > > build failure
> > > > after linux-next include refactoring.
> > > 
> > > any lore link so we can use with a 'Closes:' tag?
> > > and perhaps a reported-by?
> > 
> > The build failure seems to have happened in intel-gfx-ci.01.org but
> > the
> > failing build results are not uploaded so it's only visible in the
> > background.
> > 
> > From the CI page[1] we can see next-20240304 is the last successful
> > build[2].
> > Failure seems to have started next-20240305 after which the results
> > are
> > not uploaded due to the failure.
> > 
> > For future, I asked if we could improve the CI dashboard by alos
> > showing the
> > failing builds in the CI view. 
> > 
> > However, for now we don't have a reference, I guess.
> > 
> > [1] https://intel-gfx-ci.01.org/tree/linux-next/combined-alt.html?
> > [2] https://intel-gfx-ci.01.org/tree/linux-next/next-
> > 20240304/filelist.html
> > 
> > > 
> > > > 
> > > > Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> > > > Cc: Chris Wilson <chris.p.wilson@linux.intel.com>
> > > > Cc: Jani Nikula <jani.nikula@linux.intel.com>
> > > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > > > Cc: Tvrtko Ursulin <tursulin@ursulin.net>
> > > > ---
> > > >  drivers/gpu/drm/i915/i915_memcpy.c | 2 ++
> > > >  1 file changed, 2 insertions(+)
> > > > 
> > > > diff --git a/drivers/gpu/drm/i915/i915_memcpy.c
> > > > b/drivers/gpu/drm/i915/i915_memcpy.c
> > > > index ba82277254b7..cc41974cee74 100644
> > > > --- a/drivers/gpu/drm/i915/i915_memcpy.c
> > > > +++ b/drivers/gpu/drm/i915/i915_memcpy.c
> > > > @@ -25,6 +25,8 @@
> > > >  #include <linux/kernel.h>
> > > >  #include <linux/string.h>
> > > >  #include <linux/cpufeature.h>
> > > > +#include <linux/bug.h>
> > > > +#include <linux/build_bug.h>
> > > 
> > > git grep BUILD_BUG_ON drivers/gpu/drm/i915/
> > > output
> > > 
> > > vs
> > > 
> > > git grep build_bug.h drivers/gpu/drm/i915/
> > > output
> > > 
> > > tells me that we likely need this in many more files...
> > > 
> > > but not opposed to move with this faster and come back later with
> > > other fixes if this unblocks people:
> > 
> > Yeah, I made the same observation.
> > 
> > Are you fine to merge this with the R-b even without the reference?
> 
> sorry for having missed this.
> 
> yes, the rv-b can be used even without the reference, let's just get
> this in and fix the build issue.
> 
> > 
> > Regards, Joonas
> > 
> > > 
> > > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > > 
> > > >  #include <asm/fpu/api.h>
> > > >  
> > > >  #include "i915_memcpy.h"
> > > > -- 
> > > > 2.43.2
> > > > 
> 

  reply	other threads:[~2024-03-19  9:07 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-08 14:46 [PATCH] drm/i915: Add includes for BUG_ON/BUILD_BUG_ON in i915_memcpy.c Joonas Lahtinen
2024-03-08 14:58 ` Rodrigo Vivi
2024-03-14 12:48   ` Joonas Lahtinen
2024-03-18 12:40     ` Vivi, Rodrigo
2024-03-19  9:07       ` Joonas Lahtinen [this message]
2024-03-08 18:04 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-03-09  8:51 ` ✗ Fi.CI.IGT: failure " Patchwork

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=171083922601.5991.17880071082447108987@jlahtine-mobl.ger.corp.intel.com \
    --to=joonas.lahtinen@linux.intel.com \
    --cc=chris.p.wilson@linux.intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=jani.nikula@linux.intel.com \
    --cc=rodrigo.vivi@intel.com \
    --cc=tursulin@ursulin.net \
    /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.