aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/blkdev.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/blkdev.h')
-rw-r--r--include/linux/blkdev.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index 2bad616b994..b573186ff1a 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -1061,11 +1061,16 @@ struct file;
1061struct inode; 1061struct inode;
1062 1062
1063struct block_device_operations { 1063struct block_device_operations {
1064 int (*open) (struct inode *, struct file *); 1064 int (*__open) (struct inode *, struct file *);
1065 int (*release) (struct inode *, struct file *); 1065 int (*__release) (struct inode *, struct file *);
1066 int (*ioctl) (struct inode *, struct file *, unsigned, unsigned long); 1066 int (*__ioctl) (struct inode *, struct file *, unsigned, unsigned long);
1067 long (*unlocked_ioctl) (struct file *, unsigned, unsigned long); 1067 long (*__unlocked_ioctl) (struct file *, unsigned, unsigned long);
1068 long (*compat_ioctl) (struct file *, unsigned, unsigned long); 1068 long (*__compat_ioctl) (struct file *, unsigned, unsigned long);
1069 int (*open) (struct block_device *, fmode_t);
1070 int (*release) (struct gendisk *, fmode_t);
1071 int (*locked_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
1072 int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
1073 int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
1069 int (*direct_access) (struct block_device *, sector_t, 1074 int (*direct_access) (struct block_device *, sector_t,
1070 void **, unsigned long *); 1075 void **, unsigned long *);
1071 int (*media_changed) (struct gendisk *); 1076 int (*media_changed) (struct gendisk *);