| 123456789101112131415161718 |
- #!/bin/sh
- # SPDX-License-Identifier: LGPL-2.1
- [ $# -eq 1 ] && beauty_uapi_linux_dir=$1 || beauty_uapi_linux_dir=tools/perf/trace/beauty/include/uapi/linux
- printf "static const char *vhost_virtio_ioctl_cmds[] = {\n"
- regex='^#[[:space:]]*define[[:space:]]+VHOST_(\w+)[[:space:]]+_IOW?\([[:space:]]*VHOST_VIRTIO[[:space:]]*,[[:space:]]*(0x[[:xdigit:]]+).*'
- grep -E $regex ${beauty_uapi_linux_dir}/vhost.h | \
- sed -r "s/$regex/\2 \1/g" | \
- sort | xargs printf "\t[%s] = \"%s\",\n"
- printf "};\n"
- printf "static const char *vhost_virtio_ioctl_read_cmds[] = {\n"
- regex='^#[[:space:]]*define[[:space:]]+VHOST_(\w+)[[:space:]]+_IOW?R\([[:space:]]*VHOST_VIRTIO[[:space:]]*,[[:space:]]*(0x[[:xdigit:]]+).*'
- grep -E $regex ${beauty_uapi_linux_dir}/vhost.h | \
- sed -r "s/$regex/\2 \1/g" | \
- sort | xargs printf "\t[%s] = \"%s\",\n"
- printf "};\n"
|