]> git.ipfire.org Git - thirdparty/mdadm.git/commitdiff
mdadm: Fix '==' broken formatting
authorJes Sorensen <jsorensen@fb.com>
Tue, 16 May 2017 18:04:22 +0000 (14:04 -0400)
committerJes Sorensen <jsorensen@fb.com>
Tue, 16 May 2017 18:04:22 +0000 (14:04 -0400)
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
Detail.c
config.c
managemon.c
super-ddf.c
super-intel.c

index ef2370ceefb0547df69e8414bf6950408a520c60..bf881ff70e5dc4df308a60fa7214c154f0da681b 100644 (file)
--- a/Detail.c
+++ b/Detail.c
@@ -714,9 +714,9 @@ This is pretty boring
                        if (disk.state & (1 << MD_DISK_JOURNAL))
                                printf(" journal");
                        if ((disk.state &
-                            ((1<<MD_DISK_ACTIVE)|(1<<MD_DISK_SYNC)
-                             |(1<<MD_DISK_REMOVED)|(1<<MD_DISK_FAULTY)|(1<<MD_DISK_JOURNAL)))
-                           == 0) {
+                            ((1 << MD_DISK_ACTIVE) | (1 << MD_DISK_SYNC) |
+                             (1 << MD_DISK_REMOVED) | (1 << MD_DISK_FAULTY) |
+                             (1 << MD_DISK_JOURNAL))) == 0) {
                                printf(" spare");
                                if (disk.raid_disk < array.raid_disks &&
                                    disk.raid_disk >= 0)
index 9b008e344c3407089eb993b01f33b3cb4153e13f..48e0278880cf937a55f684092165af738642a784 100644 (file)
--- a/config.c
+++ b/config.c
@@ -1118,8 +1118,8 @@ struct mddev_ident *conf_match(struct supertype *st,
        match = NULL;
        for (; array_list; array_list = array_list->next) {
                if (array_list->uuid_set &&
-                   same_uuid(array_list->uuid, info->uuid, st->ss->swapuuid)
-                   == 0) {
+                   same_uuid(array_list->uuid, info->uuid,
+                             st->ss->swapuuid) == 0) {
                        if (verbose >= 2 && array_list->devname)
                                pr_err("UUID differs from %s.\n",
                                       array_list->devname);
index 0a33fc9b41ca70534a6f93590ee7dfc9a7b5e6a8..a8df6664cb464ec1a9987fce95a59cdb045a1448 100644 (file)
@@ -580,8 +580,8 @@ static void manage_member(struct mdstat_ent *mdstat,
                        usleep(15*1000);
                }
                replace_array(container, a, newa);
-               if (sysfs_set_str(&a->info, NULL, "sync_action", "recover")
-                   == 0)
+               if (sysfs_set_str(&a->info, NULL,
+                                 "sync_action", "recover") == 0)
                        newa->prev_action = recover;
                dprintf("recovery started on %s\n", a->info.sys_name);
  out:
index 4da7c09c6095900f41be7226ddb22c0908218934..c2336013a6c59c1b994e97156203a07b3e840979 100644 (file)
@@ -1883,8 +1883,8 @@ static struct vd_config *find_vdcr(struct ddf_super *ddf, unsigned int inst,
                nsec = n / be16_to_cpu(conf->prim_elmnt_count);
                if (conf->sec_elmnt_seq != nsec) {
                        for (ibvd = 1; ibvd < conf->sec_elmnt_count; ibvd++) {
-                               if (v->other_bvds[ibvd-1]->sec_elmnt_seq
-                                   == nsec)
+                               if (v->other_bvds[ibvd-1]->sec_elmnt_seq ==
+                                   nsec)
                                        break;
                        }
                        if (ibvd == conf->sec_elmnt_count)
@@ -3814,13 +3814,13 @@ static struct mdinfo *container_content_ddf(struct supertype *st, char *subarray
                        unsigned int iphys;
                        int stt;
 
-                       if (be32_to_cpu(ddf->phys->entries[pd].refnum)
-                           == 0xFFFFFFFF)
+                       if (be32_to_cpu(ddf->phys->entries[pd].refnum) ==
+                           0xffffffff)
                                continue;
 
                        stt = be16_to_cpu(ddf->phys->entries[pd].state);
-                       if ((stt & (DDF_Online|DDF_Failed|DDF_Rebuilding))
-                           != DDF_Online)
+                       if ((stt & (DDF_Online|DDF_Failed|DDF_Rebuilding)) !=
+                           DDF_Online)
                                continue;
 
                        i = get_pd_index_from_refnum(
@@ -4205,8 +4205,8 @@ static int get_bvd_state(const struct ddf_super *ddf,
                if (pd < 0)
                        continue;
                st = be16_to_cpu(ddf->phys->entries[pd].state);
-               if ((st & (DDF_Online|DDF_Failed|DDF_Rebuilding))
-                   == DDF_Online) {
+               if ((st & (DDF_Online|DDF_Failed|DDF_Rebuilding)) ==
+                   DDF_Online) {
                        working++;
                        avail[i] = 1;
                }
index 3d0a37c6a906ef2a31345eefbc20394d0aae4891..51b7cc3c7817399d619ba280359629b9037c1081 100644 (file)
@@ -4023,7 +4023,7 @@ static void migrate(struct imsm_dev *dev, struct intel_super *super,
 
        /* duplicate and then set the target end state in map[0] */
        memcpy(dest, src, sizeof_imsm_map(src));
-       if (migr_type == MIGR_REBUILD || migr_type ==  MIGR_GEN_MIGR) {
+       if (migr_type == MIGR_REBUILD || migr_type == MIGR_GEN_MIGR) {
                __u32 ord;
                int i;