Searched refs:NLA_F_NESTED (Results 1 - 14 of 14) sorted by relevance

/linux-master/tools/include/uapi/linux/
H A Dnetlink.h226 #define NLA_F_NESTED (1 << 15) macro
228 #define NLA_TYPE_MASK ~(NLA_F_NESTED | NLA_F_NET_BYTEORDER)
/linux-master/include/uapi/linux/
H A Dnetlink.h244 #define NLA_F_NESTED (1 << 15) macro
246 #define NLA_TYPE_MASK ~(NLA_F_NESTED | NLA_F_NET_BYTEORDER)
/linux-master/tools/lib/bpf/
H A Dnlattr.h165 if (nlattr_add(req, type | NLA_F_NESTED, NULL, 0))
/linux-master/include/uapi/rdma/
H A Drdma_netlink.h215 #define RDMA_NLA_TYPE_MASK (~(NLA_F_NESTED | NLA_F_NET_BYTEORDER | \
/linux-master/tools/testing/selftests/net/mptcp/
H A Dpm_nl_ctl.c401 addr->rta_type = NLA_F_NESTED |
516 addr->rta_type = NLA_F_NESTED |
660 addr->rta_type = NLA_F_NESTED | MPTCP_PM_ATTR_ADDR;
785 nest->rta_type = NLA_F_NESTED | MPTCP_PM_ATTR_ADDR;
920 nest->rta_type = NLA_F_NESTED | MPTCP_PM_ATTR_ADDR;
1075 (MPTCP_PM_ATTR_ADDR | NLA_F_NESTED))
1110 nest->rta_type = NLA_F_NESTED | MPTCP_PM_ATTR_ADDR;
1350 nest->rta_type = NLA_F_NESTED | MPTCP_PM_ATTR_ADDR;
1467 nest->rta_type = NLA_F_NESTED | MPTCP_PM_ATTR_ADDR_REMOTE;
/linux-master/tools/net/ynl/lib/
H A Dynl.py50 NLA_F_NESTED = 0x8000 variable in class:Netlink
53 NLA_TYPE_MASK = NLA_F_NESTED | NLA_F_NET_BYTEORDER
108 self.is_nest = self._type & Netlink.NLA_F_NESTED
509 nl_type |= Netlink.NLA_F_NESTED
550 nl_type |= Netlink.NLA_F_NESTED
H A Dynl-priv.h268 attr->nla_type = attr_type | NLA_F_NESTED;
/linux-master/tools/testing/selftests/net/openvswitch/
H A Dovs-dpctl.py22 from pyroute2.netlink import NLA_F_NESTED namespace
279 nla_flags = NLA_F_NESTED
310 nla_flags = NLA_F_NESTED
326 nla_flags = NLA_F_NESTED
411 nla_flags = NLA_F_NESTED
660 nla_flags = NLA_F_NESTED
/linux-master/include/net/
H A Dnetlink.h498 * @NL_VALIDATE_NESTED: Check that NLA_F_NESTED is set for NLA_NESTED(_ARRAY)
1301 if (!(nla->nla_type & NLA_F_NESTED)) {
1302 NL_SET_ERR_MSG_ATTR(extack, nla, "NLA_F_NESTED is missing");
1905 * marked their nest attributes with NLA_F_NESTED flag. New APIs should use
1922 * nla_nest_start - Start a new level of nested attributes, with NLA_F_NESTED
1926 * Unlike nla_nest_start_noflag(), mark the nest attribute with NLA_F_NESTED
1933 return nla_nest_start_noflag(skb, attrtype | NLA_F_NESTED);
/linux-master/lib/
H A Dnlattr.c425 !(nla->nla_type & NLA_F_NESTED)) {
427 "NLA_F_NESTED is missing");
431 pt->type != NLA_UNSPEC && (nla->nla_type & NLA_F_NESTED)) {
433 "NLA_F_NESTED not expected");
/linux-master/net/bridge/
H A Dbr_netlink.c1109 if (protinfo->nla_type & NLA_F_NESTED) {
/linux-master/net/netfilter/ipset/
H A Dip_set_core.c271 return nla->nla_type & NLA_F_NESTED;
/linux-master/net/sched/
H A Dcls_flower.c961 if (!(nla_mpls_opts->nla_type & NLA_F_NESTED)) {
963 "NLA_F_NESTED is missing");
/linux-master/net/wireless/
H A Dnl80211.c14913 if (attr->nla_type & NLA_F_NESTED) {
14922 if (!(attr->nla_type & NLA_F_NESTED)) {

Completed in 290 milliseconds