Lines Matching refs:new_headroom
2110 static void ovs_update_headroom(struct datapath *dp, unsigned int new_headroom) in ovs_update_headroom() argument
2115 dp->max_headroom = new_headroom; in ovs_update_headroom()
2119 netdev_set_rx_headroom(vport->dev, new_headroom); in ovs_update_headroom()
2131 unsigned int new_headroom; in ovs_vport_cmd_new() local
2193 new_headroom = netdev_get_fwd_headroom(vport->dev); in ovs_vport_cmd_new()
2195 if (new_headroom > dp->max_headroom) in ovs_vport_cmd_new()
2196 ovs_update_headroom(dp, new_headroom); in ovs_vport_cmd_new()
2272 unsigned int new_headroom; in ovs_vport_cmd_del() local
2304 new_headroom = ovs_get_max_headroom(dp); in ovs_vport_cmd_del()
2306 if (new_headroom < dp->max_headroom) in ovs_vport_cmd_del()
2307 ovs_update_headroom(dp, new_headroom); in ovs_vport_cmd_del()