partition.h 171 B

12345678910
  1. #ifndef _PARTITION_H
  2. #define _PARTITION_H
  3. #include <linux/genhd.h>
  4. extern struct hd_struct *get_part(char *name);
  5. extern void put_part(struct hd_struct *part);
  6. #endif