All of lore.kernel.org
 help / color / mirror / Atom feed
From: Carsten Emde <C.Emde@osadl.org>
To: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Cc: linux-rt-users <linux-rt-users@vger.kernel.org>,
	LKML <linux-kernel@vger.kernel.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	rostedt@goodmis.org
Subject: Re: [ANNOUNCE] 3.8.9-rt4
Date: Sat, 27 Apr 2013 23:44:54 +0200	[thread overview]
Message-ID: <517C46D6.7030601@osadl.org> (raw)
In-Reply-To: <20130426222001.GH20927@linutronix.de>

Hi Sebastian,

> I'm pleased to announce the 3.8.9-rt4 release. [..]
This patch is needed to prevent the compiler error
drivers/gpu/drm/i915/i915_gem_execbuffer.c:1072:27:
error: 'seqno' undeclared (first use in this function)

Signed-off-by: Carsten Emde <C.Emde@osadl.org>

Index: linux-3.8.4-rt2/drivers/gpu/drm/i915/i915_gem_execbuffer.c
===================================================================
--- linux-3.8.4-rt2.orig/drivers/gpu/drm/i915/i915_gem_execbuffer.c
+++ linux-3.8.4-rt2/drivers/gpu/drm/i915/i915_gem_execbuffer.c
@@ -814,6 +814,7 @@ i915_gem_do_execbuffer(struct drm_device
  	struct intel_ring_buffer *ring;
  	u32 ctx_id = i915_execbuffer2_get_context_id(*args);
  	u32 exec_start, exec_len;
+	u32 seqno;
  	u32 mask;
  	u32 flags;
  	int ret, mode, i;
@@ -1068,7 +1069,8 @@ i915_gem_do_execbuffer(struct drm_device
  			goto err;
  	}

-	trace_i915_gem_ring_dispatch(ring, intel_ring_get_seqno(ring), flags);
+	seqno = intel_ring_get_seqno(ring);
+	trace_i915_gem_ring_dispatch(ring, seqno, flags);
  	i915_trace_irq_get(ring, seqno);

  	i915_gem_execbuffer_move_to_active(&objects, ring);


  reply	other threads:[~2013-04-27 21:52 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-26 22:20 [ANNOUNCE] 3.8.9-rt4 Sebastian Andrzej Siewior
2013-04-27 21:44 ` Carsten Emde [this message]
2013-04-29 19:37   ` Sebastian Andrzej Siewior

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=517C46D6.7030601@osadl.org \
    --to=c.emde@osadl.org \
    --cc=bigeasy@linutronix.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rt-users@vger.kernel.org \
    --cc=rostedt@goodmis.org \
    --cc=tglx@linutronix.de \
    /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.