ynl: regenerate all headers
Also add support to pass topdir to ynl-regen.sh (Jakub) and call it from the makefile to update the UAPI headers. Signed-off-by: Stanislav Fomichev <sdf@google.com> Co-developed-by: Jakub Kicinski <kuba@kernel.org> Reviewed-by: Jakub Kicinski <kuba@kernel.org> Link: https://lore.kernel.org/r/20230727163001.3952878-4-sdf@google.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
37844828d2
commit
25b5a2a190
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* enum netdev_xdp_act
|
* enum netdev_xdp_act
|
||||||
* @NETDEV_XDP_ACT_BASIC: XDP feautues set supported by all drivers
|
* @NETDEV_XDP_ACT_BASIC: XDP features set supported by all drivers
|
||||||
* (XDP_ABORTED, XDP_DROP, XDP_PASS, XDP_TX)
|
* (XDP_ABORTED, XDP_DROP, XDP_PASS, XDP_TX)
|
||||||
* @NETDEV_XDP_ACT_REDIRECT: The netdev supports XDP_REDIRECT
|
* @NETDEV_XDP_ACT_REDIRECT: The netdev supports XDP_REDIRECT
|
||||||
* @NETDEV_XDP_ACT_NDO_XMIT: This feature informs if netdev implements
|
* @NETDEV_XDP_ACT_NDO_XMIT: This feature informs if netdev implements
|
||||||
@ -34,6 +34,7 @@ enum netdev_xdp_act {
|
|||||||
NETDEV_XDP_ACT_RX_SG = 32,
|
NETDEV_XDP_ACT_RX_SG = 32,
|
||||||
NETDEV_XDP_ACT_NDO_XMIT_SG = 64,
|
NETDEV_XDP_ACT_NDO_XMIT_SG = 64,
|
||||||
|
|
||||||
|
/* private: */
|
||||||
NETDEV_XDP_ACT_MASK = 127,
|
NETDEV_XDP_ACT_MASK = 127,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* enum netdev_xdp_act
|
* enum netdev_xdp_act
|
||||||
* @NETDEV_XDP_ACT_BASIC: XDP feautues set supported by all drivers
|
* @NETDEV_XDP_ACT_BASIC: XDP features set supported by all drivers
|
||||||
* (XDP_ABORTED, XDP_DROP, XDP_PASS, XDP_TX)
|
* (XDP_ABORTED, XDP_DROP, XDP_PASS, XDP_TX)
|
||||||
* @NETDEV_XDP_ACT_REDIRECT: The netdev supports XDP_REDIRECT
|
* @NETDEV_XDP_ACT_REDIRECT: The netdev supports XDP_REDIRECT
|
||||||
* @NETDEV_XDP_ACT_NDO_XMIT: This feature informs if netdev implements
|
* @NETDEV_XDP_ACT_NDO_XMIT: This feature informs if netdev implements
|
||||||
@ -34,6 +34,7 @@ enum netdev_xdp_act {
|
|||||||
NETDEV_XDP_ACT_RX_SG = 32,
|
NETDEV_XDP_ACT_RX_SG = 32,
|
||||||
NETDEV_XDP_ACT_NDO_XMIT_SG = 64,
|
NETDEV_XDP_ACT_NDO_XMIT_SG = 64,
|
||||||
|
|
||||||
|
/* private: */
|
||||||
NETDEV_XDP_ACT_MASK = 127,
|
NETDEV_XDP_ACT_MASK = 127,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
SUBDIRS = lib generated samples
|
SUBDIRS = lib generated samples
|
||||||
|
|
||||||
all: $(SUBDIRS)
|
all: $(SUBDIRS)
|
||||||
|
./ynl-regen.sh -f -p $(PWD)/../../../
|
||||||
|
|
||||||
$(SUBDIRS):
|
$(SUBDIRS):
|
||||||
@if [ -f "$@/Makefile" ] ; then \
|
@if [ -f "$@/Makefile" ] ; then \
|
||||||
|
@ -50,6 +50,7 @@ struct ynl_policy_attr netdev_dev_policy[NETDEV_A_DEV_MAX + 1] = {
|
|||||||
[NETDEV_A_DEV_IFINDEX] = { .name = "ifindex", .type = YNL_PT_U32, },
|
[NETDEV_A_DEV_IFINDEX] = { .name = "ifindex", .type = YNL_PT_U32, },
|
||||||
[NETDEV_A_DEV_PAD] = { .name = "pad", .type = YNL_PT_IGNORE, },
|
[NETDEV_A_DEV_PAD] = { .name = "pad", .type = YNL_PT_IGNORE, },
|
||||||
[NETDEV_A_DEV_XDP_FEATURES] = { .name = "xdp-features", .type = YNL_PT_U64, },
|
[NETDEV_A_DEV_XDP_FEATURES] = { .name = "xdp-features", .type = YNL_PT_U64, },
|
||||||
|
[NETDEV_A_DEV_XDP_ZC_MAX_SEGS] = { .name = "xdp-zc-max-segs", .type = YNL_PT_U32, },
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ynl_policy_nest netdev_dev_nest = {
|
struct ynl_policy_nest netdev_dev_nest = {
|
||||||
@ -91,6 +92,11 @@ int netdev_dev_get_rsp_parse(const struct nlmsghdr *nlh, void *data)
|
|||||||
return MNL_CB_ERROR;
|
return MNL_CB_ERROR;
|
||||||
dst->_present.xdp_features = 1;
|
dst->_present.xdp_features = 1;
|
||||||
dst->xdp_features = mnl_attr_get_u64(attr);
|
dst->xdp_features = mnl_attr_get_u64(attr);
|
||||||
|
} else if (type == NETDEV_A_DEV_XDP_ZC_MAX_SEGS) {
|
||||||
|
if (ynl_attr_validate(yarg, attr))
|
||||||
|
return MNL_CB_ERROR;
|
||||||
|
dst->_present.xdp_zc_max_segs = 1;
|
||||||
|
dst->xdp_zc_max_segs = mnl_attr_get_u32(attr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -47,10 +47,12 @@ struct netdev_dev_get_rsp {
|
|||||||
struct {
|
struct {
|
||||||
__u32 ifindex:1;
|
__u32 ifindex:1;
|
||||||
__u32 xdp_features:1;
|
__u32 xdp_features:1;
|
||||||
|
__u32 xdp_zc_max_segs:1;
|
||||||
} _present;
|
} _present;
|
||||||
|
|
||||||
__u32 ifindex;
|
__u32 ifindex;
|
||||||
__u64 xdp_features;
|
__u64 xdp_features;
|
||||||
|
__u32 xdp_zc_max_segs;
|
||||||
};
|
};
|
||||||
|
|
||||||
void netdev_dev_get_rsp_free(struct netdev_dev_get_rsp *rsp);
|
void netdev_dev_get_rsp_free(struct netdev_dev_get_rsp *rsp);
|
||||||
|
@ -4,15 +4,18 @@
|
|||||||
TOOL=$(dirname $(realpath $0))/ynl-gen-c.py
|
TOOL=$(dirname $(realpath $0))/ynl-gen-c.py
|
||||||
|
|
||||||
force=
|
force=
|
||||||
|
search=
|
||||||
|
|
||||||
while [ ! -z "$1" ]; do
|
while [ ! -z "$1" ]; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
-f ) force=yes; shift ;;
|
-f ) force=yes; shift ;;
|
||||||
|
-p ) search=$2; shift 2 ;;
|
||||||
* ) echo "Unrecognized option '$1'"; exit 1 ;;
|
* ) echo "Unrecognized option '$1'"; exit 1 ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
KDIR=$(dirname $(dirname $(dirname $(dirname $(realpath $0)))))
|
KDIR=$(dirname $(dirname $(dirname $(dirname $(realpath $0)))))
|
||||||
|
pushd ${search:-$KDIR} >>/dev/null
|
||||||
|
|
||||||
files=$(git grep --files-with-matches '^/\* YNL-GEN \(kernel\|uapi\|user\)')
|
files=$(git grep --files-with-matches '^/\* YNL-GEN \(kernel\|uapi\|user\)')
|
||||||
for f in $files; do
|
for f in $files; do
|
||||||
@ -30,3 +33,5 @@ for f in $files; do
|
|||||||
$TOOL --mode ${params[2]} --${params[3]} --spec $KDIR/${params[0]} \
|
$TOOL --mode ${params[2]} --${params[3]} --spec $KDIR/${params[0]} \
|
||||||
$args -o $f
|
$args -o $f
|
||||||
done
|
done
|
||||||
|
|
||||||
|
popd >>/dev/null
|
||||||
|
Reference in New Issue
Block a user