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] [day] [month] [year] [list]
Date:   Sun, 12 Apr 2020 20:01:51 +0800
From:   kbuild test robot <lkp@...el.com>
To:     Gabriel Krisman Bertazi <krisman@...labora.com>
Cc:     kbuild-all@...ts.01.org, linux-fsdevel@...r.kernel.org,
        linux-ext4@...r.kernel.org,
        Gabriel Krisman Bertazi <krisman@...labora.com>,
        kernel@...labora.com, Theodore Ts'o <tytso@....edu>,
        Jaegeuk Kim <jaegeuk@...nel.org>
Subject: [RFC PATCH] unicode: ucd_init() can be static


Signed-off-by: kbuild test robot <lkp@...el.com>
---
 utf8-core.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/unicode/utf8-core.c b/fs/unicode/utf8-core.c
index 7e02827074356..b48e13e823a5a 100644
--- a/fs/unicode/utf8-core.c
+++ b/fs/unicode/utf8-core.c
@@ -250,7 +250,7 @@ static const struct attribute_group ucd_attr_group = {
 };
 static struct kobject *ucd_root;
 
-int __init ucd_init(void)
+static int __init ucd_init(void)
 {
 	int ret;
 
@@ -268,7 +268,7 @@ int __init ucd_init(void)
 	return 0;
 }
 
-void __exit ucd_exit(void)
+static void __exit ucd_exit(void)
 {
 	kobject_put(ucd_root);
 }

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