mac.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  fs/partitions/mac.c
  3.  *
  4.  *  Code extracted from drivers/block/genhd.c
  5.  *  Copyright (C) 1991-1998  Linus Torvalds
  6.  *  Re-organised Feb 1998 Russell King
  7.  */
  8. #include <linux/config.h>
  9. #include <linux/fs.h>
  10. #include <linux/genhd.h>
  11. #include <linux/kernel.h>
  12. #include <linux/major.h>
  13. #include <linux/string.h>
  14. #include <linux/blk.h>
  15. #include <linux/ctype.h>
  16. #include <asm/system.h>
  17. #include "check.h"
  18. #include "mac.h"
  19. /*
  20.  * Code to understand MacOS partition tables.
  21.  */
  22. int mac_partition(struct gendisk *hd, struct block_device *bdev,
  23. unsigned long fsec, int first_part_minor)
  24. {
  25. Sector sect;
  26. unsigned char *data;
  27. int blk, blocks_in_map;
  28. unsigned secsize;
  29. struct mac_partition *part;
  30. struct mac_driver_desc *md;
  31. /* Get 0th block and look at the first partition map entry. */
  32. md = (struct mac_driver_desc *) read_dev_sector(bdev, 0, &sect);
  33. if (!md)
  34. return -1;
  35. if (be16_to_cpu(md->signature) != MAC_DRIVER_MAGIC) {
  36. put_dev_sector(sect);
  37. return 0;
  38. }
  39. secsize = be16_to_cpu(md->block_size);
  40. put_dev_sector(sect);
  41. data = read_dev_sector(bdev, secsize/512, &sect);
  42. if (!data)
  43. return -1;
  44. part = (struct mac_partition *) (data + secsize%512);
  45. if (be16_to_cpu(part->signature) != MAC_PARTITION_MAGIC) {
  46. put_dev_sector(sect);
  47. return 0; /* not a MacOS disk */
  48. }
  49. printk(" [mac]");
  50. blocks_in_map = be32_to_cpu(part->map_count);
  51. for (blk = 1; blk <= blocks_in_map; ++blk) {
  52. int pos = blk * secsize;
  53. put_dev_sector(sect);
  54. data = read_dev_sector(bdev, pos/512, &sect);
  55. if (!data)
  56. return -1;
  57. part = (struct mac_partition *) (data + pos%512);
  58. if (be16_to_cpu(part->signature) != MAC_PARTITION_MAGIC)
  59. break;
  60. add_gd_partition(hd, first_part_minor,
  61. fsec + be32_to_cpu(part->start_block) * (secsize/512),
  62. be32_to_cpu(part->block_count) * (secsize/512));
  63. ++first_part_minor;
  64. }
  65. put_dev_sector(sect);
  66. printk("n");
  67. return 1;
  68. }