summaryrefslogtreecommitdiff
path: root/rust/helpers/poll.c
diff options
context:
space:
mode:
Diffstat (limited to 'rust/helpers/poll.c')
-rw-r--r--rust/helpers/poll.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/rust/helpers/poll.c b/rust/helpers/poll.c
new file mode 100644
index 000000000000..7e5b1751c2d5
--- /dev/null
+++ b/rust/helpers/poll.c
@@ -0,0 +1,10 @@
+// SPDX-License-Identifier: GPL-2.0
+
+#include <linux/export.h>
+#include <linux/poll.h>
+
+void rust_helper_poll_wait(struct file *filp, wait_queue_head_t *wait_address,
+ poll_table *p)
+{
+ poll_wait(filp, wait_address, p);
+}