BenBE
BenBE
> [@BenBE](https://github.com/BenBE) Thank you for details, I will give it a try, but I already achieved acceptable `ls` performance by lowering `metadata max` setting to single page size = 2KB...
Thank you for your detailed response. Reading through it, it looks like the proposed migration path will likely boil down to the following: 1. Migrations should be applied incrementally 2....
Mind to include the `objdump` as noted in the crash message? TIA.
While this should be fairly simple to reproduce, it's sometimes better to track the issue directly back from the binary as issues with seemingly identical symptoms sometimes may have different...
Offset: 0x55a114c5c000 There is an `assert(existing == currExisting);` in `LinuxMachine_updateCPUcount`, that would normally hit in debug builds. A quick and dirty hack could be done like this: ```diff diff --git...
It wouldn't hurt to have the sorting at least consistent across int/float metrics. FWIW: Having N/A values at the top is rarely what you want.
Yes and no. There's the option of always putting N/A at the bottom, regardless of sorting order.
Does the documentation mention that this argument is required and that it must be non-NULL? AFAICS it does not. Does the code inside the function make sense to be executed...
Looking at https://github.com/littlefs-project/littlefs/blob/adad0fbbcf5382c20978d07f94f9c13be9041c1b/lfs.c#L1387-L1393 we enter `lfs_dir_fetchmatch` with `ftag==-1` and `fmask==-1`, i.e. both having all bits set. The crash later happens in https://github.com/littlefs-project/littlefs/blob/adad0fbbcf5382c20978d07f94f9c13be9041c1b/lfs.c#L1292-L1301 which only is reached if while reading the...
Please squash/fixup changes into the original commit by rebasing. Details are in the style guide.