linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] x86, vdso: teach 'make clean' remove generated vdso-image-*.c files
@ 2015-03-16 15:23 Andrey Skvortsov
  2015-03-16 15:33 ` Andy Lutomirski
  0 siblings, 1 reply; 4+ messages in thread
From: Andrey Skvortsov @ 2015-03-16 15:23 UTC (permalink / raw)
  To: Andy Lutomirski, Thomas Gleixner, Ingo Molnar, H. Peter Anvin,
	x86, linux-kernel
  Cc: Andrey Skvortsov

After 'make clean' vdso-image-32-int80.c  vdso-image-32-syscall.c
vdso-image-32-sysenter.c were left in  arch/x86/vdso.
These file are generated during build process and present in .gitignore.

Signed-off-by: Andrey Skvortsov <andrej.skvortzov@gmail.com>
---
 arch/x86/vdso/Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/vdso/Makefile b/arch/x86/vdso/Makefile
index 7b9be98..91bcfd0 100644
--- a/arch/x86/vdso/Makefile
+++ b/arch/x86/vdso/Makefile
@@ -206,4 +206,4 @@ $(vdso_img_insttargets): install_%: $(obj)/%.dbg $(MODLIB)/vdso FORCE
 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-*.c
-- 
1.7.10.4


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

* Re: [PATCH] x86, vdso: teach 'make clean' remove generated vdso-image-*.c files
  2015-03-16 15:23 [PATCH] x86, vdso: teach 'make clean' remove generated vdso-image-*.c files Andrey Skvortsov
@ 2015-03-16 15:33 ` Andy Lutomirski
  2015-03-16 18:23   ` Andrey Skvortsov
  0 siblings, 1 reply; 4+ messages in thread
From: Andy Lutomirski @ 2015-03-16 15:33 UTC (permalink / raw)
  To: Andrey Skvortsov
  Cc: H. Peter Anvin, X86 ML, Thomas Gleixner, linux-kernel, Ingo Molnar

On Mar 16, 2015 8:23 AM, "Andrey Skvortsov" <andrej.skvortzov@gmail.com> wrote:
>
> After 'make clean' vdso-image-32-int80.c  vdso-image-32-syscall.c
> vdso-image-32-sysenter.c were left in  arch/x86/vdso.
> These file are generated during build process and present in .gitignore.

This issue is fixed slightly differently here:

https://git.kernel.org/cgit/linux/kernel/git/luto/linux.git/commit/?h=x86/vdso

I'll send out the pull request soon -- I'm just waiting on some KVM
stuff to help decide exactly what ends up in the pull request.

--Andy

>
> Signed-off-by: Andrey Skvortsov <andrej.skvortzov@gmail.com>
> ---
>  arch/x86/vdso/Makefile |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/x86/vdso/Makefile b/arch/x86/vdso/Makefile
> index 7b9be98..91bcfd0 100644
> --- a/arch/x86/vdso/Makefile
> +++ b/arch/x86/vdso/Makefile
> @@ -206,4 +206,4 @@ $(vdso_img_insttargets): install_%: $(obj)/%.dbg $(MODLIB)/vdso FORCE
>  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-*.c
> --
> 1.7.10.4
>

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

* Re: [PATCH] x86, vdso: teach 'make clean' remove generated vdso-image-*.c files
  2015-03-16 15:33 ` Andy Lutomirski
@ 2015-03-16 18:23   ` Andrey Skvortsov
  2015-03-26  0:52     ` Andy Lutomirski
  0 siblings, 1 reply; 4+ messages in thread
From: Andrey Skvortsov @ 2015-03-16 18:23 UTC (permalink / raw)
  To: Andy Lutomirski
  Cc: H. Peter Anvin, X86 ML, Thomas Gleixner, linux-kernel, Ingo Molnar

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

On 16 Mar, Andy Lutomirski wrote:
> On Mar 16, 2015 8:23 AM, "Andrey Skvortsov" <andrej.skvortzov@gmail.com> wrote:
> >
> > After 'make clean' vdso-image-32-int80.c  vdso-image-32-syscall.c
> > vdso-image-32-sysenter.c were left in  arch/x86/vdso.
> > These file are generated during build process and present in .gitignore.
> 
> This issue is fixed slightly differently here:
> 
> https://git.kernel.org/cgit/linux/kernel/git/luto/linux.git/commit/?h=x86/vdso
> 
> I'll send out the pull request soon -- I'm just waiting on some KVM
> stuff to help decide exactly what ends up in the pull request.

Ok. No problem. 

-- 
Best regards,
Andrey Skvortsov

Secure e-mail with gnupg: See http://www.gnupg.org/
PGP Key ID: 0x57A3AEAD



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

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

* Re: [PATCH] x86, vdso: teach 'make clean' remove generated vdso-image-*.c files
  2015-03-16 18:23   ` Andrey Skvortsov
@ 2015-03-26  0:52     ` Andy Lutomirski
  0 siblings, 0 replies; 4+ messages in thread
From: Andy Lutomirski @ 2015-03-26  0:52 UTC (permalink / raw)
  To: Andrey Skvortsov, Andy Lutomirski, H. Peter Anvin, X86 ML,
	Thomas Gleixner, linux-kernel, Ingo Molnar

On Mon, Mar 16, 2015 at 11:23 AM, Andrey Skvortsov
<andrej.skvortzov@gmail.com> wrote:
> On 16 Mar, Andy Lutomirski wrote:
>> On Mar 16, 2015 8:23 AM, "Andrey Skvortsov" <andrej.skvortzov@gmail.com> wrote:
>> >
>> > After 'make clean' vdso-image-32-int80.c  vdso-image-32-syscall.c
>> > vdso-image-32-sysenter.c were left in  arch/x86/vdso.
>> > These file are generated during build process and present in .gitignore.
>>
>> This issue is fixed slightly differently here:
>>
>> https://git.kernel.org/cgit/linux/kernel/git/luto/linux.git/commit/?h=x86/vdso
>>
>> I'll send out the pull request soon -- I'm just waiting on some KVM
>> stuff to help decide exactly what ends up in the pull request.
>
> Ok. No problem.

Correction: I'm taking your patch instead.  It's better.

>
> --
> Best regards,
> Andrey Skvortsov
>
> Secure e-mail with gnupg: See http://www.gnupg.org/
> PGP Key ID: 0x57A3AEAD
>
>



-- 
Andy Lutomirski
AMA Capital Management, LLC

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

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

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-16 15:23 [PATCH] x86, vdso: teach 'make clean' remove generated vdso-image-*.c files Andrey Skvortsov
2015-03-16 15:33 ` Andy Lutomirski
2015-03-16 18:23   ` Andrey Skvortsov
2015-03-26  0:52     ` Andy Lutomirski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).