osf.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  fs/partitions/osf.c
  3.  *
  4.  *  Code extracted from drivers/block/genhd.c
  5.  *
  6.  *  Copyright (C) 1991-1998  Linus Torvalds
  7.  *  Re-organised Feb 1998 Russell King
  8.  */
  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 "check.h"
  16. #include "osf.h"
  17. int osf_partition(struct gendisk *hd, struct block_device *bdev,
  18. unsigned long first_sector, int current_minor)
  19. {
  20. int i;
  21. Sector sect;
  22. unsigned char *data;
  23. int mask = (1 << hd->minor_shift) - 1;
  24. struct disklabel {
  25. u32 d_magic;
  26. u16 d_type,d_subtype;
  27. u8 d_typename[16];
  28. u8 d_packname[16];
  29. u32 d_secsize;
  30. u32 d_nsectors;
  31. u32 d_ntracks;
  32. u32 d_ncylinders;
  33. u32 d_secpercyl;
  34. u32 d_secprtunit;
  35. u16 d_sparespertrack;
  36. u16 d_sparespercyl;
  37. u32 d_acylinders;
  38. u16 d_rpm, d_interleave, d_trackskew, d_cylskew;
  39. u32 d_headswitch, d_trkseek, d_flags;
  40. u32 d_drivedata[5];
  41. u32 d_spare[5];
  42. u32 d_magic2;
  43. u16 d_checksum;
  44. u16 d_npartitions;
  45. u32 d_bbsize, d_sbsize;
  46. struct d_partition {
  47. u32 p_size;
  48. u32 p_offset;
  49. u32 p_fsize;
  50. u8  p_fstype;
  51. u8  p_frag;
  52. u16 p_cpg;
  53. } d_partitions[8];
  54. } * label;
  55. struct d_partition * partition;
  56. data = read_dev_sector(bdev, 0, &sect);
  57. if (!data)
  58. return -1;
  59. label = (struct disklabel *) (data+64);
  60. partition = label->d_partitions;
  61. if (le32_to_cpu(label->d_magic) != DISKLABELMAGIC) {
  62. put_dev_sector(sect);
  63. return 0;
  64. }
  65. if (le32_to_cpu(label->d_magic2) != DISKLABELMAGIC) {
  66. put_dev_sector(sect);
  67. return 0;
  68. }
  69. for (i = 0 ; i < le16_to_cpu(label->d_npartitions); i++, partition++) {
  70. if ((current_minor & mask) == 0)
  71.         break;
  72. if (le32_to_cpu(partition->p_size))
  73. add_gd_partition(hd, current_minor,
  74. first_sector+le32_to_cpu(partition->p_offset),
  75. le32_to_cpu(partition->p_size));
  76. current_minor++;
  77. }
  78. printk("n");
  79. put_dev_sector(sect);
  80. return 1;
  81. }