linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fs/filesystems.c: ERROR: "(foo*)" should be "(foo *)"
       [not found] <20230717070500.38410-1-zhanglibing@cdjrlc.com>
@ 2023-07-17  7:07 ` wuyonggang001
  2023-07-19  6:14   ` Christian Brauner
  0 siblings, 1 reply; 2+ messages in thread
From: wuyonggang001 @ 2023-07-17  7:07 UTC (permalink / raw)
  To: viro, brauner; +Cc: linux-fsdevel, linux-kernel

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

Signed-off-by: Yonggang Wu <wuyonggang001@208suo.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;

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] fs/filesystems.c: ERROR: "(foo*)" should be "(foo *)"
  2023-07-17  7:07 ` [PATCH] fs/filesystems.c: ERROR: "(foo*)" should be "(foo *)" wuyonggang001
@ 2023-07-19  6:14   ` Christian Brauner
  0 siblings, 0 replies; 2+ messages in thread
From: Christian Brauner @ 2023-07-19  6:14 UTC (permalink / raw)
  To: wuyonggang001; +Cc: viro, linux-fsdevel, linux-kernel

On Mon, Jul 17, 2023 at 03:07:11PM +0800, wuyonggang001@208suo.com wrote:
> Fix five occurrences of the checkpatch.pl error:
> ERROR: "(foo*)" should be "(foo *)"
> 
> Signed-off-by: Yonggang Wu <wuyonggang001@208suo.com>
> ---

Patch is corrupt; doesn't even apply.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-07-19  6:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20230717070500.38410-1-zhanglibing@cdjrlc.com>
2023-07-17  7:07 ` [PATCH] fs/filesystems.c: ERROR: "(foo*)" should be "(foo *)" wuyonggang001
2023-07-19  6:14   ` Christian Brauner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).