Lines Matching refs:newport
1919 struct port *oldport, *newport, *tmpport; in conf_apply() local
1995 newport = port_find(newconf, oldport->p_name); in conf_apply()
1996 if (newport != NULL && !port_is_dummy(newport)) in conf_apply()
2115 TAILQ_FOREACH_SAFE(newport, &newconf->conf_ports, p_next, tmpport) { in conf_apply()
2116 if (port_is_dummy(newport)) in conf_apply()
2118 oldport = port_find(oldconf, newport->p_name); in conf_apply()
2121 log_debugx("adding port \"%s\"", newport->p_name); in conf_apply()
2122 error = kernel_port_add(newport); in conf_apply()
2124 log_debugx("updating port \"%s\"", newport->p_name); in conf_apply()
2125 newport->p_ctl_port = oldport->p_ctl_port; in conf_apply()
2126 error = kernel_port_update(newport, oldport); in conf_apply()
2131 newport->p_name); in conf_apply()
2133 port_delete(newport); in conf_apply()