Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
tnguy
/
next-queue
/
19f1d6c7230b7da3775a2db915dc8eb9d3151658
/
.
/
rust
/
helpers
/
poll.c
blob: 7e5b1751c2d526f2dd467fcd61dcf49294d3c20d [
file
] [
log
] [
blame
]
// 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
);
}