blob: 9721fa589bb17f8b0740bcc14df09e179ce4f636 [file] [log] [blame]
Bob Copeland0e6e1db2006-01-16 22:14:20 -08001/*
2 * fs/partitions/karma.c
3 * Rio Karma partition info.
4 *
5 * Copyright (C) 2006 Bob Copeland (me@bobcopeland.com)
6 * based on osf.c
7 */
8
9#include "check.h"
10#include "karma.h"
Gideon Israel Dsouzae3ebf0d2014-02-17 21:17:16 +053011#include <linux/compiler.h>
Bob Copeland0e6e1db2006-01-16 22:14:20 -080012
Tejun Heo1493bf22010-05-15 20:09:30 +020013int karma_partition(struct parsed_partitions *state)
Bob Copeland0e6e1db2006-01-16 22:14:20 -080014{
15 int i;
16 int slot = 1;
17 Sector sect;
18 unsigned char *data;
19 struct disklabel {
20 u8 d_reserved[270];
21 struct d_partition {
22 __le32 p_res;
23 u8 p_fstype;
24 u8 p_res2[3];
25 __le32 p_offset;
26 __le32 p_size;
27 } d_partitions[2];
28 u8 d_blank[208];
29 __le16 d_magic;
Gideon Israel Dsouzae3ebf0d2014-02-17 21:17:16 +053030 } __packed *label;
Bob Copeland0e6e1db2006-01-16 22:14:20 -080031 struct d_partition *p;
32
Tejun Heo1493bf22010-05-15 20:09:30 +020033 data = read_part_sector(state, 0, &sect);
Bob Copeland0e6e1db2006-01-16 22:14:20 -080034 if (!data)
35 return -1;
36
37 label = (struct disklabel *)data;
38 if (le16_to_cpu(label->d_magic) != KARMA_LABEL_MAGIC) {
39 put_dev_sector(sect);
40 return 0;
41 }
42
43 p = label->d_partitions;
44 for (i = 0 ; i < 2; i++, p++) {
45 if (slot == state->limit)
46 break;
47
48 if (p->p_fstype == 0x4d && le32_to_cpu(p->p_size)) {
49 put_partition(state, slot, le32_to_cpu(p->p_offset),
50 le32_to_cpu(p->p_size));
51 }
52 slot++;
53 }
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -070054 strlcat(state->pp_buf, "\n", PAGE_SIZE);
Bob Copeland0e6e1db2006-01-16 22:14:20 -080055 put_dev_sector(sect);
56 return 1;
57}
58