From: Sid Boyce <sboyce-QgLWrMLu8clzjhtm8Ag3mw@public.gmane.org>
To: Ilia Mirkin <imirkin-FrUbXkNCsVf2fBVCVOL8/A@public.gmane.org>
Cc: "nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org"
<nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org>,
opensuse factory list
<opensuse-factory-stAJ6ESoqRxg9hUCZPvPmw@public.gmane.org>,
LKML Mailing List
<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: [PATCH] Fix hang problem with GeForce GT 560 Ti and nouveau in 3.13-rc
Date: Thu, 02 Jan 2014 14:58:31 +0000 [thread overview]
Message-ID: <52C57E97.1050602@blueyonder.co.uk> (raw)
In-Reply-To: <CAKb7UvgiYn9Wy=EsrHWsoGH7Zj2=-8n=qunyzHTLKnSW3RL=iQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 239 bytes --]
--
Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot
Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support
Senior Staff Specialist, Cricket Coach
Microsoft Windows Free Zone - Linux used for all Computing Tasks
[-- Attachment #2: GF114_2.diff --]
[-- Type: text/x-patch, Size: 1443 bytes --]
This patch stops a console hang with VGA compatible controller: NVIDIA Corporation GF114 [GeForce GTX 560 Ti] (rev a1)
3.13-rc defines NVDEV_SUBDEV_MC as nvc3_mc_oclass, it needs to be defined as nvc0_mc_oclass
Signed off by: Sid Boyce (sboyce-QgLWrMLu8clzjhtm8Ag3mw@public.gmane.org)
Tested by: Sid Boyce (sboyce-QgLWrMLu8clzjhtm8Ag3mw@public.gmane.org)
---
drivers/gpu/drm/nouveau/core/engine/device/nvc0.c 1 -+
1 file changed, 1 insertion(+), 1 deletion(-)
INDEX: linux/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c
=========================================================================
diff -up a/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c b/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c
--- a/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c 2013-11-23 13:03:23.797604441 +0000
+++ b/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c 2014-01-02 02:13:32.445643092 +0000
@@ -161,7 +161,7 @@ nvc0_identify(struct nouveau_device *dev
device->oclass[NVDEV_SUBDEV_THERM ] = &nva3_therm_oclass;
device->oclass[NVDEV_SUBDEV_MXM ] = &nv50_mxm_oclass;
device->oclass[NVDEV_SUBDEV_DEVINIT] = &nvc0_devinit_oclass;
- device->oclass[NVDEV_SUBDEV_MC ] = nvc3_mc_oclass;
+ device->oclass[NVDEV_SUBDEV_MC ] = nvc0_mc_oclass;
device->oclass[NVDEV_SUBDEV_BUS ] = nvc0_bus_oclass;
device->oclass[NVDEV_SUBDEV_TIMER ] = &nv04_timer_oclass;
device->oclass[NVDEV_SUBDEV_FB ] = nvc0_fb_oclass;
[-- Attachment #3: Type: text/plain, Size: 181 bytes --]
_______________________________________________
Nouveau mailing list
Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
http://lists.freedesktop.org/mailman/listinfo/nouveau
WARNING: multiple messages have this Message-ID (diff)
From: Sid Boyce <sboyce@blueyonder.co.uk>
To: Ilia Mirkin <imirkin@alum.mit.edu>
Cc: LKML Mailing List <linux-kernel@vger.kernel.org>,
opensuse factory list <opensuse-factory@opensuse.org>,
"nouveau@lists.freedesktop.org" <nouveau@lists.freedesktop.org>
Subject: [PATCH] Fix hang problem with GeForce GT 560 Ti and nouveau in 3.13-rc
Date: Thu, 02 Jan 2014 14:58:31 +0000 [thread overview]
Message-ID: <52C57E97.1050602@blueyonder.co.uk> (raw)
In-Reply-To: <CAKb7UvgiYn9Wy=EsrHWsoGH7Zj2=-8n=qunyzHTLKnSW3RL=iQ@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 239 bytes --]
--
Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot
Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support
Senior Staff Specialist, Cricket Coach
Microsoft Windows Free Zone - Linux used for all Computing Tasks
[-- Attachment #2: GF114_2.diff --]
[-- Type: text/x-patch, Size: 1397 bytes --]
This patch stops a console hang with VGA compatible controller: NVIDIA Corporation GF114 [GeForce GTX 560 Ti] (rev a1)
3.13-rc defines NVDEV_SUBDEV_MC as nvc3_mc_oclass, it needs to be defined as nvc0_mc_oclass
Signed off by: Sid Boyce (sboyce@blueyonder.co.uk)
Tested by: Sid Boyce (sboyce@blueyonder.co.uk)
---
drivers/gpu/drm/nouveau/core/engine/device/nvc0.c 1 -+
1 file changed, 1 insertion(+), 1 deletion(-)
INDEX: linux/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c
=========================================================================
diff -up a/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c b/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c
--- a/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c 2013-11-23 13:03:23.797604441 +0000
+++ b/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c 2014-01-02 02:13:32.445643092 +0000
@@ -161,7 +161,7 @@ nvc0_identify(struct nouveau_device *dev
device->oclass[NVDEV_SUBDEV_THERM ] = &nva3_therm_oclass;
device->oclass[NVDEV_SUBDEV_MXM ] = &nv50_mxm_oclass;
device->oclass[NVDEV_SUBDEV_DEVINIT] = &nvc0_devinit_oclass;
- device->oclass[NVDEV_SUBDEV_MC ] = nvc3_mc_oclass;
+ device->oclass[NVDEV_SUBDEV_MC ] = nvc0_mc_oclass;
device->oclass[NVDEV_SUBDEV_BUS ] = nvc0_bus_oclass;
device->oclass[NVDEV_SUBDEV_TIMER ] = &nv04_timer_oclass;
device->oclass[NVDEV_SUBDEV_FB ] = nvc0_fb_oclass;
next prev parent reply other threads:[~2014-01-02 14:58 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-31 10:14 Possible 3.13-rc nouveau regression with GT 560 Ti Sid Boyce
[not found] ` <52C29918.4060102-QgLWrMLu8clzjhtm8Ag3mw@public.gmane.org>
2013-12-31 10:36 ` Ilia Mirkin
2013-12-31 10:36 ` Ilia Mirkin
2014-01-01 0:41 ` Sid Boyce
2014-01-01 0:41 ` Sid Boyce
[not found] ` <52C3644C.9090809-QgLWrMLu8clzjhtm8Ag3mw@public.gmane.org>
2014-01-01 0:55 ` Ilia Mirkin
2014-01-01 0:55 ` Ilia Mirkin
2014-01-01 1:44 ` Sid Boyce
2014-01-01 14:04 ` Sid Boyce
[not found] ` <52C42079.6060604-QgLWrMLu8clzjhtm8Ag3mw@public.gmane.org>
2014-01-01 18:46 ` Ilia Mirkin
2014-01-01 18:46 ` Ilia Mirkin
[not found] ` <CAKb7Uvj97SgHp1b11_MMt1UR-NUpQ_2LuGhwjyk_a7_VLqN+KQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-01-02 2:36 ` Sid Boyce
2014-01-02 2:36 ` Sid Boyce
[not found] ` <52C4D099.9040507-QgLWrMLu8clzjhtm8Ag3mw@public.gmane.org>
2014-01-02 2:40 ` Ilia Mirkin
2014-01-02 2:40 ` Ilia Mirkin
[not found] ` <CAKb7UvgiYn9Wy=EsrHWsoGH7Zj2=-8n=qunyzHTLKnSW3RL=iQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-01-02 2:59 ` Sid Boyce
2014-01-02 2:59 ` Sid Boyce
2014-01-02 14:58 ` Sid Boyce [this message]
2014-01-02 14:58 ` [PATCH] Fix hang problem with GeForce GT 560 Ti and nouveau in 3.13-rc Sid Boyce
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=52C57E97.1050602@blueyonder.co.uk \
--to=sboyce-qglwrmlu8clzjhtm8ag3mw@public.gmane.org \
--cc=imirkin-FrUbXkNCsVf2fBVCVOL8/A@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
--cc=opensuse-factory-stAJ6ESoqRxg9hUCZPvPmw@public.gmane.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.