forked from Minki/linux
1493bf217f
Make the following changes to partition check code. * Add ->bdev to struct parsed_partitions. * Introduce read_part_sector() which is a simple wrapper around read_dev_sector() which takes struct parsed_partitions *state instead of @bdev. * For functions which used to take @state and @bdev, drop @bdev. For functions which used to take @bdev, replace it with @state. * While updating, drop superflous checks on NULL state/bdev in ldm.c. This cleans up the API a bit and enables better handling of IO errors during partition check as the generic partition check code now has much better visibility into what went wrong in the low level code paths. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: Ben Hutchings <ben@decadent.org.uk> Acked-by: David S. Miller <davem@davemloft.net> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
58 lines
1.0 KiB
C
58 lines
1.0 KiB
C
/*
|
|
* fs/partitions/karma.c
|
|
* Rio Karma partition info.
|
|
*
|
|
* Copyright (C) 2006 Bob Copeland (me@bobcopeland.com)
|
|
* based on osf.c
|
|
*/
|
|
|
|
#include "check.h"
|
|
#include "karma.h"
|
|
|
|
int karma_partition(struct parsed_partitions *state)
|
|
{
|
|
int i;
|
|
int slot = 1;
|
|
Sector sect;
|
|
unsigned char *data;
|
|
struct disklabel {
|
|
u8 d_reserved[270];
|
|
struct d_partition {
|
|
__le32 p_res;
|
|
u8 p_fstype;
|
|
u8 p_res2[3];
|
|
__le32 p_offset;
|
|
__le32 p_size;
|
|
} d_partitions[2];
|
|
u8 d_blank[208];
|
|
__le16 d_magic;
|
|
} __attribute__((packed)) *label;
|
|
struct d_partition *p;
|
|
|
|
data = read_part_sector(state, 0, §);
|
|
if (!data)
|
|
return -1;
|
|
|
|
label = (struct disklabel *)data;
|
|
if (le16_to_cpu(label->d_magic) != KARMA_LABEL_MAGIC) {
|
|
put_dev_sector(sect);
|
|
return 0;
|
|
}
|
|
|
|
p = label->d_partitions;
|
|
for (i = 0 ; i < 2; i++, p++) {
|
|
if (slot == state->limit)
|
|
break;
|
|
|
|
if (p->p_fstype == 0x4d && le32_to_cpu(p->p_size)) {
|
|
put_partition(state, slot, le32_to_cpu(p->p_offset),
|
|
le32_to_cpu(p->p_size));
|
|
}
|
|
slot++;
|
|
}
|
|
printk("\n");
|
|
put_dev_sector(sect);
|
|
return 1;
|
|
}
|
|
|