All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] selftests: fix compile error for sync
@ 2017-11-05 10:08 Lei Yang
  2017-11-06 23:35 ` Shuah Khan
  0 siblings, 1 reply; 6+ messages in thread
From: Lei Yang @ 2017-11-05 10:08 UTC (permalink / raw)
  To: lei.yang, shuahkh, linux-kselftest, linux-kernel

I got below error message when building sync test:

make[1]: Entering directory `tools/testing/selftests/sync'
gcc -c sync.c -o tools/testing/selftests/sync/sync.o
sync.c:42:29: fatal error: linux/sync_file.h: No such file or directory
 #include <linux/sync_file.h>

obviously, CFLAGS and LDFLAGS are not used when comipling.

Signed-off-by: Lei Yang <Lei.Yang@windriver.com>
---
 tools/testing/selftests/sync/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/testing/selftests/sync/Makefile b/tools/testing/selftests/sync/Makefile
index 8e04d0a..46cbcc3 100644
--- a/tools/testing/selftests/sync/Makefile
+++ b/tools/testing/selftests/sync/Makefile
@@ -29,9 +29,9 @@ $(TEST_CUSTOM_PROGS): $(TESTS) $(OBJS)
 	$(CC) -o $(TEST_CUSTOM_PROGS) $(OBJS) $(TESTS) $(CFLAGS) $(LDFLAGS)
 
 $(OBJS): $(OUTPUT)/%.o: %.c
-	$(CC) -c $^ -o $@
+	$(CC) -c $^ -o $@ $(CFLAGS) $(LDFLAGS)
 
 $(TESTS): $(OUTPUT)/%.o: %.c
-	$(CC) -c $^ -o $@
+	$(CC) -c $^ -o $@ $(CFLAGS) $(LDFLAGS)
 
 EXTRA_CLEAN := $(TEST_CUSTOM_PROGS) $(OBJS) $(TESTS)
-- 
1.9.1

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

* Re: [PATCH] selftests: fix compile error for sync
  2017-11-05 10:08 [PATCH] selftests: fix compile error for sync Lei Yang
@ 2017-11-06 23:35 ` Shuah Khan
  2017-11-07  1:14   ` lei yang
  0 siblings, 1 reply; 6+ messages in thread
From: Shuah Khan @ 2017-11-06 23:35 UTC (permalink / raw)
  To: Lei Yang; +Cc: linux-kselftest, linux-kernel, Shuah Khan, Shuah Khan

On 11/05/2017 03:08 AM, Lei Yang wrote:
> I got below error message when building sync test:
> 
> make[1]: Entering directory `tools/testing/selftests/sync'
> gcc -c sync.c -o tools/testing/selftests/sync/sync.o
> sync.c:42:29: fatal error: linux/sync_file.h: No such file or directory
>  #include <linux/sync_file.h>
> 
> obviously, CFLAGS and LDFLAGS are not used when comipling.
> 
> Signed-off-by: Lei Yang <Lei.Yang@windriver.com>
> ---
>  tools/testing/selftests/sync/Makefile | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/testing/selftests/sync/Makefile b/tools/testing/selftests/sync/Makefile
> index 8e04d0a..46cbcc3 100644
> --- a/tools/testing/selftests/sync/Makefile
> +++ b/tools/testing/selftests/sync/Makefile
> @@ -29,9 +29,9 @@ $(TEST_CUSTOM_PROGS): $(TESTS) $(OBJS)
>  	$(CC) -o $(TEST_CUSTOM_PROGS) $(OBJS) $(TESTS) $(CFLAGS) $(LDFLAGS)
>  
>  $(OBJS): $(OUTPUT)/%.o: %.c
> -	$(CC) -c $^ -o $@
> +	$(CC) -c $^ -o $@ $(CFLAGS) $(LDFLAGS)
>  
>  $(TESTS): $(OUTPUT)/%.o: %.c
> -	$(CC) -c $^ -o $@
> +	$(CC) -c $^ -o $@ $(CFLAGS) $(LDFLAGS)
>  
>  EXTRA_CLEAN := $(TEST_CUSTOM_PROGS) $(OBJS) $(TESTS)
> 

How are you building the test? I am not seeing the error on linux-4.14.0-rc8

thanks,
-- Shuah

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

* Re: [PATCH] selftests: fix compile error for sync
  2017-11-06 23:35 ` Shuah Khan
