diff options
author | Kay Sievers <kay.sievers@suse.de> | 2006-05-15 21:57:28 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@suse.de> | 2006-05-15 21:57:28 +0200 |
commit | 6deef787557f46628cec4a65e18864173ea720c8 (patch) | |
tree | b55cc882152302d312393db4cc02257a10a1296a /extras/volume_id/lib/volume_id.c | |
parent | 2bac6c64aa7808cafd7706d56887a97ba9f7817d (diff) |
libvolume_id: add more software raid signatures
Diffstat (limited to 'extras/volume_id/lib/volume_id.c')
-rw-r--r-- | extras/volume_id/lib/volume_id.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/extras/volume_id/lib/volume_id.c b/extras/volume_id/lib/volume_id.c index 50eb72dbd5..fd95e7d3b0 100644 --- a/extras/volume_id/lib/volume_id.c +++ b/extras/volume_id/lib/volume_id.c @@ -69,6 +69,12 @@ int volume_id_probe_raid(struct volume_id *id, uint64_t off, uint64_t size) if (volume_id_probe_highpoint_45x_raid(id, off, size) == 0) goto found; + + if (volume_id_probe_adaptec_raid(id, off, size) == 0) + goto found; + + if (volume_id_probe_jmicron_raid(id, off, size) == 0) + goto found; } if (volume_id_probe_lvm1(id, off) == 0) |