aboutsummaryrefslogtreecommitdiffstats
path: root/fs/partitions/efi.c
diff options
context:
space:
mode:
authorCesar Eduardo Barros <cesarb@cesarb.net>2010-04-17 18:28:09 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2010-05-21 18:31:21 -0400
commitcc9106247de92549e50abb0ba12d6b2fdbf0be55 (patch)
treef0e76e94e4b0041c255b9f3d4f3e5217b37951d2 /fs/partitions/efi.c
parent8018ab057480974e7f26a387bf4ce040e9a5f6f1 (diff)
fs/partitions: use ADDPART_FLAG_RAID instead of magic number
ADDPART_FLAG_RAID was introduced in commit d18d768, and most places were converted to use it instead of a hardcoded value. However, some places seem to have been missed. Change all of them to the symbolic names via the following semantic patch: @@ struct parsed_partitions *state; expression E; @@ ( - state->parts[E].flags = 1 + state->parts[E].flags = ADDPART_FLAG_RAID | - state->parts[E].flags |= 1 + state->parts[E].flags |= ADDPART_FLAG_RAID | - state->parts[E].flags = 2 + state->parts[E].flags = ADDPART_FLAG_WHOLEDISK | - state->parts[E].flags |= 2 + state->parts[E].flags |= ADDPART_FLAG_WHOLEDISK ) Signed-off-by: Cesar Eduardo Barros <cesarb@cesarb.net> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/partitions/efi.c')
-rw-r--r--fs/partitions/efi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/partitions/efi.c b/fs/partitions/efi.c
index 91babdae7587..f5867f8ed214 100644
--- a/fs/partitions/efi.c
+++ b/fs/partitions/efi.c
@@ -631,7 +631,7 @@ efi_partition(struct parsed_partitions *state, struct block_device *bdev)
631 /* If this is a RAID volume, tell md */ 631 /* If this is a RAID volume, tell md */
632 if (!efi_guidcmp(ptes[i].partition_type_guid, 632 if (!efi_guidcmp(ptes[i].partition_type_guid,
633 PARTITION_LINUX_RAID_GUID)) 633 PARTITION_LINUX_RAID_GUID))
634 state->parts[i+1].flags = 1; 634 state->parts[i + 1].flags = ADDPART_FLAG_RAID;
635 } 635 }
636 kfree(ptes); 636 kfree(ptes);
637 kfree(gpt); 637 kfree(gpt);