diff options
author | Jes Sorensen <jsorensen@fb.com> | 2017-05-16 14:04:22 -0400 |
---|---|---|
committer | Jes Sorensen <jsorensen@fb.com> | 2017-05-16 14:04:22 -0400 |
commit | b831b299e864224b389743d8a435d6629ee674e3 (patch) | |
tree | de55a908beaaf9dc57ec7a2999b1bbbb030f8b03 | |
parent | d7be7d87366a7f9b190bc4e41ea06f7c9984028e (diff) | |
download | mdadm-b831b299e864224b389743d8a435d6629ee674e3.tar.gz |
mdadm: Fix '==' broken formatting
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
-rw-r--r-- | Detail.c | 6 | ||||
-rw-r--r-- | config.c | 4 | ||||
-rw-r--r-- | managemon.c | 4 | ||||
-rw-r--r-- | super-ddf.c | 16 | ||||
-rw-r--r-- | super-intel.c | 2 |
5 files changed, 16 insertions, 16 deletions
@@ -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) @@ -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); diff --git a/managemon.c b/managemon.c index 0a33fc9..a8df666 100644 --- a/managemon.c +++ b/managemon.c @@ -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: diff --git a/super-ddf.c b/super-ddf.c index 4da7c09..c233601 100644 --- a/super-ddf.c +++ b/super-ddf.c @@ -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; } diff --git a/super-intel.c b/super-intel.c index 3d0a37c..51b7cc3 100644 --- a/super-intel.c +++ b/super-intel.c @@ -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; |