Skip to content

Commit

Permalink
rtnl: update the link attr TODOs
Browse files Browse the repository at this point in the history
Signed-off-by: Packet Please <pktpls@systemli.org>
  • Loading branch information
pktpls committed Sep 22, 2023
1 parent d394174 commit d150425
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/rtnl.c
Original file line number Diff line number Diff line change
Expand Up @@ -724,9 +724,7 @@ static const uc_nl_nested_spec_t link_msg = {
{ IFLA_BROADCAST, "broadcast", DT_LLADDR, 0, NULL },
{ IFLA_TXQLEN, "txqlen", DT_U32, 0, NULL },
{ IFLA_MTU, "mtu", DT_U32, 0, NULL },
/* { IFLA_NETNS_PID, "netns", DT_U32, 0, NULL }, */
{ IFLA_CARRIER, "carrier", DT_BOOL, 0, NULL },
/* IFLA_VFINFO_LIST */
{ IFLA_MASTER, "master", DT_NETDEV, DF_ALLOW_NONE, NULL },
{ IFLA_IFALIAS, "ifalias", DT_STRING, 0, NULL },
{ IFLA_LINKMODE, "linkmode", DT_U8, 0, NULL },
Expand All @@ -743,6 +741,10 @@ static const uc_nl_nested_spec_t link_msg = {
{ IFLA_LINKINFO, "linkinfo", DT_LINKINFO, 0, NULL }, /* XXX: DF_NO_GET ? */
{ IFLA_EXT_MASK, "ext_mask", DT_U32, 0, NULL },
{ IFLA_STATS64, "stats64", DT_NESTED, DF_NO_SET, &link_attrs_stats64_rta },
/* TODO: IFLA_VFINFO_LIST */
/* TODO: the following two should be straightforward, just uncomment and test */
/* { IFLA_NET_NS_PID, "net_ns_pid", DT_S32, 0, NULL }, */
/* { IFLA_NET_NS_FD, "net_ns_fd", DT_S32, 0, NULL }, */
}
};

Expand Down

0 comments on commit d150425

Please sign in to comment.