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-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <87h649pmoj.wl-kuninori.morimoto.gx@renesas.com>
Date: Tue, 4 Mar 2025 02:14:04 +0000
From: Kuninori Morimoto <kuninori.morimoto.gx@...esas.com>
To: Andy Shevchenko <andy@...nel.org>, Kees Cook <kees@...nel.org>,
	<linux-hardening@...r.kernel.org>, Andy Shevchenko <andy@...nel.org>, Kees
 Cook <kees@...nel.org>, <linux-hardening@...r.kernel.org>
Subject: [PATCH v2 10/10] lib/string_choices: Add str_attach_detach() helper

Add str_attach_detach() helper to return "attach" or "detach" string
literal.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@...esas.com>
---
 include/linux/string_choices.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/include/linux/string_choices.h b/include/linux/string_choices.h
index 82c5927d50a9..12b26cb5ca6f 100644
--- a/include/linux/string_choices.h
+++ b/include/linux/string_choices.h
@@ -125,6 +125,13 @@ static inline const char *str_kernel_user(bool v)
 }
 #define str_user_kernel(v)	str_kernel_user(!(v))
 
+static inline const char *str_attach_detach(bool v)
+{
+	return v ? "attach" : "detach";
+}
+#define str_attach_detach(v)	str_attach_detach(!(v))
+
+
 /**
  * str_plural - Return the simple pluralization based on English counts
  * @num: Number used for deciding pluralization
-- 
2.43.0


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