public inbox for linux-next@vger.kernel.org
 help / color / mirror / Atom feed
* Fw: [PATCH] drm: build error when magic sysrq isn't enabled
@ 2010-03-31  6:21 Stephen Rothwell
  2010-03-31 16:53 ` Randy Dunlap
  0 siblings, 1 reply; 3+ messages in thread
From: Stephen Rothwell @ 2010-03-31  6:21 UTC (permalink / raw)
  To: Dave Airlie; +Cc: Changli Gao, linux-next

Hi Dave,

One for you?

Begin forwarded message:

Date: Wed, 31 Mar 2010 12:18:00 +0800
From: Changli Gao <xiaosuo@gmail.com>
To: linux-next@vger.kernel.org
Cc: xiaosuo <xiaosuo@gmail.com>
Subject: [PATCH] drm: build error when magic sysrq isn't enabled


drm build error when magic sysrq isn't enabled

sysrq_drm_fb_helper_restore_op is only valid when magic sysrq is
enabled, but it is used whenever magic sysrq is enabled or not.

Signed-off-by: Changli Gao <xiaosuo@gmail.com>
----
drivers/gpu/drm/drm_fb_helper.c | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c
index 85cdf05..0e5b4f6 100644
--- a/drivers/gpu/drm/drm_fb_helper.c
+++ b/drivers/gpu/drm/drm_fb_helper.c
@@ -913,7 +913,9 @@ int drm_fb_helper_single_fb_probe(struct drm_device *dev,
 		printk(KERN_INFO "registered panic notifier\n");
 		atomic_notifier_chain_register(&panic_notifier_list,
 					       &paniced);
+#ifdef CONFIG_MAGIC_SYSRQ
 		register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
+#endif
 	}
 	list_add(&fb_helper->kernel_fb_list, &kernel_fb_helper_list);
 	return 0;
@@ -927,7 +929,9 @@ void drm_fb_helper_free(struct drm_fb_helper *helper)
 		printk(KERN_INFO "unregistered panic notifier\n");
 		atomic_notifier_chain_unregister(&panic_notifier_list,
 						 &paniced);
+#ifdef CONFIG_MAGIC_SYSRQ
 		unregister_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
+#endif
 	}
 	drm_fb_helper_crtc_free(helper);
 	fb_dealloc_cmap(&helper->fb->fbdev->cmap);


-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: Fw: [PATCH] drm: build error when magic sysrq isn't enabled
  2010-03-31  6:21 Fw: [PATCH] drm: build error when magic sysrq isn't enabled Stephen Rothwell
@ 2010-03-31 16:53 ` Randy Dunlap
  2010-03-31 20:58   ` Dave Airlie
  0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2010-03-31 16:53 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: Dave Airlie, Changli Gao, linux-next

On Wed, 31 Mar 2010 17:21:57 +1100 Stephen Rothwell wrote:

> Hi Dave,
> 
> One for you?

Did this patch not work or was it not applied/tested?
http://lkml.org/lkml/2010/3/25/315

Also 2 other SYSRQ patches that day:

http://lkml.org/lkml/2010/3/25/314
http://lkml.org/lkml/2010/3/25/316


> Begin forwarded message:
> 
> Date: Wed, 31 Mar 2010 12:18:00 +0800
> From: Changli Gao <xiaosuo@gmail.com>
> To: linux-next@vger.kernel.org
> Cc: xiaosuo <xiaosuo@gmail.com>
> Subject: [PATCH] drm: build error when magic sysrq isn't enabled
> 
> 
> drm build error when magic sysrq isn't enabled
> 
> sysrq_drm_fb_helper_restore_op is only valid when magic sysrq is
> enabled, but it is used whenever magic sysrq is enabled or not.
> 
> Signed-off-by: Changli Gao <xiaosuo@gmail.com>
> ----
> drivers/gpu/drm/drm_fb_helper.c | 4 ++++
> 1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c
> index 85cdf05..0e5b4f6 100644
> --- a/drivers/gpu/drm/drm_fb_helper.c
> +++ b/drivers/gpu/drm/drm_fb_helper.c
> @@ -913,7 +913,9 @@ int drm_fb_helper_single_fb_probe(struct drm_device *dev,
>  		printk(KERN_INFO "registered panic notifier\n");
>  		atomic_notifier_chain_register(&panic_notifier_list,
>  					       &paniced);
> +#ifdef CONFIG_MAGIC_SYSRQ
>  		register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
> +#endif
>  	}
>  	list_add(&fb_helper->kernel_fb_list, &kernel_fb_helper_list);
>  	return 0;
> @@ -927,7 +929,9 @@ void drm_fb_helper_free(struct drm_fb_helper *helper)
>  		printk(KERN_INFO "unregistered panic notifier\n");
>  		atomic_notifier_chain_unregister(&panic_notifier_list,
>  						 &paniced);
> +#ifdef CONFIG_MAGIC_SYSRQ
>  		unregister_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
> +#endif
>  	}
>  	drm_fb_helper_crtc_free(helper);
>  	fb_dealloc_cmap(&helper->fb->fbdev->cmap);
> 
> 
> -- 


---
~Randy

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Fw: [PATCH] drm: build error when magic sysrq isn't enabled
  2010-03-31 16:53 ` Randy Dunlap
