diff --git a/include/linux/fs.h b/include/linux/fs.h index 63748acb14443c1595a3999752da35e934bde055..3c912284b9cb20184fddee44efa38e63b196a037 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1776,7 +1776,6 @@ struct file_operations { ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *); ssize_t (*read_iter) (struct kiocb *, struct iov_iter *); ssize_t (*write_iter) (struct kiocb *, struct iov_iter *); - int (*iopoll)(struct kiocb *kiocb, bool spin); int (*iterate) (struct file *, struct dir_context *); int (*iterate_shared) (struct file *, struct dir_context *); __poll_t (*poll) (struct file *, struct poll_table_struct *); @@ -1811,7 +1810,11 @@ struct file_operations { u64); int (*fadvise)(struct file *, loff_t, loff_t, int); +#ifndef __GENKSYMS__ + int (*iopoll)(struct kiocb *kiocb, bool spin); +#else KABI_RESERVE(1) +#endif KABI_RESERVE(2) KABI_RESERVE(3) KABI_RESERVE(4)