lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241125072308.421686-1-lizhijian@fujitsu.com>
Date: Mon, 25 Nov 2024 15:23:08 +0800
From: Li Zhijian <lizhijian@...itsu.com>
To: linux-kernel@...r.kernel.org
Cc: Masahiro Yamada <masahiroy@...nel.org>,
	Nathan Chancellor <nathan@...nel.org>,
	Kris Van Hees <kris.van.hees@...cle.com>,
	rostedt@...dmis.org,
	Li Zhijian <lizhijian@...itsu.com>,
	kernel test robot <lkp@...el.com>
Subject: [PATCH] gitignore: Don't ignore 'tags' directory

LKP reported warnings [1] regarding files being ignored:
   tools/testing/selftests/arm64/tags/.gitignore: warning: ignored by one of the .gitignore files
   tools/testing/selftests/arm64/tags/Makefile: warning: ignored by one of the .gitignore files
   tools/testing/selftests/arm64/tags/tags_test.c: warning: ignored by one of the .gitignore files

These warnings were generated by ./scripts/misc-check. Although these files
are tracked by Git and the warnings are false positives, adjusting the
.gitignore entries will prevent these warnings and ensure a smoother script
execution.

[1] https://lore.kernel.org/linux-kselftest/202411251308.Vjm5MzVC-lkp@intel.com/

Reported-by: kernel test robot <lkp@...el.com>
Signed-off-by: Li Zhijian <lizhijian@...itsu.com>
---
 .gitignore | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.gitignore b/.gitignore
index 56972adb5031..e63dbba823cd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -130,6 +130,9 @@ series
 tags
 TAGS
 
+# don't ignore 'tags' directory
+!tags/
+
 # cscope files
 cscope.*
 ncscope.*
-- 
2.44.0


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