@gregkh @vbabka @qyousef Well the problem is that it still requires manual effort to even include the clean up patch. The point I was making is that if a clean up patch causes a backport to fail, I still have to look at why instead of it just nicely being pulled in by the stable tag. The clean up in question, touched much more than the areas that failed, so it too may not backport properly.
@qyousef @vbabka Exactly. If you do clean ups in the code that you are modifying then all is OK, because the modifications you are making will cause the backports to fail anyway, so the clean ups do not cause extra work. But if you just have random clean ups in code that hasnāt changed in years, if a bug in that code is found, then the backports are going to be a pain fixing all previous version before the ācleanupā.
@qyousef false better than 0
is more for understanding that the value is a boolean an not to be taken as numeric. Sometimes that makes it easier to understand the logic. Iāve been trying to use boolean in those cases as well. This also is a requirement if you ever plan on using Rust š
I donāt mind clean up patches, but this is the reason a lot of Linux kernel maintainers frown on them.
https://lore.kernel.org/all/2023120938-unclamped-fleshy-688e@gregkh/
This failure is because of a clean up patch that converted everything to āboolā where it could be:
https://lore.kernel.org/all/20230305155532.5549-3-ubizjak@gmail.com/T/#u
If I had not accepted that clean up, this backport would have been pulled in automatically with no extra work from myself. But because I added that clean up, I now have to fix this for every stable release before that clean up š
Ha! ktest.pl
already does this!
Thank you Masayoshi Mizuma! You only added this feature back in 2019 š¤Ŗ
Except, it looks like it overwrote the default kernel, making my machine not able to boot the normal kernel. Had to play magic to get it back booting again.
Grub2 tries to make it so easy that it makes it suck for simply things.
@oleksandr I have several test boxes that have various boot loaders. This one I havenāt touched in a while, and is the first time I noticed it. It seems to be the default for Fedora (which Iām a Debian guy). I need to get it to work for ktest.pl
anyway, as others may need it.
OK, finally fixed it with:
grubby --add-kernel=/boot/vmlinuz-test --initrd=/boot/initramfs-test.img --title 'Test Kernel'
But now I have to figure out how to have ktest read this shit and know which option to set grub-reboot
to.
I really hate grub2
. Now they hide the menu entries in a separate directory. This really makes it difficult when testing kernels and adding tweaks to the command line. It now doesnāt seem to find my test kernel and I have no idea how to make it do so. š
@ptesarik @ljs @vbabka Noted. Thereās a lot of bad annotations, and most of them I ignore because they are not obvious that they are indeed wrong. Things like āstatsā use to be unlikely (before they were switched over to static_branch
). Because they were runtime switches and the idea is āif you have it disabled, you likely want it to be fasterā. So having it enabled would be 100% incorrect. But that was indeed the correct outcome.
Before sending any patch to fix or remove a likely/unlikely() I analyze it to understand the reason it is incorrect. I never blindly send a patch because the tool said so. I send it after I understand the situation. A lot of the fixes I have done were because the likely use to be correct, but a change occurred that made it incorrect. One example of this was a case that a condition was added before the unlikely annotation condition to always be true. The added condition exited the function in 90% of the cases that would have caused the unlikely condition to be unlikely. Now when that condition is hit, it was 90% likely.
Hereās an article I wrote while at VMware. Read it now before they take it down (VMware no longer exists!) I need to copy it too.
@ljs @vbabka This tooling has been around for over a decade. During the month of December, I figure I can run it on my server and workstation as this month is usually slower than other months. But I recently upgraded my server (28 cores / 56 hyperthreaded) and since the profiling updates a single integer (no locking, Iām looking for estimates not real numbers) but the cache line contention is making it impact this server much harder than my older server. It has actually slowed this down much more. Iām thinking of just running it for one week and not three like I use to.
Anyway, the likely/unlikely can be a big performance increase. I sped up the ftrace ring buffer by around 50% by placing strategic likely and unlikely around.
Itās the month of December. Do you know what that means? It means itās time to run my workstation and server with branch tracing enabled! https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/include/linux/compiler.h#n50