lilzz
Posts: 411
Joined: Sat Nov 30, 2013 5:27 pm

A linux net driver with rtnl_link_ops

Mon Jul 07, 2014 6:05 pm

struct rtnl_link_ops batadv_link_ops __read_mostly = {
.kind = "batadv",
.priv_size = sizeof(struct batadv_priv),
.setup = batadv_softif_init_early,
.dellink = batadv_softif_destroy_netlink,
};
1)what's purpose of this rtnl_link_ops structure?

Return to “General discussion”