All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] drm/msm: match wait_for_completion_timeout return type
@ 2015-04-11 13:10 Nicholas Mc Guire
  2015-04-11 13:10 ` [PATCH 2/3] drm/msm: wait_for_completion_timeout return is never negative Nicholas Mc Guire
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Nicholas Mc Guire @ 2015-04-11 13:10 UTC (permalink / raw)
  To: David Airlie
  Cc: Rob Clark, Mark Brown, Stephen Rothwell, Hai Li, dri-devel,
	linux-kernel, Nicholas Mc Guire

return type of wait_for_completion_timeout is unsigned long not int, this
patch assigns the return value of wait_for_completion_timeout to an
appropriately typed and named variable.

Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
---

This was compile tested with qcom_defconfig +
CONFIG_DRM=m (implies CONFIG_DRM_MSM=m)

Patch is against 4.0-rc7 (localversion-next is -next-20150410)

 drivers/gpu/drm/msm/edp/edp_ctrl.c |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/msm/edp/edp_ctrl.c b/drivers/gpu/drm/msm/edp/edp_ctrl.c
index 0ec5abd..831acd6 100644
--- a/drivers/gpu/drm/msm/edp/edp_ctrl.c
+++ b/drivers/gpu/drm/msm/edp/edp_ctrl.c
@@ -1018,7 +1018,7 @@ static void edp_ctrl_off_worker(struct work_struct *work)
 {
 	struct edp_ctrl *ctrl = container_of(
 				work, struct edp_ctrl, off_work);
-	int ret;
+	unsigned long time_left;
 
 	mutex_lock(&ctrl->dev_mutex);
 
@@ -1030,11 +1030,11 @@ static void edp_ctrl_off_worker(struct work_struct *work)
 	reinit_completion(&ctrl->idle_comp);
 	edp_state_ctrl(ctrl, EDP_STATE_CTRL_PUSH_IDLE);
 
-	ret = wait_for_completion_timeout(&ctrl->idle_comp,
+	time_left = wait_for_completion_timeout(&ctrl->idle_comp,
 						msecs_to_jiffies(500));
-	if (ret <= 0)
-		DBG("%s: idle pattern timedout, %d\n",
-				__func__, ret);
+	if (time_left <= 0)
+		DBG("%s: idle pattern timedout, %lu\n",
+				__func__, time_left);
 
 	edp_state_ctrl(ctrl, 0);
 
-- 
1.7.10.4


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

* [PATCH 2/3] drm/msm: wait_for_completion_timeout return is never negative
  2015-04-11 13:10 [PATCH 1/3] drm/msm: match wait_for_completion_timeout return type Nicholas Mc Guire
@ 2015-04-11 13:10 ` Nicholas Mc Guire
  2015-04-11 13:10 ` [PATCH 3/3] drm/msm: drop redundant debug output Nicholas Mc Guire
  2015-04-13 13:58   ` Thierry Reding
  2 siblings, 0 replies; 6+ messages in thread
From: Nicholas Mc Guire @ 2015-04-11 13:10 UTC (permalink / raw)
  To: David Airlie
  Cc: Rob Clark, Mark Brown, Stephen Rothwell, Hai Li, dri-devel,
	linux-kernel, Nicholas Mc Guire

wait_for_completion_timeout returns >= 0 but never
negative  - so the error check should be against equality
to 0 not <= 0.

Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
---

This was compile tested with qcom_defconfig +
CONFIG_DRM=m (implies CONFIG_DRM_MSM=m)

Patch is against 4.0-rc7 (localversion-next is -next-20150410)

 drivers/gpu/drm/msm/edp/edp_ctrl.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/msm/edp/edp_ctrl.c b/drivers/gpu/drm/msm/edp/edp_ctrl.c
