Searched defs:block_device_operations (Results 1 – 1 of 1) sorted by relevance
/include/linux/ |
D | blkdev.h | 1080 struct block_device_operations { struct 1081 int (*open) (struct block_device *, fmode_t); 1082 int (*release) (struct gendisk *, fmode_t); 1083 int (*locked_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); 1084 int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); 1085 int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); 1086 int (*direct_access) (struct block_device *, sector_t, 1088 int (*media_changed) (struct gendisk *); 1089 int (*revalidate_disk) (struct gendisk *); 1090 int (*getgeo)(struct block_device *, struct hd_geometry *); [all …]
|