#!/usr/bin/env bash1# Copyright 2022 The ChromiumOS Authors2# Use of this source code is governed by a BSD-style license that can be3# found in the LICENSE file.45# Regenerate io_uring bindgen bindings.67set -euo pipefail8cd "$(dirname "${BASH_SOURCE[0]}")/.."910source tools/impl/bindgen-common.sh1112bindgen_generate \13--allowlist-type='io_uring_.*' \14--allowlist-var='IO_URING_.*' \15--allowlist-var='IORING_.*' \16"${BINDGEN_LINUX_X86_HEADERS}/include/linux/io_uring.h" \17| replace_linux_int_types | rustfmt \18> io_uring/src/bindings.rs192021