linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH 4/4] msi-laptop: Add i8042 filter to sync sw state with BIOS when function key pressed
@ 2010-05-13 11:53 Joey Lee
  2010-05-13 22:54 ` Greg KH
  0 siblings, 1 reply; 14+ messages in thread
From: Joey Lee @ 2010-05-13 11:53 UTC (permalink / raw)
  To: dmitry.torokhov
  Cc: mzxreary, greg, rpurdie, mjg, gregkh, linux-kernel,
	platform-driver-x86

Hi Dmitry, 

Thank's for your review.

於 四,2010-05-13 於 00:52 -0700,Dmitry Torokhov 提到:
> On Wed, May 12, 2010 at 11:56:47AM -0700, Greg KH wrote:
> >  static int __init msi_init(void)
> > @@ -819,6 +875,7 @@ static void __exit msi_cleanup(void)
> >  	platform_driver_unregister(&msipf_driver);
> >  	backlight_device_unregister(msibl_device);
> >  
> > +	i8042_remove_filter(msi_laptop_i8042_filter);
> 
> You also need cancel_delayed_work_sync() here. Sorry for not noticing
> this before.
> 

Yes, you are right, need add cancel_delayed_work_sync().

Joey Lee


^ permalink raw reply	[flat|nested] 14+ messages in thread
* Re: [PATCH 4/4] msi-laptop: Add i8042 filter to sync sw state with BIOS when function key pressed
@ 2010-05-14  0:37 Joey Lee
  0 siblings, 0 replies; 14+ messages in thread
From: Joey Lee @ 2010-05-14  0:37 UTC (permalink / raw)
  To: gregkh
  Cc: mzxreary, dmitry.torokhov, greg, rpurdie, mjg, linux-kernel,
	platform-driver-x86

Hi Greg, 

於 四,2010-05-13 於 15:54 -0700,Greg KH 提到:
> On Thu, May 13, 2010 at 05:53:04AM -0600, Joey Lee wrote:
> > Hi Dmitry, 
> > 
> > Thank's for your review.
> > 
> > 於 四,2010-05-13 於 00:52 -0700,Dmitry Torokhov 提到:
> > > On Wed, May 12, 2010 at 11:56:47AM -0700, Greg KH wrote:
> > > >  static int __init msi_init(void)
> > > > @@ -819,6 +875,7 @@ static void __exit msi_cleanup(void)
> > > >  	platform_driver_unregister(&msipf_driver);
> > > >  	backlight_device_unregister(msibl_device);
> > > >  
> > > > +	i8042_remove_filter(msi_laptop_i8042_filter);
> > > 
> > > You also need cancel_delayed_work_sync() here. Sorry for not noticing
> > > this before.
> > > 
> > 
> > Yes, you are right, need add cancel_delayed_work_sync().
> 
> Want to make up an additional patch to add on top of this that does it?
> 

OK! I am doing it, and will submit another patch to fix this issue.


Thank's
Joey Lee

> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/


^ permalink raw reply	[flat|nested] 14+ messages in thread
* Re: [PATCH 4/4] msi-laptop: Add i8042 filter to sync sw state with BIOS when function key pressed
@ 2010-05-14 22:49 Joey Lee
  2010-05-20 13:32 ` Matthew Garrett
  0 siblings, 1 reply; 14+ messages in thread
From: Joey Lee @ 2010-05-14 22:49 UTC (permalink / raw)
  To: dmitry.torokhov, gregkh
  Cc: mzxreary, greg, rpurdie, mjg, linux-kernel, platform-driver-x86

