staging/lustre/libcfs: style change to add missing spaces for operations
authorOleg Drokin <green@linuxhacker.ru>
Tue, 16 Feb 2016 05:47:02 +0000 (00:47 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 20 Feb 2016 22:33:11 +0000 (14:33 -0800)
This fixes checkpatch messages about
"spaces preferred around that '-' (ctx:VxV)"

Signed-off-by: Oleg Drokin <green@linuxhacker.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/libcfs/debug.c
drivers/staging/lustre/lustre/libcfs/linux/linux-mem.c
drivers/staging/lustre/lustre/libcfs/linux/linux-tracefile.c
drivers/staging/lustre/lustre/libcfs/tracefile.c

index 9bb31f97f12187d32a5535ac9842d5c7538ca3db..fa81582f9674b988e6f1b5497e44cb913765a888 100644 (file)
@@ -418,7 +418,7 @@ libcfs_debug_str2mask(int *mask, const char *str, int is_subsys)
        /* Allow a number for backwards compatibility */
 
        for (n = strlen(str); n > 0; n--)
-               if (!isspace(str[n-1]))
+               if (!isspace(str[n - 1]))
                        break;
        matched = n;
        t = sscanf(str, "%i%n", &m, &matched);
index 025e2f0028ab1ee80680924fc4059506dffbeedc..86f32ffc5d046b8f6dba000cb8fd7587b8afa4c0 100644 (file)
@@ -50,7 +50,7 @@ void *libcfs_kvzalloc_cpt(struct cfs_cpt_table *cptab, int cpt, size_t size,
        ret = kzalloc_node(size, flags | __GFP_NOWARN,
                           cfs_cpt_spread_node(cptab, cpt));
        if (!ret) {
-               WARN_ON(!(flags & (__GFP_FS|__GFP_HIGH)));
+               WARN_ON(!(flags & (__GFP_FS | __GFP_HIGH)));
                ret = vmalloc_node(size, cfs_cpt_spread_node(cptab, cpt));
        }
 
index 89944c0ca9501205f3c309e7a1f49f5fa4951007..5e3c40010ef6c4ce00fe88e416621be35308874c 100644 (file)
@@ -268,5 +268,5 @@ int cfs_trace_max_debug_mb(void)
 {
        int  total_mb = (totalram_pages >> (20 - PAGE_SHIFT));
 
-       return max(512, (total_mb * 80)/100);
+       return max(512, (total_mb * 80) / 100);
 }
index f0c9261083678d79c7398e8815eafe54f2287409..eb57c96bd2e55789989a5be21e59481c9c2ee998 100644 (file)
@@ -346,7 +346,7 @@ int libcfs_debug_vmsg2(struct libcfs_debug_msg_data *msgdata,
                        break;
        }
 
-       if (*(string_buf+needed-1) != '\n')
+       if (*(string_buf + needed - 1) != '\n')
                printk(KERN_INFO "format at %s:%d:%s doesn't end in newline\n",
                       file, msgdata->msg_line, msgdata->msg_fn);
 
@@ -436,7 +436,7 @@ console:
                        remain = CFS_TRACE_CONSOLE_BUFFER_SIZE - needed;
                        if (remain > 0) {
                                va_start(ap, format2);
-                               needed += vsnprintf(string_buf+needed, remain,
+                               needed += vsnprintf(string_buf + needed, remain,
                                                    format2, ap);
                                va_end(ap);
                        }
@@ -667,7 +667,8 @@ int cfs_tracefile_dump_all_pages(char *filename)
 
        cfs_tracefile_write_lock();
 
-       filp = filp_open(filename, O_CREAT|O_EXCL|O_WRONLY|O_LARGEFILE, 0600);
+       filp = filp_open(filename, O_CREAT | O_EXCL | O_WRONLY | O_LARGEFILE,
+                        0600);
        if (IS_ERR(filp)) {
                rc = PTR_ERR(filp);
                filp = NULL;
This page took 0.028085 seconds and 5 git commands to generate.