@monsieuricon You should see the emails we get for the Linux Plumbers Conference mailing list!
All Linux Plumbers Microconferences have been accepted for 2025!
You can now submit to a specific MC topic of your choosing.
https://lpc.events/blog/current/index.php/2025/07/25/all-microconferences-have-been-accepted/
Linux Plumbers Refereed track and Microconference proposals are now open for submission! https://lpc.events/blog/current/index.php/2025/05/14/submission-time-for-linux-plumbers-2025/
A ftrace selftest just failed due to the differences between bash and dash on how they interpret backslashes (\
).
Bash will evaluate it once, where as dash will evaluate it every time.
i=123
TEST="\\$i"
echo "$TEST"
Bash will show: \123
where as dash will echo out the escape sequence of “123”.
A kprobe event self test needed to test the max number of arguments, where each argument held a backslash followed by a number. It created it with the loop:
TEST_STRING=$1
# Acceptable
for i in `seq 1 $MAX_ARGS`; do
TEST_STRING="$TEST_STRING \\$i"
done
echo "$TEST_STRING" >> dynamic_events
Which worked fine when /bin/sh
was bash, but when /bin/sh
was dash, it failed!
And checkbashisms did NOT catch it!
Just added tab completion for trace-cmd sqlhist
for making synthetic events with the sql interface so much easier!
I’ve been wanting to add to trace-cmd start
a way to make it start quicker. It’s currently slow because it resets most of tracefs before starting, and that can take seconds.
I forgot I already have this feature! trace-cmd set
acts just like start, but it does not do the reset before starting. It’s very quick!
Note, it also does not re-enable tracing if it’s disabled. So you may want to run trace-cmd restart
right after that, if that’s the case.
@vbabka @monsieuricon There’s nothing that says you can’t first create a bug in the mm system then follow it with the fix to give you kernel.org access. That would be a strong captcha!
-Werror
is great, until you need to debug an older kernel 😛
I think this is the first time I ever used the quadratic equation for a real purpose since college! 🤔
https://lore.kernel.org/lkml/20250204172045.3a5d8d01@gandalf.local.home/