mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] tools: fix compile error of freq-step.c
@ 2017-08-16  6:08 Thomas Richter
  2017-08-16 18:27 ` John Stultz
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Richter @ 2017-08-16  6:08 UTC (permalink / raw)
  To: john.stultz, tglx, linux-kernel
  Cc: brueckner, heiko.carstens, schwidefsky, Thomas Richter

The compilation of the file freq-step.c in directory
tools/testing/selftests/timers fails with this error message:

[root@s8360046 timers]# make
gcc -O3 -Wl,-no-as-needed -Wall -DKTEST  -lrt -lpthread -lm  freq-step.c
	  -o freq-step
freq-step.c: In function ‘init_test’:
freq-step.c:234:3: error: too few arguments to function ‘ksft_exit_skip’
   ksft_exit_skip();
   ^~~~~~~~~~~~~~
In file included from freq-step.c:26:0:
../kselftest.h:142:19: note: declared here
 static inline int ksft_exit_skip(const char *msg, ...)
                   ^~~~~~~~~~~~~~
<builtin>: recipe for target 'freq-step' failed
make: *** [freq-step] Error 1
[root@s8360046 timers]#

This is the case for Intel and s390x. I have not tested other
platforms.

Which this patch the compilation succeeds:

[root@s8360046 timers]# make
gcc -O3 -Wl,-no-as-needed -Wall -DKTEST  -lrt -lpthread -lm  freq-step.c   -o freq-step
[root@s8360046 timers]# ./freq-step
CLOCK_MONOTONIC_RAW+CLOCK_MONOTONIC precision: 348 ns		[SKIP]
1..0 # Skipped: [SKIP]
[root@s8360046 timers]#

Signed-off-by: Thomas Richter <tmricht@linux.vnet.ibm.com>
---
 tools/testing/selftests/timers/freq-step.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/timers/freq-step.c b/tools/testing/selftests/timers/freq-step.c
index e8c6183..bda9744 100644
--- a/tools/testing/selftests/timers/freq-step.c
+++ b/tools/testing/selftests/timers/freq-step.c
@@ -231,7 +231,7 @@ static void init_test(void)
 
 	if (precision > MAX_PRECISION) {
 		printf("[SKIP]\n");
-		ksft_exit_skip();
+		ksft_exit_skip("[SKIP]\n");
 	}
 
 	printf("[OK]\n");
-- 
2.9.3

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

* Re: [PATCH] tools: fix compile error of freq-step.c
  2017-08-16  6:08 [PATCH] tools: fix compile error of freq-step.c Thomas Richter
@ 2017-08-16 18:27 ` John Stultz
  2017-08-16 18:49   ` Shuah Khan
  0 siblings, 1 reply; 3+ messages in thread
From: John Stultz @ 2017-08-16 18:27 UTC (permalink / raw)
  To: Thomas Richter
  Cc: Thomas Gleixner, lkml, brueckner, Heiko Carstens,
	Martin Schwidefsky, Shuah Khan

On Tue, Aug 15, 2017 at 11:08 PM, Thomas Richter
<tmricht@linux.vnet.ibm.com> wrote:
> The compilation of the file freq-step.c in directory
> tools/testing/selftests/timers fails with this error message:
>
> [root@s8360046 timers]# make
> gcc -O3 -Wl,-no-as-needed -Wall -DKTEST  -lrt -lpthread -lm  freq-step.c
>           -o freq-step
> freq-step.c: In function ‘init_test’:
> freq-step.c:234:3: error: too few arguments to function ‘ksft_exit_skip’
>    ksft_exit_skip();
>    ^~~~~~~~~~~~~~
> In file included from freq-step.c:26:0:
> ../kselftest.h:142:19: note: declared here
>  static inline int ksft_exit_skip(const char *msg, ...)
>                    ^~~~~~~~~~~~~~
> <builtin>: recipe for target 'freq-step' failed
> make: *** [freq-step] Error 1
> [root@s8360046 timers]#
>
> This is the case for Intel and s390x. I have not tested other
> platforms.
>
> Which this patch the compilation succeeds:

I think Shuah has already submitted a fix for this to Linus.  I
believe it was merged as 622b2fbe625b.

thanks
-john

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

* Re: [PATCH] tools: fix compile error of freq-step.c
  2017-08-16 18:27 ` John Stultz
@ 2017-08-16 18:49   ` Shuah Khan
  0 siblings, 0 replies; 3+ messages in thread
From: Shuah Khan @ 2017-08-16 18:49 UTC (permalink / raw)
  To: John Stultz, Thomas Richter
  Cc: Thomas Gleixner, lkml, brueckner, Heiko Carstens,
	Martin Schwidefsky, Shuah Khan, Shuah Khan

On 08/16/2017 12:27 PM, John Stultz wrote:
> On Tue, Aug 15, 2017 at 11:08 PM, Thomas Richter
> <tmricht@linux.vnet.ibm.com> wrote:
>> The compilation of the file freq-step.c in directory
>> tools/testing/selftests/timers fails with this error message:
>>
>> [root@s8360046 timers]# make
>> gcc -O3 -Wl,-no-as-needed -Wall -DKTEST  -lrt -lpthread -lm  freq-step.c
>>           -o freq-step
>> freq-step.c: In function ‘init_test’:
>> freq-step.c:234:3: error: too few arguments to function ‘ksft_exit_skip’
>>    ksft_exit_skip();
>>    ^~~~~~~~~~~~~~
>> In file included from freq-step.c:26:0:
>> ../kselftest.h:142:19: note: declared here
>>  static inline int ksft_exit_skip(const char *msg, ...)
>>                    ^~~~~~~~~~~~~~
>> <builtin>: recipe for target 'freq-step' failed
>> make: *** [freq-step] Error 1
>> [root@s8360046 timers]#
>>
>> This is the case for Intel and s390x. I have not tested other
>> platforms.
>>
>> Which this patch the compilation succeeds:
> 
> I think Shuah has already submitted a fix for this to Linus.  I
> believe it was merged as 622b2fbe625b.
> 

Yes. It has been merged into mainline yesterday for 4.13-rc6 

thanks,
-- Shuah

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

end of thread, other threads:[~2017-08-16 18:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-16  6:08 [PATCH] tools: fix compile error of freq-step.c Thomas Richter
2017-08-16 18:27 ` John Stultz
2017-08-16 18:49   ` Shuah Khan

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

all inboxes | Powered by JetHome®