@ 2017-11-07  1:14   ` lei yang
  2017-11-07 22:54       ` shuahkh
  0 siblings, 1 reply; 6+ messages in thread
From: lei yang @ 2017-11-07  1:14 UTC (permalink / raw)
  To: Shuah Khan; +Cc: linux-kselftest, linux-kernel, Shuah Khan



On 2017年11月07日 07:35, Shuah Khan wrote:
> On 11/05/2017 03:08 AM, Lei Yang wrote:
>> I got below error message when building sync test:
>>
>> make[1]: Entering directory `tools/testing/selftests/sync'
>> gcc -c sync.c -o tools/testing/selftests/sync/sync.o
>> sync.c:42:29: fatal error: linux/sync_file.h: No such file or directory
>>   #include <linux/sync_file.h>
>>
>> obviously, CFLAGS and LDFLAGS are not used when comipling.
>>
>> Signed-off-by: Lei Yang <Lei.Yang@windriver.com>
>> ---
>>   tools/testing/selftests/sync/Makefile | 4 ++--
>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/tools/testing/selftests/sync/Makefile b/tools/testing/selftests/sync/Makefile
>> index 8e04d0a..46cbcc3 100644
>> --- a/tools/testing/selftests/sync/Makefile
>> +++ b/tools/testing/selftests/sync/Makefile
>> @@ -29,9 +29,9 @@ $(TEST_CUSTOM_PROGS): $(TESTS) $(OBJS)
>>   	$(CC) -o $(TEST_CUSTOM_PROGS) $(OBJS) $(TESTS) $(CFLAGS) $(LDFLAGS)
>>   
>>   $(OBJS): $(OUTPUT)/%.o: %.c
>> -	$(CC) -c $^ -o $@
>> +	$(CC) -c $^ -o $@ $(CFLAGS) $(LDFLAGS)
>>   
>>   $(TESTS): $(OUTPUT)/%.o: %.c
>> -	$(CC) -c $^ -o $@
>> +	$(CC) -c $^ -o $@ $(CFLAGS) $(LDFLAGS)
>>   
>>   EXTRA_CLEAN := $(TEST_CUSTOM_PROGS) $(OBJS) $(TESTS)
>>
> How are you building the test? I am not seeing the error on linux-4.14.0-rc8

make -C tools/testing/selftests

Lei


> thanks,
> -- Shuah
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] selftests: fix compile error for sync
  2017-11-07  1:14   ` lei yang
  2017-11-07 22:54       ` shuahkh
@ 2017-11-07 22:54       ` shuahkh
  0 siblings, 0 replies; 6+ messages in thread
From: Shuah Khan @ 2017-11-07 22:54 UTC (permalink / raw)
  To: lei yang; +Cc: linux-kselftest, linux-kernel, Shuah Khan, Shuah Khan

