All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH]  NULL pointer might be used in ips_monitor()
@ 2010-09-16  5:06 minskey guo
  2010-09-16 12:53 ` Jesse Barnes
  0 siblings, 1 reply; 3+ messages in thread
From: minskey guo @ 2010-09-16  5:06 UTC (permalink / raw)
  To: linux-kernel, jbarnes; +Cc: chaohong.guo, minskey guo

From: minskey guo <chaohong_guo@linux.intel.com>

 The patch is to enable creating ips_adjust thread before ips_monitor
 executes because the latter will kthread_stop() or wake up the former
 via ips->adjust pointer. Otherwise, it is possible that ips->adjust is
 NULL when kthread_stop() or wake_up_process() is called in ips_monitor()

 Besides, some trival changes:
   a) correct an define of register bits;
   b) old_cpu_power sample should not be divided by 65535
   c) handling on error path in ips_get_i915_syms()

Signed-off-by: minskey guo <chaohong.guo@intel.com>
---
 drivers/platform/x86/intel_ips.c |   28 ++++++++++++++++------------
 1 files changed, 16 insertions(+), 12 deletions(-)

diff --git a/drivers/platform/x86/intel_ips.c b/drivers/platform/x86/intel_ips.c
index 9024480..cb59ebd 100644
--- a/drivers/platform/x86/intel_ips.c
+++ b/drivers/platform/x86/intel_ips.c
@@ -230,7 +230,7 @@
 #define THM_TC2		0xac
 #define THM_DTV		0xb0
 #define THM_ITV		0xd8
-#define   ITV_ME_SEQNO_MASK 0x000f0000 /* ME should update every ~200ms */
+#define   ITV_ME_SEQNO_MASK 0x00ff0000 /* ME should update every ~200ms */
 #define   ITV_ME_SEQNO_SHIFT (16)
 #define   ITV_MCH_TEMP_MASK 0x0000ff00
 #define   ITV_MCH_TEMP_SHIFT (8)
@@ -940,7 +940,6 @@ static int ips_monitor(void *data)
 		kfree(mch_samples);
 		kfree(cpu_samples);
 		kfree(mchp_samples);
-		kthread_stop(ips->adjust);
 		return -ENOMEM;
 	}
 
@@ -948,7 +947,7 @@ static int ips_monitor(void *data)
 		ITV_ME_SEQNO_SHIFT;
 	seqno_timestamp = get_jiffies_64();
 
-	old_cpu_power = thm_readl(THM_CEC) / 65535;
+	old_cpu_power = thm_readl(THM_CEC);
 	schedule_timeout_interruptible(msecs_to_jiffies(IPS_SAMPLE_PERIOD));
 
 	/* Collect an initial average */
@@ -1390,7 +1389,7 @@ static bool ips_get_i915_syms(struct ips_driver *ips)
 	return true;
 
 out_put_busy:
-	symbol_put(i915_gpu_turbo_disable);
+	symbol_put(i915_gpu_busy);
 out_put_lower:
 	symbol_put(i915_gpu_lower);
 out_put_raise:
@@ -1535,19 +1534,24 @@ static int ips_probe(struct pci_dev *dev, const struct pci_device_id *id)
 	ips_enable_cpu_turbo(ips);
 	ips->cpu_turbo_enabled = true;
 
-	/* Set up the work queue and monitor/adjust threads */
-	ips->monitor = kthread_run(ips_monitor, ips, "ips-monitor");
-	if (IS_ERR(ips->monitor)) {
+	/* Create thermal adjust thread */
+	ips->adjust = kthread_create(ips_adjust, ips, "ips-adjust");
+	if (IS_ERR(ips->adjust)) {
 		dev_err(&dev->dev,
-			"failed to create thermal monitor thread, aborting\n");
+			"failed to create thermal adjust thread, aborting\n");
 		ret = -ENOMEM;
 		goto error_free_irq;
+
 	}
 
-	ips->adjust = kthread_create(ips_adjust, ips, "ips-adjust");
-	if (IS_ERR(ips->adjust)) {
+	/*
+	 * Set up the work queue and monitor thread. The monitor thread
+	 * will wake up ips_adjust thread.
+	 */
+	ips->monitor = kthread_run(ips_monitor, ips, "ips-monitor");
+	if (IS_ERR(ips->monitor)) {
 		dev_err(&dev->dev,
-			"failed to create thermal adjust thread, aborting\n");
+			"failed to create thermal monitor thread, aborting\n");
 		ret = -ENOMEM;
 		goto error_thread_cleanup;
 	}
@@ -1566,7 +1570,7 @@ static int ips_probe(struct pci_dev *dev, const struct pci_device_id *id)
 	return ret;
 
 error_thread_cleanup:
-	kthread_stop(ips->monitor);
+	kthread_stop(ips->adjust);
 error_free_irq:
 	free_irq(ips->dev->irq, ips);
 error_unmap:
-- 
1.7.1


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

* Re: [PATCH]  NULL pointer might be used in ips_monitor()
  2010-09-16  5:06 [PATCH] NULL pointer might be used in ips_monitor() minskey guo
@ 2010-09-16 12:53 ` Jesse Barnes
  2010-09-17  6:08   ` Minskey Guo
  0 siblings, 1 reply; 3+ messages in thread
From: Jesse Barnes @ 2010-09-16 12:53 UTC (permalink / raw)
  To: minskey guo; +Cc: linux-kernel, chaohong.guo, minskey guo

On Thu, 16 Sep 2010 13:06:28 +0800
minskey guo <chaohong.guo@linux.intel.com> wrote:

> From: minskey guo <chaohong_guo@linux.intel.com>
> 
>  The patch is to enable creating ips_adjust thread before ips_monitor
>  executes because the latter will kthread_stop() or wake up the former
>  via ips->adjust pointer. Otherwise, it is possible that ips->adjust
> is NULL when kthread_stop() or wake_up_process() is called in
> ips_monitor()
> 
>  Besides, some trival changes:
>    a) correct an define of register bits;
>    b) old_cpu_power sample should not be divided by 65535
>    c) handling on error path in ips_get_i915_syms()

Excellent, thanks for the fixes.  Can you split up the patch into
individual fixes and send them over to the platform driver list and
Matthew Garrett?  You can add my acked-by on them.

Thanks,
-- 
Jesse Barnes, Intel Open Source Technology Center

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

* Re: [PATCH]  NULL pointer might be used in ips_monitor()
  2010-09-16 12:53 ` Jesse Barnes
