1 // SPDX-License-Identifier: GPL-2.0 2 3 #include <linux/export.h> 4 #include <linux/poll.h> 5 6 __rust_helper void rust_helper_poll_wait(struct file *filp, 7 wait_queue_head_t *wait_address, 8 poll_table *p) 9 { 10 poll_wait(filp, wait_address, p); 11 } 12