net/tap: skip overwritten file descriptor assignment

pmd->fds[0], pmd->rxq[0] and pmd->txq[0] are set a couple of lines after
the for loop that initializes them to -1.

Signed-off-by: Pascal Mazon <pascal.mazon@6wind.com>
Acked-by: Keith Wiles <keith.wiles@intel.com>
This commit is contained in:
Pascal Mazon 2017-02-02 17:18:00 +01:00 committed by Ferruh Yigit
parent f48a8d6797
commit 455c14e974

View File

@ -644,7 +644,7 @@ eth_dev_tap_create(const char *name, char *tap_name)
}
/* Presetup the fds to -1 as being not working */
for (i = 0; i < RTE_PMD_TAP_MAX_QUEUES; i++) {
for (i = 1; i < RTE_PMD_TAP_MAX_QUEUES; i++) {
pmd->fds[i] = -1;
pmd->rxq[i].fd = -1;
pmd->txq[i].fd = -1;