From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
Linux Trace Kernel <linux-trace-kernel@vger.kernel.org>,
dri-devel@lists.freedesktop.org, intel-xe@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org, Daniel Vetter <daniel@ffwll.ch>,
David Airlie <airlied@gmail.com>
Subject: Re: [PATCH] drm/i915: Add missing ; to __assign_str() macros in tracepoint code
Date: Thu, 22 Feb 2024 20:42:59 +0200 [thread overview]
Message-ID: <ZdeVs-rlk4oGEOs7@intel.com> (raw)
In-Reply-To: <20240222133057.2af72a19@gandalf.local.home>
On Thu, Feb 22, 2024 at 01:30:57PM -0500, Steven Rostedt wrote:
> From: "Steven Rostedt (Google)" <rostedt@goodmis.org>
>
> I'm working on improving the __assign_str() and __string() macros to be
> more efficient, and removed some unneeded semicolons. This triggered a bug
> in the build as some of the __assign_str() macros in intel_display_trace
> was missing a terminating semicolon.
>
> Fixes: 2ceea5d88048b ("drm/i915: Print plane name in fbc tracepoints")
> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Do you want me to apply this to drm-intel or do you want to take
it through some other tree? Either way seems fine for this stuff.
> ---
> drivers/gpu/drm/i915/display/intel_display_trace.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_trace.h b/drivers/gpu/drm/i915/display/intel_display_trace.h
> index 99bdb833591c..7862e7cefe02 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_trace.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_trace.h
> @@ -411,7 +411,7 @@ TRACE_EVENT(intel_fbc_activate,
> struct intel_crtc *crtc = intel_crtc_for_pipe(to_i915(plane->base.dev),
> plane->pipe);
> __assign_str(dev, __dev_name_kms(plane));
> - __assign_str(name, plane->base.name)
> + __assign_str(name, plane->base.name);
> __entry->pipe = crtc->pipe;
> __entry->frame = intel_crtc_get_vblank_counter(crtc);
> __entry->scanline = intel_get_crtc_scanline(crtc);
> @@ -438,7 +438,7 @@ TRACE_EVENT(intel_fbc_deactivate,
> struct intel_crtc *crtc = intel_crtc_for_pipe(to_i915(plane->base.dev),
> plane->pipe);
> __assign_str(dev, __dev_name_kms(plane));
> - __assign_str(name, plane->base.name)
> + __assign_str(name, plane->base.name);
> __entry->pipe = crtc->pipe;
> __entry->frame = intel_crtc_get_vblank_counter(crtc);
> __entry->scanline = intel_get_crtc_scanline(crtc);
> @@ -465,7 +465,7 @@ TRACE_EVENT(intel_fbc_nuke,
> struct intel_crtc *crtc = intel_crtc_for_pipe(to_i915(plane->base.dev),
> plane->pipe);
> __assign_str(dev, __dev_name_kms(plane));
> - __assign_str(name, plane->base.name)
> + __assign_str(name, plane->base.name);
> __entry->pipe = crtc->pipe;
> __entry->frame = intel_crtc_get_vblank_counter(crtc);
> __entry->scanline = intel_get_crtc_scanline(crtc);
> --
> 2.43.0
--
Ville Syrjälä
Intel
next prev parent reply other threads:[~2024-02-22 18:43 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-22 18:30 [PATCH] drm/i915: Add missing ; to __assign_str() macros in tracepoint code Steven Rostedt
2024-02-22 18:33 ` ✓ CI.Patch_applied: success for " Patchwork
2024-02-22 18:34 ` ✗ CI.checkpatch: warning " Patchwork
2024-02-22 18:34 ` ✓ CI.KUnit: success " Patchwork
2024-02-22 18:42 ` Ville Syrjälä [this message]
2024-02-22 18:46 ` [PATCH] " Steven Rostedt
2024-02-22 18:43 ` Steven Rostedt
2024-02-22 19:04 ` Rodrigo Vivi
2024-02-22 19:27 ` Steven Rostedt
2024-02-22 18:45 ` ✓ CI.Build: success for " Patchwork
2024-02-22 18:46 ` ✓ CI.Hooks: " Patchwork
2024-02-22 18:47 ` ✗ CI.checksparse: warning " Patchwork
2024-02-22 19:07 ` ✓ CI.BAT: success " Patchwork
2024-02-23 2:35 ` ✗ Fi.CI.CHECKPATCH: warning " Patchwork
2024-02-23 2:49 ` ✓ Fi.CI.BAT: success " Patchwork
2024-02-23 16:56 ` ✓ Fi.CI.IGT: " 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=ZdeVs-rlk4oGEOs7@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=airlied@gmail.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-trace-kernel@vger.kernel.org \
--cc=rostedt@goodmis.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.