CLI: If an error happens on the socket being polled, then the CLI

does not close the socket. Resulting in the main thread being stuck
in a tight infinite loop polling on the erronous socket.

Change-Id: I630b84b97c059acce117d56e41cd201131db4cab
Signed-off-by: Ole Troan <ot@cisco.com>
This commit is contained in:
Ole Troan 2016-01-27 23:37:58 +02:00
parent efe710fe56
commit 4b12b3c35a

View File

@ -195,6 +195,8 @@ linux_epoll_input (vlib_main_t * vm,
errors[n_errors] = f->error_function (f);
n_errors += errors[n_errors] != 0;
}
else
close(f->file_descriptor);
}
ASSERT (n_errors < ARRAY_LEN (errors));