On 11/06/2017 06:14 PM, lei yang wrote:
> 
> 
> On 2017年11月07日 07:35, Shuah Khan wrote:
>> On 11/05/2017 03:08 AM, Lei Yang wrote:
>>> I got below error message when building sync test:
>>>
>>> make[1]: Entering directory `tools/testing/selftests/sync'
>>> gcc -c sync.c -o tools/testing/selftests/sync/sync.o
>>> sync.c:42:29: fatal error: linux/sync_file.h: No such file or directory
>>>   #include <linux/sync_file.h>
>>>
>>> obviously, CFLAGS and LDFLAGS are not used when comipling.
>>>
>>> Signed-off-by: Lei Yang <Lei.Yang@windriver.com>
>>> ---
>>>   tools/testing/selftests/sync/Makefile | 4 ++--
>>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/tools/testing/selftests/sync/Makefile b/tools/testing/selftests/sync/Makefile
>>> index 8e04d0a..46cbcc3 100644
>>> --- a/tools/testing/selftests/sync/Makefile
>>> +++ b/tools/testing/selftests/sync/Makefile
>>> @@ -29,9 +29,9 @@ $(TEST_CUSTOM_PROGS): $(TESTS) $(OBJS)
>>>       $(CC) -o $(TEST_CUSTOM_PROGS) $(OBJS) $(TESTS) $(CFLAGS) $(LDFLAGS)
>>>     $(OBJS): $(OUTPUT)/%.o: %.c
>>> -    $(CC) -c $^ -o $@
>>> +    $(CC) -c $^ -o $@ $(CFLAGS) $(LDFLAGS)
>>>     $(TESTS): $(OUTPUT)/%.o: %.c
>>> -    $(CC) -c $^ -o $@
>>> +    $(CC) -c $^ -o $@ $(CFLAGS) $(LDFLAGS)
>>>     EXTRA_CLEAN := $(TEST_CUSTOM_PROGS) $(OBJS) $(TESTS)
>>>
>> How are you building the test? I am not seeing the error on linux-4.14.0-rc8
> 
> make -C tools/testing/selftests
> 
> Lei
> 
> 

Based on the information in your other emails, looks like you are
testing these patches on 

$ cat /proc/version
Linux version 3.16.0-30-generic (buildd@kissel) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #40~14.04.1-Ubuntu SMP Thu Jan 15 17:43:14 UTC 2015

That explains why you aren't finding sync_file.h header. This test isn't applicable
to Linux 3.16. In any case, I can't take patches that aren't tested on the latest
kernel release. 3.16 is very old.

thanks,
-- Shuah

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

* [Linux-kselftest-mirror] [PATCH] selftests: fix compile error for sync
@ 2017-11-07 22:54       ` shuahkh
  0 siblings, 0 replies; 6+ messages in thread
From: shuahkh @ 2017-11-07 22:54 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2167 bytes --]

On 11/06/2017 06:14 PM, lei yang wrote:
> 
> 
> On 2017年11月07日 07:35, Shuah Khan wrote:
>> On 11/05/2017 03:08 AM, Lei Yang wrote:
>>> I got below error message when building sync test:
>>>
>>> make[1]: Entering directory `tools/testing/selftests/sync'
>>> gcc -c sync.c -o tools/testing/selftests/sync/sync.o
>>> sync.c:42:29: fatal error: linux/sync_file.h: No such file or directory
>>>   #include <linux/sync_file.h>
>>>
>>> obviously, CFLAGS and LDFLAGS are not used when comipling.
>>>
>>> Signed-off-by: Lei Yang <Lei.Yang at windriver.com>
>>> ---
>>>   tools/testing/selftests/sync/Makefile | 4 ++--
>>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/tools/testing/selftests/sync/Makefile b/tools/testing/selftests/sync/Makefile
>>> index 8e04d0a..46cbcc3 100644
>>> --- a/tools/testing/selftests/sync/Makefile
>>> +++ b/tools/testing/selftests/sync/Makefile
>>> @@ -29,9 +29,9 @@ $(TEST_CUSTOM_PROGS): $(TESTS) $(OBJS)
>>>       $(CC) -o $(TEST_CUSTOM_PROGS) $(OBJS) $(TESTS) $(CFLAGS) $(LDFLAGS)
>>>     $(OBJS): $(OUTPUT)/%.o: %.c
>>> -    $(CC) -c $^ -o $@
>>> +    $(CC) -c $^ -o $@ $(CFLAGS) $(LDFLAGS)
>>>     $(TESTS): $(OUTPUT)/%.o: %.c
>>> -    $(CC) -c $^ -o $@
>>> +    $(CC) -c $^ -o $@ $(CFLAGS) $(LDFLAGS)
>>>     EXTRA_CLEAN := $(TEST_CUSTOM_PROGS) $(OBJS) $(TESTS)
>>>
>> How are you building the test? I am not seeing the error on linux-4.14.0-rc8
> 
> make -C tools/testing/selftests
> 
> Lei
> 
> 

Based on the information in your other emails, looks like you are
testing these patches on 

$ cat /proc/version
Linux version 3.16.0-30-generic (buildd at kissel) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #40~14.04.1-Ubuntu SMP Thu Jan 15 17:43:14 UTC 2015

That explains why you aren't finding sync_file.h header. This test isn't applicable
to Linux 3.16. In any case, I can't take patches that aren't tested on the latest
kernel release. 3.16 is very old.

thanks,
-- Shuah
--
To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [Linux-kselftest-mirror] [PATCH] selftests: fix compile error for sync
@ 2017-11-07 22:54       ` shuahkh
  0 siblings, 0 replies; 6+ messages in thread
