eal: remove useless errno

There is no remaining reference to E_RTE_NO_TAILQ.

Signed-off-by: David Marchand <david.marchand@6wind.com>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
This commit is contained in:
David Marchand 2015-03-04 22:50:10 +01:00 committed by Thomas Monjalon
parent 95b6a46fa6
commit da0113c539
3 changed files with 1 additions and 4 deletions

View File

@ -58,7 +58,7 @@ test_errno(void)
/* use a small selection of standard errors for testing */
int std_errs[] = {EAGAIN, EBADF, EACCES, EINTR, EINVAL};
/* test ALL registered RTE error codes for overlap */
int rte_errs[] = {E_RTE_SECONDARY, E_RTE_NO_CONFIG, E_RTE_NO_TAILQ};
int rte_errs[] = {E_RTE_SECONDARY, E_RTE_NO_CONFIG};
unsigned i;
rte_errno = 0;

View File

@ -64,8 +64,6 @@ rte_strerror(int errnum)
return "Invalid call in secondary process";
case E_RTE_NO_CONFIG:
return "Missing rte_config structure";
case E_RTE_NO_TAILQ:
return "No TAILQ initialised";
default:
strerror_r(errnum, RTE_PER_LCORE(retval), RETVAL_SZ);
}

View File

@ -84,7 +84,6 @@ enum {
E_RTE_SECONDARY, /**< Operation not allowed in secondary processes */
E_RTE_NO_CONFIG, /**< Missing rte_config */
E_RTE_NO_TAILQ, /**< Uninitialised TAILQ */
RTE_MAX_ERRNO /**< Max RTE error number */
};