public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86/vdso: Remove all generated files during clean
@ 2015-02-19  2:13 Magnus Damm
  2015-02-19 11:06 ` Sergei Shtylyov
  2015-02-20 19:21 ` Andy Lutomirski
  0 siblings, 2 replies; 4+ messages in thread
From: Magnus Damm @ 2015-02-19  2:13 UTC (permalink / raw)
  To: luto; +Cc: linux-sh, x86, linux-kernel, mingo, hpa, Magnus Damm, tglx

From: Magnus Damm <damm+renesas@opensource.se>

Make sure the following files are removed as expected during "make clean":
 + arch/x86/vdso/vdso-image-32-int80.c
 + arch/x86/vdso/vdso-image-32-syscall.c
 + arch/x86/vdso/vdso-image-32-sysenter.c
 + arch/x86/vdso/vdso-image-64.c

Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
---

 arch/x86/vdso/Makefile |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

--- 0001/arch/x86/vdso/Makefile
+++ work/arch/x86/vdso/Makefile	2015-02-19 10:50:15.975470639 +0900
@@ -1,3 +1,4 @@
+
 #
 # Building vDSO images for x86.
 #
@@ -206,4 +207,5 @@ $(vdso_img_insttargets): install_%: $(ob
 PHONY += vdso_install $(vdso_img_insttargets)
 vdso_install: $(vdso_img_insttargets) FORCE
 
-clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80* vdso64*
+clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80* vdso64* \
+               vdso-image-32* vdso-image-64*

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

* Re: [PATCH] x86/vdso: Remove all generated files during clean
  2015-02-19  2:13 [PATCH] x86/vdso: Remove all generated files during clean Magnus Damm
@ 2015-02-19 11:06 ` Sergei Shtylyov
  2015-02-20 19:21 ` Andy Lutomirski
  1 sibling, 0 replies; 4+ messages in thread
From: Sergei Shtylyov @ 2015-02-19 11:06 UTC (permalink / raw)
  To: Magnus Damm, luto; +Cc: linux-sh, x86, linux-kernel, mingo, hpa, tglx

Hello.

On 2/19/2015 5:13 AM, Magnus Damm wrote:

> From: Magnus Damm <damm+renesas@opensource.se>

> Make sure the following files are removed as expected during "make clean":
>   + arch/x86/vdso/vdso-image-32-int80.c
>   + arch/x86/vdso/vdso-image-32-syscall.c
>   + arch/x86/vdso/vdso-image-32-sysenter.c
>   + arch/x86/vdso/vdso-image-64.c

> Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
> ---
>
>   arch/x86/vdso/Makefile |    4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)

> --- 0001/arch/x86/vdso/Makefile
> +++ work/arch/x86/vdso/Makefile	2015-02-19 10:50:15.975470639 +0900
> @@ -1,3 +1,4 @@
> +

    Stray new line?

>   #
>   # Building vDSO images for x86.
>   #
[...]

WBR, Sergei


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

* Re: [PATCH] x86/vdso: Remove all generated files during clean
  2015-02-19  2:13 [PATCH] x86/vdso: Remove all generated files during clean Magnus Damm
  2015-02-19 11:06 ` Sergei Shtylyov
@ 2015-02-20 19:21 ` Andy Lutomirski
  2015-03-26  0:53   ` Andy Lutomirski
  1 sibling, 1 reply; 4+ messages in thread
From: Andy Lutomirski @ 2015-02-20 19:21 UTC (permalink / raw)
  To: Magnus Damm, luto; +Cc: linux-sh, x86, linux-kernel, mingo, hpa, tglx

On 02/18/2015 06:13 PM, Magnus Damm wrote:
> From: Magnus Damm <damm+renesas@opensource.se>
>
> Make sure the following files are removed as expected during "make clean":
>   + arch/x86/vdso/vdso-image-32-int80.c
>   + arch/x86/vdso/vdso-image-32-syscall.c
>   + arch/x86/vdso/vdso-image-32-sysenter.c
>   + arch/x86/vdso/vdso-image-64.c
>
> Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
> ---
>
>   arch/x86/vdso/Makefile |    4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)
>
> --- 0001/arch/x86/vdso/Makefile
> +++ work/arch/x86/vdso/Makefile	2015-02-19 10:50:15.975470639 +0900
> @@ -1,3 +1,4 @@
> +
>   #
>   # Building vDSO images for x86.
>   #
> @@ -206,4 +207,5 @@ $(vdso_img_insttargets): install_%: $(ob
>   PHONY += vdso_install $(vdso_img_insttargets)
>   vdso_install: $(vdso_img_insttargets) FORCE
>
> -clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80* vdso64*
> +clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80* vdso64* \
> +               vdso-image-32* vdso-image-64*
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

Applied, sans the extra newline.

Thanks,
Andy

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

* Re: [PATCH] x86/vdso: Remove all generated files during clean
  2015-02-20 19:21 ` Andy Lutomirski
@ 2015-03-26  0:53   ` Andy Lutomirski
  0 siblings, 0 replies; 4+ messages in thread
From: Andy Lutomirski @ 2015-03-26  0:53 UTC (permalink / raw)
  To: Magnus Damm, Andy Lutomirski
  Cc: linux-sh@vger.kernel.org, X86 ML, linux-kernel@vger.kernel.org,
	Ingo Molnar, H. Peter Anvin, Thomas Gleixner

On Fri, Feb 20, 2015 at 11:21 AM, Andy Lutomirski <luto@amacapital.net> wrote:
> On 02/18/2015 06:13 PM, Magnus Damm wrote:
>>
>> From: Magnus Damm <damm+renesas@opensource.se>
>>
>> Make sure the following files are removed as expected during "make clean":
>>   + arch/x86/vdso/vdso-image-32-int80.c
>>   + arch/x86/vdso/vdso-image-32-syscall.c
>>   + arch/x86/vdso/vdso-image-32-sysenter.c
>>   + arch/x86/vdso/vdso-image-64.c
>>
>> Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
>> ---
>>
>>   arch/x86/vdso/Makefile |    4 +++-
>>   1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> --- 0001/arch/x86/vdso/Makefile
>> +++ work/arch/x86/vdso/Makefile 2015-02-19 10:50:15.975470639 +0900
>> @@ -1,3 +1,4 @@
>> +
>>   #
>>   # Building vDSO images for x86.
>>   #
>> @@ -206,4 +207,5 @@ $(vdso_img_insttargets): install_%: $(ob
>>   PHONY += vdso_install $(vdso_img_insttargets)
>>   vdso_install: $(vdso_img_insttargets) FORCE
>>
>> -clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80* vdso64*
>> +clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80* vdso64* \
>> +               vdso-image-32* vdso-image-64*
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>
> Applied, sans the extra newline.

Unapplied and replaced by a different patch that handles x32 correctly.

--Andy

>
> Thanks,
> Andy



-- 
Andy Lutomirski
AMA Capital Management, LLC

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

end of thread, other threads:[~2015-03-26  0:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-19  2:13 [PATCH] x86/vdso: Remove all generated files during clean Magnus Damm
2015-02-19 11:06 ` Sergei Shtylyov
2015-02-20 19:21 ` Andy Lutomirski
2015-03-26  0:53   ` Andy Lutomirski

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