@ 2010-03-31 20:58   ` Dave Airlie
  0 siblings, 0 replies; 3+ messages in thread
From: Dave Airlie @ 2010-03-31 20:58 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: Stephen Rothwell, Changli Gao, linux-next


Its already in my tree for Linus, just Linus isn't pulling.

Dave.

-- 
David Airlie, Software Engineer
http://www.skynet.ie/~airlied / airlied at skynet.ie
Linux kernel - DRI, VAX / pam_smb / ILUG


On Wed, 31 Mar 2010, Randy Dunlap wrote:

> On Wed, 31 Mar 2010 17:21:57 +1100 Stephen Rothwell wrote:
> 
> > Hi Dave,
> > 
> > One for you?
> 
> Did this patch not work or was it not applied/tested?
> http://lkml.org/lkml/2010/3/25/315
> 
> Also 2 other SYSRQ patches that day:
> 
> http://lkml.org/lkml/2010/3/25/314
> http://lkml.org/lkml/2010/3/25/316
> 
> 
> > Begin forwarded message:
> > 
> > Date: Wed, 31 Mar 2010 12:18:00 +0800
> > From: Changli Gao <xiaosuo@gmail.com>
> > To: linux-next@vger.kernel.org
> > Cc: xiaosuo <xiaosuo@gmail.com>
> > Subject: [PATCH] drm: build error when magic sysrq isn't enabled
> > 
> > 
> > drm build error when magic sysrq isn't enabled
> > 
> > sysrq_drm_fb_helper_restore_op is only valid when magic sysrq is
> > enabled, but it is used whenever magic sysrq is enabled or not.
> > 
> > Signed-off-by: Changli Gao <xiaosuo@gmail.com>
> > ----
> > drivers/gpu/drm/drm_fb_helper.c | 4 ++++
> > 1 file changed, 4 insertions(+)
> > 
> > diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c
> > index 85cdf05..0e5b4f6 100644
> > --- a/drivers/gpu/drm/drm_fb_helper.c
> > +++ b/drivers/gpu/drm/drm_fb_helper.c
> > @@ -913,7 +913,9 @@ int drm_fb_helper_single_fb_probe(struct drm_device *dev,
> >  		printk(KERN_INFO "registered panic notifier\n");
> >  		atomic_notifier_chain_register(&panic_notifier_list,
> >  					       &paniced);
> > +#ifdef CONFIG_MAGIC_SYSRQ
> >  		register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
> > +#endif
> >  	}
> >  	list_add(&fb_helper->kernel_fb_list, &kernel_fb_helper_list);
> >  	return 0;
> > @@ -927,7 +929,9 @@ void drm_fb_helper_free(struct drm_fb_helper *helper)
> >  		printk(KERN_INFO "unregistered panic notifier\n");
> >  		atomic_notifier_chain_unregister(&panic_notifier_list,
> >  						 &paniced);
> > +#ifdef CONFIG_MAGIC_SYSRQ
> >  		unregister_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
> > +#endif
> >  	}
> >  	drm_fb_helper_crtc_free(helper);
> >  	fb_dealloc_cmap(&helper->fb->fbdev->cmap);
> > 
> > 
> > -- 
> 
> 
> ---
> ~Randy
> 
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-03-31 20:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-31  6:21 Fw: [PATCH] drm: build error when magic sysrq isn't enabled Stephen Rothwell
2010-03-31 16:53 ` Randy Dunlap
2010-03-31 20:58   ` Dave Airlie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox