X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=include%2Flinux%2Fgenhd.h;h=0a022b2f63fc0fa95fa35df16784e2fcaef225b3;hb=97bf2856c6014879bd04983a3e9dfcdac1e7fe85;hp=2ef845b35175815b8823e35bf6c23723725c13d3;hpb=43bc926fffd92024b46cafaf7350d669ba9ca884;p=linux-2.6.git diff --git a/include/linux/genhd.h b/include/linux/genhd.h index 2ef845b35..0a022b2f6 100644 --- a/include/linux/genhd.h +++ b/include/linux/genhd.h @@ -9,13 +9,9 @@ * */ -#include #include -#include -#include -#include -#include -#include + +#ifdef CONFIG_BLOCK enum { /* These three have identical behaviour; use the second one if DOS FDISK gets @@ -61,6 +57,12 @@ struct partition { #endif #ifdef __KERNEL__ +#include +#include +#include +#include +#include + struct partition { unsigned char boot_ind; /* 0x80 - active */ unsigned char head; /* starting head */ @@ -81,6 +83,9 @@ struct hd_struct { struct kobject *holder_dir; unsigned ios[2], sectors[2]; /* READs and WRITEs */ int policy, partno; +#ifdef CONFIG_FAIL_MAKE_REQUEST + int make_it_fail; +#endif }; #define GENHD_FL_REMOVABLE 1 @@ -88,6 +93,7 @@ struct hd_struct { #define GENHD_FL_CD 8 #define GENHD_FL_UP 16 #define GENHD_FL_SUPPRESS_PARTITION_INFO 32 +#define GENHD_FL_FAIL 64 struct disk_stats { unsigned long sectors[2]; /* READs and WRITEs */ @@ -112,8 +118,6 @@ struct gendisk { sector_t capacity; int flags; - char devfs_name[64]; /* devfs crap */ - int number; /* more of the same */ struct device *driverfs_dev; struct kobject kobj; struct kobject *holder_dir; @@ -422,3 +426,5 @@ static inline struct block_device *bdget_disk(struct gendisk *disk, int index) #endif #endif + +#endif