git: 41dee251ee9e - main - LinuxKPI: add simple_open() to fs.h
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 25 Oct 2021 20:17:17 UTC
The branch main has been updated by bz:
URL: https://cgit.FreeBSD.org/src/commit/?id=41dee251ee9ead2e5c7a33b1457db5742c584354
commit 41dee251ee9ead2e5c7a33b1457db5742c584354
Author: Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2021-10-25 16:44:18 +0000
Commit: Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2021-10-25 20:14:42 +0000
LinuxKPI: add simple_open() to fs.h
Add a dummy simple_open() to fs.h as we have for other
(unsupported) functions.
This is needed by a wireless driver.
MFC after: 3 days
Reviewed by: hselasky
Differential Revision: https://reviews.freebsd.org/D32642
---
sys/compat/linuxkpi/common/include/linux/fs.h | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/sys/compat/linuxkpi/common/include/linux/fs.h b/sys/compat/linuxkpi/common/include/linux/fs.h
index eaf806b6732c..f1892352d598 100644
--- a/sys/compat/linuxkpi/common/include/linux/fs.h
+++ b/sys/compat/linuxkpi/common/include/linux/fs.h
@@ -245,6 +245,12 @@ nonseekable_open(struct inode *inode, struct file *filp)
return 0;
}
+static inline int
+simple_open(struct inode *inode, struct file *filp)
+{
+ return 0;
+}
+
extern unsigned int linux_iminor(struct inode *);
#define iminor(...) linux_iminor(__VA_ARGS__)