[PATCH] gitignore: ignore ebmalloc.c soft link

Wei Liu posted 1 patch 3 years, 8 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/xen tags/patchew/20200827104838.36072-1-wl@xen.org
Maintainers: George Dunlap <george.dunlap@citrix.com>, Stefano Stabellini <sstabellini@kernel.org>, Wei Liu <wl@xen.org>, Julien Grall <julien@xen.org>, Andrew Cooper <andrew.cooper3@citrix.com>, Ian Jackson <ian.jackson@eu.citrix.com>, Jan Beulich <jbeulich@suse.com>
.gitignore | 1 +
1 file changed, 1 insertion(+)
[PATCH] gitignore: ignore ebmalloc.c soft link
Posted by Wei Liu 3 years, 8 months ago
A previous commit split ebmalloc to its own translation unit but forgot
to modify gitignore.

Fixes: 8856a914bffd ("build: also check for empty .bss.* in .o -> .init.o conversion")
Signed-off-by: Wei Liu <wl@xen.org>
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 36ce2ea104ac..0f03518f9178 100644
--- a/.gitignore
+++ b/.gitignore
@@ -296,6 +296,7 @@ xen/arch/*/xen.lds
 xen/arch/*/asm-offsets.s
 xen/arch/*/efi/boot.c
 xen/arch/*/efi/compat.c
+xen/arch/*/efi/ebmalloc.c
 xen/arch/*/efi/efi.h
 xen/arch/*/efi/runtime.c
 xen/common/config_data.S
-- 
2.20.1


Re: [PATCH] gitignore: ignore ebmalloc.c soft link
Posted by Jan Beulich 3 years, 8 months ago
On 27.08.2020 12:48, Wei Liu wrote:
> A previous commit split ebmalloc to its own translation unit but forgot
> to modify gitignore.
> 
> Fixes: 8856a914bffd ("build: also check for empty .bss.* in .o -> .init.o conversion")
> Signed-off-by: Wei Liu <wl@xen.org>

Acked-by: Jan Beulich <jbeulich@suse.com>

Thanks, and I'm sorry for not having paid attention myself.

Jan