index 831acd6..9ef361c 100644
--- a/drivers/gpu/drm/msm/edp/edp_ctrl.c
+++ b/drivers/gpu/drm/msm/edp/edp_ctrl.c
@@ -1032,7 +1032,7 @@ static void edp_ctrl_off_worker(struct work_struct *work)
 
 	time_left = wait_for_completion_timeout(&ctrl->idle_comp,
 						msecs_to_jiffies(500));
-	if (time_left <= 0)
+	if (!time_left)
 		DBG("%s: idle pattern timedout, %lu\n",
 				__func__, time_left);
 
-- 
1.7.10.4


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

* [PATCH 3/3] drm/msm: drop redundant debug output
  2015-04-11 13:10 [PATCH 1/3] drm/msm: match wait_for_completion_timeout return type Nicholas Mc Guire
  2015-04-11 13:10 ` [PATCH 2/3] drm/msm: wait_for_completion_timeout return is never negative Nicholas Mc Guire
@ 2015-04-11 13:10 ` Nicholas Mc Guire
  2015-04-13 13:58   ` Thierry Reding
  2 siblings, 0 replies; 6+ messages in thread
From: Nicholas Mc Guire @ 2015-04-11 13:10 UTC (permalink / raw)
  To: David Airlie
  Cc: Rob Clark, Mark Brown, Stephen Rothwell, Hai Li, dri-devel,
	linux-kernel, Nicholas Mc Guire

wait_for_completion_timeout returns 0 in case of timeout and never
return < 0 so there is no additional information in printing the
value of time_left here as it will always be 0, thus it can be dropped.

Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
---

This was compile tested with qcom_defconfig +
CONFIG_DRM=m (implies CONFIG_DRM_MSM=m)

Patch is against 4.0-rc7 (localversion-next is -next-20150410)

 drivers/gpu/drm/msm/edp/edp_ctrl.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/msm/edp/edp_ctrl.c b/drivers/gpu/drm/msm/edp/edp_ctrl.c
index 9ef361c..3739e80 100644
--- a/drivers/gpu/drm/msm/edp/edp_ctrl.c
+++ b/drivers/gpu/drm/msm/edp/edp_ctrl.c
@@ -1033,8 +1033,7 @@ static void edp_ctrl_off_worker(struct work_struct *work)
 	time_left = wait_for_completion_timeout(&ctrl->idle_comp,
 						msecs_to_jiffies(500));
 	if (!time_left)
-		DBG("%s: idle pattern timedout, %lu\n",
-				__func__, time_left);
+		DBG("%s: idle pattern timedout\n", __func__);
 
 	edp_state_ctrl(ctrl, 0);
 
-- 
1.7.10.4


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

* Re: [PATCH 1/3] drm/msm: match wait_for_completion_timeout return type
  2015-04-11 13:10 [PATCH 1/3] drm/msm: match wait_for_completion_timeout return type Nicholas Mc Guire
@ 2015-04-13 13:58   ` Thierry Reding
  2015-04-11 13:10 ` [PATCH 3/3] drm/msm: drop redundant debug output Nicholas Mc Guire
  2015-04-13 13:58   ` Thierry Reding
  2 siblings, 0 replies; 6+ messages in thread
From: Thierry Reding @ 2015-04-13 13:58 UTC (permalink / raw)
  To: Nicholas Mc Guire
  Cc: David Airlie, Rob Clark, Mark Brown, Stephen Rothwell, Hai Li,
	dri-devel, linux-kernel

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

