From d552fc632cf5b7e3b2808fd341708bd353072c45 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sat, 13 Dec 2025 19:57:41 +1200 Subject: [PATCH] x86/hv: Add gitignore entry for generated header file Commit 7bfe3b8ea6e3 ("Drivers: hv: Introduce mshv_vtl driver") added a new generated header file for the offsets into the mshv_vtl_cpu_context structure to be used by the low-level assembly code. But it didn't add the .gitignore file to go with it, so 'git status' and friends will mention it. Let's add the gitignore file before somebody thinks that generated header should be committed. Fixes: 7bfe3b8ea6e3 ("Drivers: hv: Introduce mshv_vtl driver") Signed-off-by: Linus Torvalds --- arch/x86/hyperv/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 arch/x86/hyperv/.gitignore diff --git a/arch/x86/hyperv/.gitignore b/arch/x86/hyperv/.gitignore new file mode 100644 index 000000000000..333615d993b5 --- /dev/null +++ b/arch/x86/hyperv/.gitignore @@ -0,0 +1 @@ +mshv-asm-offsets.h -- 2.47.3