Make cltd ignore HA ports.

This commit is contained in:
Alexander Motin 2015-09-21 10:27:30 +00:00
parent 1496229a91
commit e543b3a83f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=288061

View File

@ -119,6 +119,7 @@ struct cctl_lun {
struct cctl_port {
uint32_t port_id;
char *port_frontend;
char *port_name;
int pp;
int vp;
@ -331,7 +332,10 @@ cctl_end_pelement(void *user_data, const char *name)
devlist->cur_sb[devlist->level] = NULL;
devlist->level--;
if (strcmp(name, "port_name") == 0) {
if (strcmp(name, "frontend_type") == 0) {
cur_port->port_frontend = str;
str = NULL;
} else if (strcmp(name, "port_name") == 0) {
cur_port->port_name = str;
str = NULL;
} else if (strcmp(name, "physical_port") == 0) {
@ -506,6 +510,8 @@ conf_new_from_kernel(void)
name = NULL;
STAILQ_FOREACH(port, &devlist.port_list, links) {
if (strcmp(port->port_frontend, "ha") == 0)
continue;
if (name)
free(name);
if (port->pp == 0 && port->vp == 0)