On Tue, Apr 23, 2024 at 02:03:29PM +0500, Muhammad Usama Anjum wrote: ... > > + pr_info("Usage: %s [-h] [-d <test name>]\n", name); > A little weird that we have pr_info named helper to print logs when it is a > userspace application, not kernel code. I'll check it in the source who > added it to the KVM tests. > It was me, as git-blame will easily show you. Why is it "weird"? Applications have needs for pr_info-like functions too, and the pr_info name isn't reserved for the kernel. The only thing weird I see is that I didn't differentiate pr_debug and pr_info messages. I probably should have at least given pr_debug output a 'debug:' prefix. Thanks, drew