num_compl_pkts

Hi!

Sometimes when I reboot computer I got a message:
Code:
num_compl_pkts:  - invalid connection handle=11
I reboot again and everything is okay. Also if I ignore ot looks like everything works.

What above message mean, please?

And the other is one related to python which I have on about two years:
Code:
WARNING pid 1328 (python2.7): ioctl sign-extension ioctl ffffffff80087467

Thank you.
 
And the other is one related to python which I have on about two years:
Code:
WARNING pid 1328 (python2.7): ioctl sign-extension ioctl ffffffff80087467
It come from some application coded in python and not python itself.

Here an example of an application which was showing that behavior and that was already fixed:
https://llvm.org/bugs/show_bug.cgi?id=18749
https://github.com/pexpect/pexpect/issues/39

You should be able identify the offending application by its reported pid, using ps -p <PID> , if the application is still running when you notice the warning.
 
It come from some application coded in python and not python itself.

Here an example of an application which was showing that behavior and that was already fixed:
https://llvm.org/bugs/show_bug.cgi?id=18749
https://github.com/pexpect/pexpect/issues/39

You should be able identify the offending application by its reported pid, using ps -p <PID> , if the application is still running when you notice the warning.

Thank you but everytime when I run ps -p <PID> is to late because the application doesn't run :).
 
You can narrow down a sort of "list of suspected" by using:
Code:
# list of packages directly depending on python27
pkg info -r python27
#
#
# the following will give the full list of packages directly or indirectly depending on python27
pkg remove -n python27
The bug should be in one (or more) of the packages listed from the first command, the running application could be any of the packages listed in the second. Not much of help, I know.
 
Back
Top