Does anyone know what this httperf error means? Is this having a negative effect on my tests?

httperf: connection failed with unexpected error 105
link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

The numeric error code is an errno value. When errno is 105 (ENOBUFS) it means that there's no buffer space available. Ie, buy more RAM or reduce the maximum size of the buffers for TCP sockets.

To find out what the error code meant, I did:

grep 105 /usr/include/*/*errno*

which gave me:

/usr/include/asm-generic/errno.h:#define    ENOBUFS		105	/* No buffer space available */

Also wikipedia might have more details if you look for ENOBUFS.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.