@ 2010-09-17  6:08   ` Minskey Guo
  0 siblings, 0 replies; 3+ messages in thread
From: Minskey Guo @ 2010-09-17  6:08 UTC (permalink / raw)
  To: Jesse Barnes; +Cc: minskey guo, linux-kernel, chaohong.guo

On 09/16/2010 08:53 PM, Jesse Barnes wrote:
> On Thu, 16 Sep 2010 13:06:28 +0800
> minskey guo<chaohong.guo@linux.intel.com>  wrote:
>
>    
>> From: minskey guo<chaohong_guo@linux.intel.com>
>>
>>   The patch is to enable creating ips_adjust thread before ips_monitor
>>   executes because the latter will kthread_stop() or wake up the former
>>   via ips->adjust pointer. Otherwise, it is possible that ips->adjust
>> is NULL when kthread_stop() or wake_up_process() is called in
>> ips_monitor()
>>
>>   Besides, some trival changes:
>>     a) correct an define of register bits;
>>     b) old_cpu_power sample should not be divided by 65535
>>     c) handling on error path in ips_get_i915_syms()
>>      
> Excellent, thanks for the fixes.  Can you split up the patch into
> individual fixes and send them over to the platform driver list and
> Matthew Garrett?  You can add my acked-by on them.
>
> Thanks,
>    


Ok.  I split it into 4 patches,  and sent to platform driver list:
platform-driver-x86@vger.kernel.org.


-minskey

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

end of thread, other threads:[~2010-09-17  6:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-16  5:06 [PATCH] NULL pointer might be used in ips_monitor() minskey guo
2010-09-16 12:53 ` Jesse Barnes
2010-09-17  6:08   ` Minskey Guo

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.