md.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. md.h : Multiple Devices driver for Linux
  3. Copyright (C) 1996-98 Ingo Molnar, Gadi Oxman
  4. Copyright (C) 1994-96 Marc ZYNGIER
  5. <zyngier@ufr-info-p7.ibp.fr> or
  6. <maz@gloups.fdn.fr>
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11. You should have received a copy of the GNU General Public License
  12. (for example /usr/src/linux/COPYING); if not, write to the Free
  13. Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  14. */
  15. #ifndef _MD_H
  16. #define _MD_H
  17. #include <linux/blkdev.h>
  18. #include <asm/semaphore.h>
  19. #include <linux/major.h>
  20. #include <linux/ioctl.h>
  21. #include <linux/types.h>
  22. #include <linux/bitops.h>
  23. #include <linux/module.h>
  24. #include <linux/hdreg.h>
  25. #include <linux/proc_fs.h>
  26. #include <linux/seq_file.h>
  27. #include <linux/smp_lock.h>
  28. #include <linux/delay.h>
  29. #include <net/checksum.h>
  30. #include <linux/random.h>
  31. #include <linux/kernel_stat.h>
  32. #include <asm/io.h>
  33. #include <linux/completion.h>
  34. #include <linux/mempool.h>
  35. #include <linux/list.h>
  36. #include <linux/reboot.h>
  37. #include <linux/vmalloc.h>
  38. #include <linux/blkpg.h>
  39. #include <linux/bio.h>
  40. /*
  41. * 'md_p.h' holds the 'physical' layout of RAID devices
  42. * 'md_u.h' holds the user <=> kernel API
  43. *
  44. * 'md_k.h' holds kernel internal definitions
  45. */
  46. #include <linux/raid/md_p.h>
  47. #include <linux/raid/md_u.h>
  48. #include <linux/raid/md_k.h>
  49. /*
  50. * Different major versions are not compatible.
  51. * Different minor versions are only downward compatible.
  52. * Different patchlevel versions are downward and upward compatible.
  53. */
  54. #define MD_MAJOR_VERSION 0
  55. #define MD_MINOR_VERSION 90
  56. /*
  57. * MD_PATCHLEVEL_VERSION indicates kernel functionality.
  58. * >=1 means different superblock formats are selectable using SET_ARRAY_INFO
  59. * and major_version/minor_version accordingly
  60. * >=2 means that Internal bitmaps are supported by setting MD_SB_BITMAP_PRESENT
  61. * in the super status byte
  62. */
  63. #define MD_PATCHLEVEL_VERSION 2
  64. extern int register_md_personality (int p_num, mdk_personality_t *p);
  65. extern int unregister_md_personality (int p_num);
  66. extern mdk_thread_t * md_register_thread (void (*run) (mddev_t *mddev),
  67. mddev_t *mddev, const char *name);
  68. extern void md_unregister_thread (mdk_thread_t *thread);
  69. extern void md_wakeup_thread(mdk_thread_t *thread);
  70. extern void md_check_recovery(mddev_t *mddev);
  71. extern void md_write_start(mddev_t *mddev, struct bio *bi);
  72. extern void md_write_end(mddev_t *mddev);
  73. extern void md_handle_safemode(mddev_t *mddev);
  74. extern void md_done_sync(mddev_t *mddev, int blocks, int ok);
  75. extern void md_error (mddev_t *mddev, mdk_rdev_t *rdev);
  76. extern void md_unplug_mddev(mddev_t *mddev);
  77. extern void md_print_devices (void);
  78. extern void md_super_write(mddev_t *mddev, mdk_rdev_t *rdev,
  79. sector_t sector, int size, struct page *page);
  80. extern int sync_page_io(struct block_device *bdev, sector_t sector, int size,
  81. struct page *page, int rw);
  82. #define MD_BUG(x...) { printk("md: bug in file %s, line %d\n", __FILE__, __LINE__); md_print_devices(); }
  83. #endif