Whamcloud - gitweb
LU-6142 fld: Fix style issues for lproc_fld.c 88/53888/2
authorArshad Hussain <arshad.hussain@aeoncomputing.com>
Fri, 2 Feb 2024 13:16:41 +0000 (18:46 +0530)
committerOleg Drokin <green@whamcloud.com>
Thu, 15 Feb 2024 07:01:03 +0000 (07:01 +0000)
This patch fixes issues reported by checkpatch
for file lustre/fld/lproc_fld.c

Test-Parameters: trivial
Signed-off-by: Arshad Hussain <arshad.hussain@aeoncomputing.com>
Change-Id: I27e3719cce73f04460fffa5b0583603adb1cd05f
Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/53888
Tested-by: jenkins <devops@whamcloud.com>
Tested-by: Maloo <maloo@whamcloud.com>
Reviewed-by: Andreas Dilger <adilger@whamcloud.com>
Reviewed-by: Timothy Day <timday@amazon.com>
Reviewed-by: Oleg Drokin <green@whamcloud.com>
lustre/fld/lproc_fld.c

index 9164101..4182191 100644 (file)
@@ -53,7 +53,7 @@ static int
 fld_debugfs_targets_seq_show(struct seq_file *m, void *unused)
 {
        struct lu_client_fld *fld = (struct lu_client_fld *)m->private;
-        struct lu_fld_target *target;
+       struct lu_fld_target *target;
 
        ENTRY;
        spin_lock(&fld->lcf_lock);
@@ -123,11 +123,11 @@ static ssize_t ldebugfs_cache_flush_seq_write(struct file *file,
        struct lu_client_fld *fld = m->private;
 
        ENTRY;
-        fld_cache_flush(fld->lcf_cache);
+       fld_cache_flush(fld->lcf_cache);
 
-        CDEBUG(D_INFO, "%s: Lookup cache is flushed\n", fld->lcf_name);
+       CDEBUG(D_INFO, "%s: Lookup cache is flushed\n", fld->lcf_name);
 
-        RETURN(count);
+       RETURN(count);
 }
 
 LDEBUGFS_SEQ_FOPS_RO(fld_debugfs_targets);