public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] x86, ptrace: void dopiness
@ 2008-09-19 12:52 Markus Metzger
  2008-09-19 13:17 ` linux-os (Dick Johnson)
  2008-09-22 11:50 ` Ingo Molnar
  0 siblings, 2 replies; 7+ messages in thread
From: Markus Metzger @ 2008-09-19 12:52 UTC (permalink / raw)
  To: mingo; +Cc: markus.t.metzger, markus.t.metzger, linux-kernel, akpm

Remove void cast to explicitly ignore the return value.


Signed-off-by: markus.t.metzger@intel.com

---
Index: gits.x86/arch/x86/kernel/ptrace.c
===================================================================
--- gits.x86.orig/arch/x86/kernel/ptrace.c	2008-06-30 13:21:07.%N +0200
+++ gits.x86/arch/x86/kernel/ptrace.c	2008-09-19 13:53:02.%N +0200
@@ -738,7 +738,7 @@
 		unsigned int sig = 0;
 
 		/* we ignore the error in case we were not tracing child */
-		(void)ds_release_bts(child);
+		ds_release_bts(child);
 
 		if (cfg.flags & PTRACE_BTS_O_SIGNAL) {
 			if (!cfg.signal)
@@ -947,7 +947,7 @@
 	clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
 #endif
 #ifdef CONFIG_X86_PTRACE_BTS
-	(void)ds_release_bts(child);
+	ds_release_bts(child);
 
 	child->thread.debugctlmsr &= ~bts_cfg.debugctl_mask;
 	if (!child->thread.debugctlmsr)
---------------------------------------------------------------------
Intel GmbH
Dornacher Strasse 1
85622 Feldkirchen/Muenchen Germany
Sitz der Gesellschaft: Feldkirchen bei Muenchen
Geschaeftsfuehrer: Douglas Lusk, Peter Gleissner, Hannes Schwaderer
Registergericht: Muenchen HRB 47456 Ust.-IdNr.
VAT Registration No.: DE129385895
Citibank Frankfurt (BLZ 502 109 00) 600119052

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.


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

* Re: [patch] x86, ptrace: void dopiness
  2008-09-19 12:52 [patch] x86, ptrace: void dopiness Markus Metzger
@ 2008-09-19 13:17 ` linux-os (Dick Johnson)
  2008-09-22 11:50 ` Ingo Molnar
  1 sibling, 0 replies; 7+ messages in thread
From: linux-os (Dick Johnson) @ 2008-09-19 13:17 UTC (permalink / raw)
  To: Markus Metzger; +Cc: mingo, markus.t.metzger, linux-kernel, akpm

On Fri, 19 Sep 2008, Markus Metzger wrote:

> Remove void cast to explicitly ignore the return value.
>
>
> Signed-off-by: markus.t.metzger@intel.com
>
> ---
> Index: gits.x86/arch/x86/kernel/ptrace.c
> ===================================================================
> --- gits.x86.orig/arch/x86/kernel/ptrace.c	2008-06-30 13:21:07.%N +0200
> +++ gits.x86/arch/x86/kernel/ptrace.c	2008-09-19 13:53:02.%N +0200
> @@ -738,7 +738,7 @@
> 		unsigned int sig = 0;
>
> 		/* we ignore the error in case we were not tracing child */
> -		(void)ds_release_bts(child);
> +		ds_release_bts(child);
>
> 		if (cfg.flags & PTRACE_BTS_O_SIGNAL) {
> 			if (!cfg.signal)
> @@ -947,7 +947,7 @@
> 	clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
> #endif
> #ifdef CONFIG_X86_PTRACE_BTS
> -	(void)ds_release_bts(child);
> +	ds_release_bts(child);
>
> 	child->thread.debugctlmsr &= ~bts_cfg.debugctl_mask;
> 	if (!child->thread.debugctlmsr)
> ---------------------------------------------------------------------
> Intel GmbH
> Dornacher Strasse 1
> 85622 Feldkirchen/Muenchen Germany
> Sitz der Gesellschaft: Feldkirchen bei Muenchen
> Geschaeftsfuehrer: Douglas Lusk, Peter Gleissner, Hannes Schwaderer
> Registergericht: Muenchen HRB 47456 Ust.-IdNr.
> VAT Registration No.: DE129385895
> Citibank Frankfurt (BLZ 502 109 00) 600119052

I don't agree. Casting the return value to void, since it
takes extra steps on the part of the writer, means that the
writer is deliberately ignoring the return value because
it has no objective use in the code.

Just letting unused return-values be ignored means that
the writer either wanted to ignore it or simply forgot
about it. The cast is supposed to remove doubt. Certain
user-mode functions that are obviously used for effect
like printf(), are exempt.

That said, putting a space between the cast and the
function name helps in the use of some text-scanning
tools and therefore improves maintainability.


Cheers,
Dick Johnson
Penguin : Linux version 2.6.25.17 on an i686 machine (4786.70 BogoMips).
My book : http://www.AbominableFirebug.com/
_


****************************************************************
The information transmitted in this message is confidential and may be privileged. Any review, retransmission, dissemination, or other use of this information by persons or entities other than the intended recipient is prohibited. If you are not the intended recipient, please notify Analogic Corporation immediately - by replying to this message or by sending an email to DeliveryErrors@analogic.com - and destroy all copies of this information, including any attachments, without reading or disclosing them.

Thank you.

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

* Re: [patch] x86, ptrace: void dopiness
  2008-09-19 12:52 [patch] x86, ptrace: void dopiness Markus Metzger
  2008-09-19 13:17 ` linux-os (Dick Johnson)
@ 2008-09-22 11:50 ` Ingo Molnar
  2008-09-22 12:00   ` Metzger, Markus T
  1 sibling, 1 reply; 7+ messages in thread
From: Ingo Molnar @ 2008-09-22 11:50 UTC (permalink / raw)
  To: Markus Metzger; +Cc: markus.t.metzger, linux-kernel, akpm, Roland McGrath


* Markus Metzger <markus.t.metzger@intel.com> wrote:

> +++ gits.x86/arch/x86/kernel/ptrace.c	2008-09-19 13:53:02.%N +0200
> @@ -738,7 +738,7 @@
>  		unsigned int sig = 0;
>  
>  		/* we ignore the error in case we were not tracing child */
> -		(void)ds_release_bts(child);
> +		ds_release_bts(child);

hm, here the cast is OK because we actually ignore the return value.

> @@ -947,7 +947,7 @@
>  	clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
>  #endif
>  #ifdef CONFIG_X86_PTRACE_BTS
> -	(void)ds_release_bts(child);
> +	ds_release_bts(child);

is it right/intentional here?

	Ingo

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

* RE: [patch] x86, ptrace: void dopiness
  2008-09-22 11:50 ` Ingo Molnar
@ 2008-09-22 12:00   ` Metzger, Markus T
  2008-09-22 12:07     ` Ingo Molnar
  0 siblings, 1 reply; 7+ messages in thread
From: Metzger, Markus T @ 2008-09-22 12:00 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: markus.t.metzger, linux-kernel, akpm, Roland McGrath

>-----Original Message-----
>From: Ingo Molnar [mailto:mingo@elte.hu] 
>Sent: Montag, 22. September 2008 13:51
>To: Metzger, Markus T
>Cc: markus.t.metzger@gmail.com; linux-kernel@vger.kernel.org; 
>akpm@linux-foundation.org; Roland McGrath
>Subject: Re: [patch] x86, ptrace: void dopiness
>
>
>* Markus Metzger <markus.t.metzger@intel.com> wrote:
>
>> +++ gits.x86/arch/x86/kernel/ptrace.c	2008-09-19 
>13:53:02.%N +0200
>> @@ -738,7 +738,7 @@
>>  		unsigned int sig = 0;
>>  
>>  		/* we ignore the error in case we were not 
>tracing child */
>> -		(void)ds_release_bts(child);
>> +		ds_release_bts(child);
>
>hm, here the cast is OK because we actually ignore the return value.
>
>> @@ -947,7 +947,7 @@
>>  	clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
>>  #endif
>>  #ifdef CONFIG_X86_PTRACE_BTS
>> -	(void)ds_release_bts(child);
>> +	ds_release_bts(child);
>
>is it right/intentional here?

The void-cast is intentional in both cases.

I thought it a question of style, i.e. that we don't want void casts
just like we want NULL instead of 0.

regards,
markus.

---------------------------------------------------------------------
Intel GmbH
Dornacher Strasse 1
85622 Feldkirchen/Muenchen Germany
Sitz der Gesellschaft: Feldkirchen bei Muenchen
Geschaeftsfuehrer: Douglas Lusk, Peter Gleissner, Hannes Schwaderer
Registergericht: Muenchen HRB 47456 Ust.-IdNr.
VAT Registration No.: DE129385895
Citibank Frankfurt (BLZ 502 109 00) 600119052

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.


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

* Re: [patch] x86, ptrace: void dopiness
  2008-09-22 12:00   ` Metzger, Markus T
@ 2008-09-22 12:07     ` Ingo Molnar
  2008-09-23 11:30       ` Metzger, Markus T
  0 siblings, 1 reply; 7+ messages in thread
From: Ingo Molnar @ 2008-09-22 12:07 UTC (permalink / raw)
  To: Metzger, Markus T
  Cc: markus.t.metzger, linux-kernel, akpm, Roland McGrath,
	linux-os (Dick Johnson)


* Metzger, Markus T <markus.t.metzger@intel.com> wrote:

> >-----Original Message-----
> >From: Ingo Molnar [mailto:mingo@elte.hu] 
> >Sent: Montag, 22. September 2008 13:51
> >To: Metzger, Markus T
> >Cc: markus.t.metzger@gmail.com; linux-kernel@vger.kernel.org; 
> >akpm@linux-foundation.org; Roland McGrath
> >Subject: Re: [patch] x86, ptrace: void dopiness
> >
> >
> >* Markus Metzger <markus.t.metzger@intel.com> wrote:
> >
> >> +++ gits.x86/arch/x86/kernel/ptrace.c	2008-09-19 
> >13:53:02.%N +0200
> >> @@ -738,7 +738,7 @@
> >>  		unsigned int sig = 0;
> >>  
> >>  		/* we ignore the error in case we were not 
> >tracing child */
> >> -		(void)ds_release_bts(child);
> >> +		ds_release_bts(child);
> >
> >hm, here the cast is OK because we actually ignore the return value.
> >
> >> @@ -947,7 +947,7 @@
> >>  	clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
> >>  #endif
> >>  #ifdef CONFIG_X86_PTRACE_BTS
> >> -	(void)ds_release_bts(child);
> >> +	ds_release_bts(child);
> >
> >is it right/intentional here?
> 
> The void-cast is intentional in both cases.
> 
> I thought it a question of style, i.e. that we don't want void casts 
> just like we want NULL instead of 0.

ok.

But you could mark ds_release_bts() as a __must_check function, in that 
case the (void) has functional aspects as well: the kernel build will 
complain if a return value is ignored unintentionally.

So i think the code might be fine as-is after all :-/

	Ingo

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

* RE: [patch] x86, ptrace: void dopiness
  2008-09-22 12:07     ` Ingo Molnar
@ 2008-09-23 11:30       ` Metzger, Markus T
  2008-09-23 11:48         ` Ingo Molnar
  0 siblings, 1 reply; 7+ messages in thread
From: Metzger, Markus T @ 2008-09-23 11:30 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: markus.t.metzger, linux-kernel, akpm, Roland McGrath,
	linux-os (Dick Johnson)

>-----Original Message-----
>From: Ingo Molnar [mailto:mingo@elte.hu] 
>Sent: Montag, 22. September 2008 14:08
>To: Metzger, Markus T

>> The void-cast is intentional in both cases.
>> 
>> I thought it a question of style, i.e. that we don't want void casts 
>> just like we want NULL instead of 0.
>
>ok.
>
>But you could mark ds_release_bts() as a __must_check 
>function, in that 
>case the (void) has functional aspects as well: the kernel build will 
>complain if a return value is ignored unintentionally.

Wouldn't every non-void function be __must_check?

regards,
markus.
---------------------------------------------------------------------
Intel GmbH
Dornacher Strasse 1
85622 Feldkirchen/Muenchen Germany
Sitz der Gesellschaft: Feldkirchen bei Muenchen
Geschaeftsfuehrer: Douglas Lusk, Peter Gleissner, Hannes Schwaderer
Registergericht: Muenchen HRB 47456 Ust.-IdNr.
VAT Registration No.: DE129385895
Citibank Frankfurt (BLZ 502 109 00) 600119052

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.


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

* Re: [patch] x86, ptrace: void dopiness
  2008-09-23 11:30       ` Metzger, Markus T
@ 2008-09-23 11:48         ` Ingo Molnar
  0 siblings, 0 replies; 7+ messages in thread
From: Ingo Molnar @ 2008-09-23 11:48 UTC (permalink / raw)
  To: Metzger, Markus T
  Cc: markus.t.metzger, linux-kernel, akpm, Roland McGrath,
	linux-os (Dick Johnson)


* Metzger, Markus T <markus.t.metzger@intel.com> wrote:

> >-----Original Message-----
> >From: Ingo Molnar [mailto:mingo@elte.hu] 
> >Sent: Montag, 22. September 2008 14:08
> >To: Metzger, Markus T
> 
> >> The void-cast is intentional in both cases.
> >> 
> >> I thought it a question of style, i.e. that we don't want void casts 
> >> just like we want NULL instead of 0.
> >
> >ok.
> >
> >But you could mark ds_release_bts() as a __must_check 
> >function, in that 
> >case the (void) has functional aspects as well: the kernel build will 
> >complain if a return value is ignored unintentionally.
> 
> Wouldn't every non-void function be __must_check?

no, only those which we mark so explicitly.

	Ingo

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

end of thread, other threads:[~2008-09-23 11:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-19 12:52 [patch] x86, ptrace: void dopiness Markus Metzger
2008-09-19 13:17 ` linux-os (Dick Johnson)
2008-09-22 11:50 ` Ingo Molnar
2008-09-22 12:00   ` Metzger, Markus T
2008-09-22 12:07     ` Ingo Molnar
2008-09-23 11:30       ` Metzger, Markus T
2008-09-23 11:48         ` Ingo Molnar

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