mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 05:03:05 +00:00
0928f91f98
This applies the script from https://crrev.com/c/3534501 BUG=b:22320646 TEST=presubmit Change-Id: Ib0c5bdb55df2098930fb1c65e9bd59288c44f357 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3534502 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: Dennis Kempin <denniskempin@google.com>
19 lines
580 B
Bash
Executable file
19 lines
580 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copyright 2022 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
#
|
|
# Regenerate io_uring bindgen bindings.
|
|
|
|
set -euo pipefail
|
|
cd "$(dirname "${BASH_SOURCE[0]}")/../.."
|
|
|
|
source tools/impl/bindgen-common.sh
|
|
|
|
bindgen_generate \
|
|
--allowlist-type='io_uring_.*' \
|
|
--allowlist-var='IO_URING_.*' \
|
|
--allowlist-var='IORING_.*' \
|
|
"${BINDGEN_LINUX}/include/uapi/linux/io_uring.h" \
|
|
| replace_linux_int_types | rustfmt \
|
|
> io_uring/src/bindings.rs
|