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]
Date:   Mon, 17 Jul 2023 15:07:11 +0800
From:   wuyonggang001@...suo.com
To:     viro@...iv.linux.org.uk, brauner@...nel.org
Cc:     linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] fs/filesystems.c: ERROR: "(foo*)" should be "(foo *)"

Fix five occurrences of the checkpatch.pl error:
ERROR: "(foo*)" should be "(foo *)"

Signed-off-by: Yonggang Wu <wuyonggang001@...suo.com>
---
  fs/filesystems.c | 20 ++++++++++----------
  1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/fs/filesystems.c b/fs/filesystems.c
index 58b9067b2391..6a93b4904d27 100644
--- a/fs/filesystems.c
+++ b/fs/filesystems.c
@@ -69,10 +69,10 @@ static struct file_system_type 
**find_filesystem(const char *name, unsigned len)
   *    unregistered.
   */

-int register_filesystem(struct file_system_type * fs)
+int register_filesystem(struct file_system_type *fs)
  {
      int res = 0;
-    struct file_system_type ** p;
+    struct file_system_type **p;

      if (fs->parameters &&
          !fs_validate_description(fs->name, fs->parameters))
@@ -105,9 +105,9 @@ EXPORT_SYMBOL(register_filesystem);
   *    may be freed or reused.
   */

-int unregister_filesystem(struct file_system_type * fs)
+int unregister_filesystem(struct file_system_type *fs)
  {
-    struct file_system_type ** tmp;
+    struct file_system_type **tmp;

      write_lock(&file_systems_lock);
      tmp = &file_systems;
@@ -129,9 +129,9 @@ int unregister_filesystem(struct file_system_type * 
fs)
  EXPORT_SYMBOL(unregister_filesystem);

  #ifdef CONFIG_SYSFS_SYSCALL
-static int fs_index(const char __user * __name)
+static int fs_index(const char __user *__name)
  {
-    struct file_system_type * tmp;
+    struct file_system_type *tmp;
      struct filename *name;
      int err, index;

@@ -153,9 +153,9 @@ static int fs_index(const char __user * __name)
      return err;
  }

-static int fs_name(unsigned int index, char __user * buf)
+static int fs_name(unsigned int index, char __user *buf)
  {
-    struct file_system_type * tmp;
+    struct file_system_type *tmp;
      int len, res;

      read_lock(&file_systems_lock);
@@ -175,7 +175,7 @@ static int fs_name(unsigned int index, char __user * 
buf)

  static int fs_maxindex(void)
  {
-    struct file_system_type * tmp;
+    struct file_system_type *tmp;
      int index;

      read_lock(&file_systems_lock);
@@ -236,7 +236,7 @@ int __init list_bdev_fs_names(char *buf, size_t 
size)
  #ifdef CONFIG_PROC_FS
  static int filesystems_proc_show(struct seq_file *m, void *v)
  {
-    struct file_system_type * tmp;
+    struct file_system_type *tmp;

      read_lock(&file_systems_lock);
      tmp = file_systems;

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