md_u.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.    md_u.h : user <=> kernel API between Linux raidtools and RAID drivers
  3.           Copyright (C) 1998 Ingo Molnar
  4.   
  5.    This program is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License as published by
  7.    the Free Software Foundation; either version 2, or (at your option)
  8.    any later version.
  9.    
  10.    You should have received a copy of the GNU General Public License
  11.    (for example /usr/src/linux/COPYING); if not, write to the Free
  12.    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  
  13. */
  14. #ifndef _MD_U_H
  15. #define _MD_U_H
  16. /* ioctls */
  17. /* status */
  18. #define RAID_VERSION _IOR (MD_MAJOR, 0x10, mdu_version_t)
  19. #define GET_ARRAY_INFO _IOR (MD_MAJOR, 0x11, mdu_array_info_t)
  20. #define GET_DISK_INFO _IOR (MD_MAJOR, 0x12, mdu_disk_info_t)
  21. #define PRINT_RAID_DEBUG _IO (MD_MAJOR, 0x13)
  22. #define RAID_AUTORUN _IO (MD_MAJOR, 0x14)
  23. #define GET_BITMAP_FILE _IOR (MD_MAJOR, 0x15, mdu_bitmap_file_t)
  24. /* configuration */
  25. #define CLEAR_ARRAY _IO (MD_MAJOR, 0x20)
  26. #define ADD_NEW_DISK _IOW (MD_MAJOR, 0x21, mdu_disk_info_t)
  27. #define HOT_REMOVE_DISK _IO (MD_MAJOR, 0x22)
  28. #define SET_ARRAY_INFO _IOW (MD_MAJOR, 0x23, mdu_array_info_t)
  29. #define SET_DISK_INFO _IO (MD_MAJOR, 0x24)
  30. #define WRITE_RAID_INFO _IO (MD_MAJOR, 0x25)
  31. #define UNPROTECT_ARRAY _IO (MD_MAJOR, 0x26)
  32. #define PROTECT_ARRAY _IO (MD_MAJOR, 0x27)
  33. #define HOT_ADD_DISK _IO (MD_MAJOR, 0x28)
  34. #define SET_DISK_FAULTY _IO (MD_MAJOR, 0x29)
  35. #define HOT_GENERATE_ERROR _IO (MD_MAJOR, 0x2a)
  36. #define SET_BITMAP_FILE _IOW (MD_MAJOR, 0x2b, int)
  37. /* usage */
  38. #define RUN_ARRAY _IOW (MD_MAJOR, 0x30, mdu_param_t)
  39. #define START_ARRAY _IO (MD_MAJOR, 0x31)
  40. #define STOP_ARRAY _IO (MD_MAJOR, 0x32)
  41. #define STOP_ARRAY_RO _IO (MD_MAJOR, 0x33)
  42. #define RESTART_ARRAY_RW _IO (MD_MAJOR, 0x34)
  43. typedef struct mdu_version_s {
  44. int major;
  45. int minor;
  46. int patchlevel;
  47. } mdu_version_t;
  48. typedef struct mdu_array_info_s {
  49. /*
  50.  * Generic constant information
  51.  */
  52. int major_version;
  53. int minor_version;
  54. int patch_version;
  55. int ctime;
  56. int level;
  57. int size;
  58. int nr_disks;
  59. int raid_disks;
  60. int md_minor;
  61. int not_persistent;
  62. /*
  63.  * Generic state information
  64.  */
  65. int utime; /*  0 Superblock update time       */
  66. int state; /*  1 State bits (clean, ...)       */
  67. int active_disks; /*  2 Number of currently active disks       */
  68. int working_disks; /*  3 Number of working disks       */
  69. int failed_disks; /*  4 Number of failed disks       */
  70. int spare_disks; /*  5 Number of spare disks       */
  71. /*
  72.  * Personality information
  73.  */
  74. int layout; /*  0 the array's physical layout       */
  75. int chunk_size; /*  1 chunk size in bytes       */
  76. } mdu_array_info_t;
  77. typedef struct mdu_disk_info_s {
  78. /*
  79.  * configuration/status of one particular disk
  80.  */
  81. int number;
  82. int major;
  83. int minor;
  84. int raid_disk;
  85. int state;
  86. } mdu_disk_info_t;
  87. typedef struct mdu_start_info_s {
  88. /*
  89.  * configuration/status of one particular disk
  90.  */
  91. int major;
  92. int minor;
  93. int raid_disk;
  94. int state;
  95. } mdu_start_info_t;
  96. typedef struct mdu_bitmap_file_s
  97. {
  98. char pathname[4096];
  99. } mdu_bitmap_file_t;
  100. typedef struct mdu_param_s
  101. {
  102. int personality; /* 1,2,3,4 */
  103. int chunk_size; /* in bytes */
  104. int max_fault; /* unused for now */
  105. } mdu_param_t;
  106. #endif