On Fri, Sep 9, 2022 at 12:01 AM Andrew Jones andrew.jones@linux.dev wrote: ...
void __attribute__ ((constructor)) kvm_selftest_init(void) { /* Tell stdout not to buffer its content. */ setbuf(stdout, NULL);
kvm_selftest_arch_init();
}
Per-arch:
void kvm_selftest_arch_init(void) { /* arch-specific pre-main stuff */ }
WFM and I think that's what Vishal was suggesting as well.
Yes, this matches with what I was suggesting. Planning to post this update in the next series.
- Vishal
Thanks, drew