This is a note to let you know that I've just added the patch titled drm/i915: dump UTS_RELEASE into the error_state to the 3.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: drm-i915-dump-uts_release-into-the-error_state.patch and it can be found in the queue-3.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From f3825cc9679a5b7126c3d2bdf448b5453980d568 Mon Sep 17 00:00:00 2001 From: Daniel Vetter <daniel.vetter@xxxxxxxx> Date: Wed, 23 Jan 2013 16:16:35 +0100 Subject: drm/i915: dump UTS_RELEASE into the error_state From: Daniel Vetter <daniel.vetter@xxxxxxxx> commit 4518f611ba21ba165ea3714055938a8984a44ff9 upstream. Useful for statistics or on overflowing bug reports to keep things all lined up. Reviewed-by: Chris Wilson <chris@xxxxxxxxxxxxxxxxxx> Signed-off-by: Daniel Vetter <daniel.vetter@xxxxxxxx> [bwh: Backported to 3.2: adjust context] Signed-off-by: Ben Hutchings <ben@xxxxxxxxxxxxxxx> Cc: Weng Meiling <wengmeiling.weng@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/gpu/drm/i915/i915_debugfs.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -30,6 +30,7 @@ #include <linux/debugfs.h> #include <linux/slab.h> #include <linux/export.h> +#include <generated/utsrelease.h> #include "drmP.h" #include "drm.h" #include "intel_drv.h" @@ -750,6 +751,7 @@ static int i915_error_state(struct seq_f seq_printf(m, "Time: %ld s %ld us\n", error->time.tv_sec, error->time.tv_usec); + seq_printf(m, "Kernel: " UTS_RELEASE); seq_printf(m, "PCI ID: 0x%04x\n", dev->pci_device); seq_printf(m, "EIR: 0x%08x\n", error->eir); seq_printf(m, "PGTBL_ER: 0x%08x\n", error->pgtbl_er); Patches currently in stable-queue which might be from daniel.vetter@xxxxxxxx are queue-3.4/drm-i915-only-increment-the-user-pin-count-after-successfully-pinning-the-bo.patch queue-3.4/drm-i915-add-missing-n-to-uts_release-in-the-error_state.patch queue-3.4/drm-i915-sdvo-clean-up-connectors-on-intel_sdvo_init-failures.patch queue-3.4/drm-i915-panel-invert-brightness-via-parameter.patch queue-3.4/drm-i915-dump-uts_release-into-the-error_state.patch queue-3.4/drm-i915-close-race-between-processing-unpin-task-and-queueing-the-flip.patch queue-3.4/i915-ensure-that-vga-plane-is-disabled.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html