[-- Attachment #1: Type: text/plain, Size: 1099 bytes --]

Hi all, 

Thank's for Dmitry and Garg's review and point our my driver's problem.

Please kindly review my attached additional patch for clean up all
objects used by MSI scm model when driver initial fail or exit.




Thank's
Joey Lee

於 四,2010-05-13 於 15:54 -0700,Greg KH 提到:
> On Thu, May 13, 2010 at 05:53:04AM -0600, Joey Lee wrote:
> > Hi Dmitry, 
> > 
> > Thank's for your review.
> > 
> > 於 四,2010-05-13 於 00:52 -0700,Dmitry Torokhov 提到:
> > > On Wed, May 12, 2010 at 11:56:47AM -0700, Greg KH wrote:
> > > >  static int __init msi_init(void)
> > > > @@ -819,6 +875,7 @@ static void __exit msi_cleanup(void)
> > > >  	platform_driver_unregister(&msipf_driver);
> > > >  	backlight_device_unregister(msibl_device);
> > > >  
> > > > +	i8042_remove_filter(msi_laptop_i8042_filter);
> > > 
> > > You also need cancel_delayed_work_sync() here. Sorry for not noticing
> > > this before.
> > > 
> > 
> > Yes, you are right, need add cancel_delayed_work_sync().
> 
> Want to make up an additional patch to add on top of this that does it?
> 
> thanks,
> 
> greg k-h


[-- Attachment #2: 0011-Clean-up-all-objects-used-by-scm-model-when-driver-i.patch --]
[-- Type: text/plain, Size: 1670 bytes --]

>From 6dd1bf2049496e932e681534c0e1f0ffc0b7a47d Mon Sep 17 00:00:00 2001
From: Lee, Chun-Yi <jlee@novell.com>
Date: Sat, 15 May 2010 06:18:54 +0800
Subject: [PATCH] Clean up all objects used by scm model when driver initial fail or exit

Clean up i8042 filter, rfkill and cancel delayed work when msi-laptop driver initial fail or exit on MSI scm model.

Signed-off-by: Lee, Chun-Yi <jlee@novell.com>
---
 drivers/platform/x86/msi-laptop.c |   13 ++++++++++---
 1 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/drivers/platform/x86/msi-laptop.c b/drivers/platform/x86/msi-laptop.c
index cd2c15e..e536232 100644
--- a/drivers/platform/x86/msi-laptop.c
+++ b/drivers/platform/x86/msi-laptop.c
@@ -811,6 +811,11 @@ static int __init msi_init(void)
 
 fail_platform_device2:
 
+	if (load_scm_model) {
+		i8042_remove_filter(msi_laptop_i8042_filter);
+		cancel_delayed_work_sync(&msi_rfkill_work);
+		rfkill_cleanup();
+	}
 	platform_device_del(msipf_device);
 
 fail_platform_device1:
@@ -830,15 +835,17 @@ fail_backlight:
 
 static void __exit msi_cleanup(void)
 {
+	if (load_scm_model) {
+		i8042_remove_filter(msi_laptop_i8042_filter);
+		cancel_delayed_work_sync(&msi_rfkill_work);
+		rfkill_cleanup();
+	}
 
 	sysfs_remove_group(&msipf_device->dev.kobj, &msipf_attribute_group);
 	platform_device_unregister(msipf_device);
 	platform_driver_unregister(&msipf_driver);
 	backlight_device_unregister(msibl_device);
 
-	i8042_remove_filter(msi_laptop_i8042_filter);
-	rfkill_cleanup();
-
 	/* Enable automatic brightness control again */
 	if (auto_brightness != 2)
 		set_auto_brightness(1);
-- 
1.6.0.2


^ permalink raw reply related	[flat|nested] 14+ messages in thread
* Re: [PATCH 4/4] msi-laptop: Add i8042 filter to sync sw state with BIOS when function key pressed
@ 2010-05-20 13:39 Joey Lee
  0 siblings, 0 replies; 14+ messages in thread
From: Joey Lee @ 2010-05-20 13:39 UTC (permalink / raw)
  To: mjg59
  Cc: mzxreary, dmitry.torokhov, greg, rpurdie, gregkh, linux-kernel,
	platform-driver-x86

Hi Mattew, 

於 四,2010-05-20 於 14:32 +0100,Matthew Garrett 提到:
> Hi Joey,
> 
> This patch didn't apply cleanly, but I've fixed it up by hand. I've also 
> applied the rest of the patchset.
> 

Thank's for your help! :-)


Joey Lee


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

end of thread, other threads:[~2010-05-20 13:39 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20100512141149.GB20564@kroah.com>
2010-05-12 16:58 ` [PATCH 1/4] msi-laptop: Add N014 N051 dmi information to scm models table Greg Kroah-Hartman
2010-05-12 16:58 ` [PATCH 2/4] msi-laptop: Add MSI CR620 notebook " Greg Kroah-Hartman
2010-05-12 16:58 ` [PATCH 3/4] msi-laptop: Set rfkill init state when msi-laptop intiial Greg Kroah-Hartman
2010-05-12 16:58 ` [PATCH 4/4] msi-laptop: Add i8042 filter to sync sw state with BIOS when function key pressed Greg Kroah-Hartman
2010-05-12 17:33   ` Dmitry Torokhov
2010-05-12 18:55     ` Greg KH
2010-05-12 18:56     ` Greg KH
2010-05-13  7:52       ` Dmitry Torokhov
2010-05-13 11:53 Joey Lee
2010-05-13 22:54 ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2010-05-14  0:37 Joey Lee
2010-05-14 22:49 Joey Lee
2010-05-20 13:32 ` Matthew Garrett
2010-05-20 13:39 Joey Lee

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).