Re: Kernel panic probably linked to inteldrm

2020-07-26 Thread Jérôme FRGACIC
Ok, after further investigations, my problem does not seems to be linked with inteldrm. The kernel panic seems to happen randomly with or without inteldrm enabled. Nevertheless, if I disable inteldrm, I can access ddb when the panic happen (I don't know why, BTW) and I get this. kernel: doub

Re: Python 3.8 os.listdir EINVAL on large directories

2020-07-26 Thread Alceu Rodrigues de Freitas Junior
I'm guessing that the usage of getdents was intentional: I've used this system call in the same situation (thousands of entries in a directory, inside a NFS exported directory) to avoid calling stat() in each entry returned by getdents. It is indead a "low level" system call, and usually readdir i

Re: Python 3.8 os.listdir EINVAL on large directories

2020-07-26 Thread Aaron Miller
Hi Alceu, Note that there are additional messages about this in tech@. --Aaron On July 26, 2020 8:53:00 AM PDT, Alceu Rodrigues de Freitas Junior wrote: >I'm guessing that the usage of getdents was intentional: I've used this >system call in the same situation (thousands of entries in a direc