[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20230822115000.2471206-1-jiri@resnulli.us>
Date: Tue, 22 Aug 2023 13:50:00 +0200
From: Jiri Pirko <jiri@...nulli.us>
To: netdev@...r.kernel.org
Cc: kuba@...nel.org,
pabeni@...hat.com,
davem@...emloft.net,
edumazet@...gle.com
Subject: [patch net-next] tools: ynl-gen: add "spec" arg to regen allowing to use only selected spec
From: Jiri Pirko <jiri@...dia.com>
ynl-regen git greps and re-generates all generated files. Introduce a
command line argument "spec" allowing the user to specify only one yaml
spec file to use as a source of re-generation.
Example:
$ tools/net/ynl/ynl-regen.sh -s Documentation/netlink/specs/devlink.yaml -f
GEN kernel net/devlink/netlink_gen.c
GEN kernel net/devlink/netlink_gen.h
GEN user tools/net/ynl/generated/devlink-user.c
GEN user tools/net/ynl/generated/devlink-user.h
This is handy while working on a specific spec.
Signed-off-by: Jiri Pirko <jiri@...dia.com>
---
tools/net/ynl/ynl-regen.sh | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tools/net/ynl/ynl-regen.sh b/tools/net/ynl/ynl-regen.sh
index bdba24066cf1..ee77f6fcad60 100755
--- a/tools/net/ynl/ynl-regen.sh
+++ b/tools/net/ynl/ynl-regen.sh
@@ -5,11 +5,13 @@ TOOL=$(dirname $(realpath $0))/ynl-gen-c.py
force=
search=
+spec=
while [ ! -z "$1" ]; do
case "$1" in
-f ) force=yes; shift ;;
-p ) search=$2; shift 2 ;;
+ -s ) spec=$2; shift 2 ;;
* ) echo "Unrecognized option '$1'"; exit 1 ;;
esac
done
@@ -24,6 +26,10 @@ for f in $files; do
params=( $(git grep -B1 -h '/\* YNL-GEN' $f | sed 's@/\*\(.*\)\*/@\1@') )
args=$(sed -n 's@/\* YNL-ARG \(.*\) \*/@\1@p' $f)
+ if [ ! -z "$spec" -a "$spec" != "${params[0]}" ]; then
+ continue
+ fi
+
if [ $f -nt ${params[0]} -a -z "$force" ]; then
echo -e "\tSKIP $f"
continue
--
2.41.0
Powered by blists - more mailing lists