/* SPDX-License-Identifier: GPL-2.0 *//* * nexthops in net namespaces */#ifndef __NETNS_NEXTHOP_H__#define __NETNS_NEXTHOP_H__#include<linux/rbtree.h>structnetns_nexthop{structrb_rootrb_root;/* tree of nexthops by id */structhlist_head*devhash;/* nexthops by device */unsignedintseq;/* protected by rtnl_mutex */u32last_id_allocated;};#endif