On Sat, Apr 11, 2015 at 03:10:36PM +0200, Nicholas Mc Guire wrote:
> return type of wait_for_completion_timeout is unsigned long not int, this
> patch assigns the return value of wait_for_completion_timeout to an
> appropriately typed and named variable.
> 
> Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
> ---
> 
> This was compile tested with qcom_defconfig +
> CONFIG_DRM=m (implies CONFIG_DRM_MSM=m)
> 
> Patch is against 4.0-rc7 (localversion-next is -next-20150410)
> 
>  drivers/gpu/drm/msm/edp/edp_ctrl.c |   10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/gpu/drm/msm/edp/edp_ctrl.c b/drivers/gpu/drm/msm/edp/edp_ctrl.c
> index 0ec5abd..831acd6 100644
> --- a/drivers/gpu/drm/msm/edp/edp_ctrl.c
> +++ b/drivers/gpu/drm/msm/edp/edp_ctrl.c
> @@ -1018,7 +1018,7 @@ static void edp_ctrl_off_worker(struct work_struct *work)
>  {
>  	struct edp_ctrl *ctrl = container_of(
>  				work, struct edp_ctrl, off_work);
> -	int ret;
> +	unsigned long time_left;
>  
>  	mutex_lock(&ctrl->dev_mutex);
>  
> @@ -1030,11 +1030,11 @@ static void edp_ctrl_off_worker(struct work_struct *work)
>  	reinit_completion(&ctrl->idle_comp);
>  	edp_state_ctrl(ctrl, EDP_STATE_CTRL_PUSH_IDLE);
>  
> -	ret = wait_for_completion_timeout(&ctrl->idle_comp,
> +	time_left = wait_for_completion_timeout(&ctrl->idle_comp,
>  						msecs_to_jiffies(500));
> -	if (ret <= 0)
> -		DBG("%s: idle pattern timedout, %d\n",
> -				__func__, ret);
> +	if (time_left <= 0)

Given that time_left is unsigned now, why bother with the "< 0"?

Thierry

[-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH 1/3] drm/msm: match wait_for_completion_timeout return type
@ 2015-04-13 13:58   ` Thierry Reding
  0 siblings, 0 replies; 6+ messages in thread
From: Thierry Reding @ 2015-04-13 13:58 UTC (permalink / raw)
  To: Nicholas Mc Guire; +Cc: Stephen Rothwell, linux-kernel, dri-devel, Mark Brown


[-- Attachment #1.1: Type: text/plain, Size: 1611 bytes --]

On Sat, Apr 11, 2015 at 03:10:36PM +0200, Nicholas Mc Guire wrote:
> return type of wait_for_completion_timeout is unsigned long not int, this
> patch assigns the return value of wait_for_completion_timeout to an
> appropriately typed and named variable.
> 
> Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
> ---
> 
> This was compile tested with qcom_defconfig +
> CONFIG_DRM=m (implies CONFIG_DRM_MSM=m)
> 
> Patch is against 4.0-rc7 (localversion-next is -next-20150410)
> 
>  drivers/gpu/drm/msm/edp/edp_ctrl.c |   10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/gpu/drm/msm/edp/edp_ctrl.c b/drivers/gpu/drm/msm/edp/edp_ctrl.c
> index 0ec5abd..831acd6 100644
> --- a/drivers/gpu/drm/msm/edp/edp_ctrl.c
> +++ b/drivers/gpu/drm/msm/edp/edp_ctrl.c
> @@ -1018,7 +1018,7 @@ static void edp_ctrl_off_worker(struct work_struct *work)
>  {
>  	struct edp_ctrl *ctrl = container_of(
>  				work, struct edp_ctrl, off_work);
> -	int ret;
> +	unsigned long time_left;
>  
>  	mutex_lock(&ctrl->dev_mutex);
>  
> @@ -1030,11 +1030,11 @@ static void edp_ctrl_off_worker(struct work_struct *work)
>  	reinit_completion(&ctrl->idle_comp);
>  	edp_state_ctrl(ctrl, EDP_STATE_CTRL_PUSH_IDLE);
>  
> -	ret = wait_for_completion_timeout(&ctrl->idle_comp,
> +	time_left = wait_for_completion_timeout(&ctrl->idle_comp,
>  						msecs_to_jiffies(500));
> -	if (ret <= 0)
> -		DBG("%s: idle pattern timedout, %d\n",
> -				__func__, ret);
> +	if (time_left <= 0)

Given that time_left is unsigned now, why bother with the "< 0"?

Thierry

[-- Attachment #1.2: Type: application/pgp-signature, Size: 819 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH 1/3] drm/msm: match wait_for_completion_timeout return type
  2015-04-13 13:58   ` Thierry Reding
  (?)
@ 2015-04-16  7:17   ` Nicholas Mc Guire
  -1 siblings, 0 replies; 6+ messages in thread
From: Nicholas Mc Guire @ 2015-04-16  7:17 UTC (permalink / raw)
  To: Thierry Reding
  Cc: Nicholas Mc Guire, David Airlie, Rob Clark, Mark Brown,
	Stephen Rothwell, Hai Li, dri-devel, linux-kernel

On Mon, 13 Apr 2015, Thierry Reding wrote:

> On Sat, Apr 11, 2015 at 03:10:36PM +0200, Nicholas Mc Guire wrote:
> > return type of wait_for_completion_timeout is unsigned long not int, this
> > patch assigns the return value of wait_for_completion_timeout to an
> > appropriately typed and named variable.
> > 
> > Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
> > ---
> > 
> > This was compile tested with qcom_defconfig +
> > CONFIG_DRM=m (implies CONFIG_DRM_MSM=m)
> > 
> > Patch is against 4.0-rc7 (localversion-next is -next-20150410)
> > 
> >  drivers/gpu/drm/msm/edp/edp_ctrl.c |   10 +++++-----
> >  1 file changed, 5 insertions(+), 5 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/msm/edp/edp_ctrl.c b/drivers/gpu/drm/msm/edp/edp_ctrl.c
> > index 0ec5abd..831acd6 100644
> > --- a/drivers/gpu/drm/msm/edp/edp_ctrl.c
> > +++ b/drivers/gpu/drm/msm/edp/edp_ctrl.c
> > @@ -1018,7 +1018,7 @@ static void edp_ctrl_off_worker(struct work_struct *work)
> >  {
> >  	struct edp_ctrl *ctrl = container_of(
> >  				work, struct edp_ctrl, off_work);
> > -	int ret;
> > +	unsigned long time_left;
> >  
> >  	mutex_lock(&ctrl->dev_mutex);
> >  
> > @@ -1030,11 +1030,11 @@ static void edp_ctrl_off_worker(struct work_struct *work)
> >  	reinit_completion(&ctrl->idle_comp);
> >  	edp_state_ctrl(ctrl, EDP_STATE_CTRL_PUSH_IDLE);
> >  
> > -	ret = wait_for_completion_timeout(&ctrl->idle_comp,
> > +	time_left = wait_for_completion_timeout(&ctrl->idle_comp,
> >  						msecs_to_jiffies(500));
> > -	if (ret <= 0)
> > -		DBG("%s: idle pattern timedout, %d\n",
> > -				__func__, ret);
> > +	if (time_left <= 0)
> 
> Given that time_left is unsigned now, why bother with the "< 0"?
> 
Thats in the second patch - I was ask not do do more than one thing in one
patch - so 1/3 fixed the type/name, 2/3 the return check and 3/3 the DBG.

thx!
hofrat


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

end of thread, other threads:[~2015-04-16  7:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-11 13:10 [PATCH 1/3] drm/msm: match wait_for_completion_timeout return type Nicholas Mc Guire
2015-04-11 13:10 ` [PATCH 2/3] drm/msm: wait_for_completion_timeout return is never negative Nicholas Mc Guire
2015-04-11 13:10 ` [PATCH 3/3] drm/msm: drop redundant debug output Nicholas Mc Guire
2015-04-13 13:58 ` [PATCH 1/3] drm/msm: match wait_for_completion_timeout return type Thierry Reding
2015-04-13 13:58   ` Thierry Reding
2015-04-16  7:17   ` Nicholas Mc Guire

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.