Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 197969
b: refs/heads/master
c: cc91062
h: refs/heads/master
i:
  197967: 031ad00
v: v3
  • Loading branch information
Cesar Eduardo Barros authored and Al Viro committed May 21, 2010
1 parent fcad45c commit 9ad9e85
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8018ab057480974e7f26a387bf4ce040e9a5f6f1
refs/heads/master: cc9106247de92549e50abb0ba12d6b2fdbf0be55
2 changes: 1 addition & 1 deletion trunk/fs/partitions/efi.c
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ efi_partition(struct parsed_partitions *state, struct block_device *bdev)
/* If this is a RAID volume, tell md */
if (!efi_guidcmp(ptes[i].partition_type_guid,
PARTITION_LINUX_RAID_GUID))
state->parts[i+1].flags = 1;
state->parts[i + 1].flags = ADDPART_FLAG_RAID;
}
kfree(ptes);
kfree(gpt);
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/partitions/mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ int mac_partition(struct parsed_partitions *state, struct block_device *bdev)
be32_to_cpu(part->block_count) * (secsize/512));

if (!strnicmp(part->type, "Linux_RAID", 10))
state->parts[slot].flags = 1;
state->parts[slot].flags = ADDPART_FLAG_RAID;
#ifdef CONFIG_PPC_PMAC
/*
* If this is the first bootable partition, tell the
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/partitions/msdos.c
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ int msdos_partition(struct parsed_partitions *state, struct block_device *bdev)
}
put_partition(state, slot, start, size);
if (SYS_IND(p) == LINUX_RAID_PARTITION)
state->parts[slot].flags = 1;
state->parts[slot].flags = ADDPART_FLAG_RAID;
if (SYS_IND(p) == DM6_PARTITION)
printk("[DM]");
if (SYS_IND(p) == EZD_PARTITION)
Expand Down

0 comments on commit 9ad9e85

Please sign in to comment.