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

嵌入式Linux

开发平台:

Unix_Linux

  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.   
  8.    This program is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2, or (at your option)
  11.    any later version.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    (for example /usr/src/linux/COPYING); if not, write to the Free
  15.    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  
  16. */
  17. #ifndef _MD_H
  18. #define _MD_H
  19. #include <linux/mm.h>
  20. #include <linux/fs.h>
  21. #include <linux/blkdev.h>
  22. #include <asm/semaphore.h>
  23. #include <linux/major.h>
  24. #include <linux/ioctl.h>
  25. #include <linux/types.h>
  26. #include <asm/bitops.h>
  27. #include <linux/module.h>
  28. #include <linux/hdreg.h>
  29. #include <linux/proc_fs.h>
  30. #include <linux/smp_lock.h>
  31. #include <linux/delay.h>
  32. #include <net/checksum.h>
  33. #include <linux/random.h>
  34. #include <linux/locks.h>
  35. #include <linux/kernel_stat.h>
  36. #include <asm/io.h>
  37. #include <linux/completion.h>
  38. #include <linux/raid/md_compatible.h>
  39. /*
  40.  * 'md_p.h' holds the 'physical' layout of RAID devices
  41.  * 'md_u.h' holds the user <=> kernel API
  42.  *
  43.  * 'md_k.h' holds kernel internal definitions
  44.  */
  45. #include <linux/raid/md_p.h>
  46. #include <linux/raid/md_u.h>
  47. #include <linux/raid/md_k.h>
  48. /*
  49.  * Different major versions are not compatible.
  50.  * Different minor versions are only downward compatible.
  51.  * Different patchlevel versions are downward and upward compatible.
  52.  */
  53. #define MD_MAJOR_VERSION                0
  54. #define MD_MINOR_VERSION                90
  55. #define MD_PATCHLEVEL_VERSION           0
  56. extern int md_size[MAX_MD_DEVS];
  57. extern struct hd_struct md_hd_struct[MAX_MD_DEVS];
  58. extern void add_mddev_mapping (mddev_t *mddev, kdev_t dev, void *data);
  59. extern void del_mddev_mapping (mddev_t *mddev, kdev_t dev);
  60. extern char * partition_name (kdev_t dev);
  61. extern int register_md_personality (int p_num, mdk_personality_t *p);
  62. extern int unregister_md_personality (int p_num);
  63. extern mdk_thread_t * md_register_thread (void (*run) (void *data),
  64. void *data, const char *name);
  65. extern void md_unregister_thread (mdk_thread_t *thread);
  66. extern void md_wakeup_thread(mdk_thread_t *thread);
  67. extern void md_interrupt_thread (mdk_thread_t *thread);
  68. extern int md_update_sb (mddev_t *mddev);
  69. extern int md_do_sync(mddev_t *mddev, mdp_disk_t *spare);
  70. extern void md_done_sync(mddev_t *mddev, int blocks, int ok);
  71. extern void md_sync_acct(kdev_t dev, unsigned long nr_sectors);
  72. extern void md_recover_arrays (void);
  73. extern int md_check_ordering (mddev_t *mddev);
  74. extern int md_notify_reboot(struct notifier_block *this,
  75. unsigned long code, void *x);
  76. extern int md_error (mddev_t *mddev, kdev_t rdev);
  77. extern int md_run_setup(void);
  78. extern void md_print_devices (void);
  79. #define MD_BUG(x...) { printk("md: bug in file %s, line %dn", __FILE__, __LINE__); md_print_devices(); }
  80. #endif