aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/fs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 74c01aabd4ab..7f140480c6a8 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -224,6 +224,7 @@ extern int dir_notify_enable;
224#include <asm/semaphore.h> 224#include <asm/semaphore.h>
225#include <asm/byteorder.h> 225#include <asm/byteorder.h>
226 226
227struct hd_geometry;
227struct iovec; 228struct iovec;
228struct nameidata; 229struct nameidata;
229struct kiocb; 230struct kiocb;
@@ -962,6 +963,7 @@ struct block_device_operations {
962 int (*direct_access) (struct block_device *, sector_t, unsigned long *); 963 int (*direct_access) (struct block_device *, sector_t, unsigned long *);
963 int (*media_changed) (struct gendisk *); 964 int (*media_changed) (struct gendisk *);
964 int (*revalidate_disk) (struct gendisk *); 965 int (*revalidate_disk) (struct gendisk *);
966 int (*getgeo)(struct block_device *, struct hd_geometry *);
965 struct module *owner; 967 struct module *owner;
966}; 968};
967 969