-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 18644 b: refs/heads/master c: 0e6e1db h: refs/heads/master v: v3
- Loading branch information
Bob Copeland
authored and
Linus Torvalds
committed
Jan 17, 2006
1 parent
4c064fd
commit ef36e2a
Showing
6 changed files
with
78 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: cad8244840d1a148f638925758afd1cdf81fc839 | ||
refs/heads/master: 0e6e1db4ac7acfe3e38bbef9eba59233ba7f6b9a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* 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, struct block_device *bdev) | ||
{ | ||
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_dev_sector(bdev, 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; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/* | ||
* fs/partitions/karma.h | ||
*/ | ||
|
||
#define KARMA_LABEL_MAGIC 0xAB56 | ||
|
||
int karma_partition(struct parsed_partitions *state, struct block_device *bdev); | ||
|