From: Shuah Khan @ 2017-11-07 22:54 UTC (permalink / raw)


On 11/06/2017 06:14 PM, lei yang wrote:
> 
> 
> On 2017年11月07日 07:35, Shuah Khan wrote:
>> On 11/05/2017 03:08 AM, Lei Yang wrote:
>>> I got below error message when building sync test:
>>>
>>> make[1]: Entering directory `tools/testing/selftests/sync'
>>> gcc -c sync.c -o tools/testing/selftests/sync/sync.o
>>> sync.c:42:29: fatal error: linux/sync_file.h: No such file or directory
>>>   #include <linux/sync_file.h>
>>>
>>> obviously, CFLAGS and LDFLAGS are not used when comipling.
>>>
>>> Signed-off-by: Lei Yang <Lei.Yang at windriver.com>
>>> ---
>>>   tools/testing/selftests/sync/Makefile | 4 ++--
>>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/tools/testing/selftests/sync/Makefile b/tools/testing/selftests/sync/Makefile
>>> index 8e04d0a..46cbcc3 100644
>>> --- a/tools/testing/selftests/sync/Makefile
>>> +++ b/tools/testing/selftests/sync/Makefile
>>> @@ -29,9 +29,9 @@ $(TEST_CUSTOM_PROGS): $(TESTS) $(OBJS)
>>>       $(CC) -o $(TEST_CUSTOM_PROGS) $(OBJS) $(TESTS) $(CFLAGS) $(LDFLAGS)
>>>     $(OBJS): $(OUTPUT)/%.o: %.c
>>> -    $(CC) -c $^ -o $@
>>> +    $(CC) -c $^ -o $@ $(CFLAGS) $(LDFLAGS)
>>>     $(TESTS): $(OUTPUT)/%.o: %.c
>>> -    $(CC) -c $^ -o $@
>>> +    $(CC) -c $^ -o $@ $(CFLAGS) $(LDFLAGS)
>>>     EXTRA_CLEAN := $(TEST_CUSTOM_PROGS) $(OBJS) $(TESTS)
>>>
>> How are you building the test? I am not seeing the error on linux-4.14.0-rc8
> 
> make -C tools/testing/selftests
> 
> Lei
> 
> 

Based on the information in your other emails, looks like you are
testing these patches on 

$ cat /proc/version
Linux version 3.16.0-30-generic (buildd at kissel) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #40~14.04.1-Ubuntu SMP Thu Jan 15 17:43:14 UTC 2015

That explains why you aren't finding sync_file.h header. This test isn't applicable
to Linux 3.16. In any case, I can't take patches that aren't tested on the latest
kernel release. 3.16 is very old.

thanks,
-- Shuah
--
To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2017-11-07 22:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-05 10:08 [PATCH] selftests: fix compile error for sync Lei Yang
2017-11-06 23:35 ` Shuah Khan
2017-11-07  1:14   ` lei yang
2017-11-07 22:54     ` Shuah Khan
2017-11-07 22:54       ` [Linux-kselftest-mirror] " Shuah Khan
2017-11-07 22:54       ` shuahkh

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.