123456789101112131415161718 |
- #!/bin/sh
- [ $# -eq 1 ] && header_dir=$1 || header_dir=tools/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:]]+).*'
- egrep $regex ${header_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:]]+).*'
- egrep $regex ${header_dir}/vhost.h | \
- sed -r "s/$regex/\2 \1/g" | \
- sort | xargs printf "\t[%s] = \"%s\",\n"
- printf "};\n"
|