https://bugzilla.kernel.org/show_bug.cgi?id=207173 --- Comment #11 from Mike Auty (mike.auty@xxxxxxxxx) --- I'm also experiencing this, but not on clang, on gcc-10.1.0. The initially proposed resolution: gfn_t nr_pages_avail = 0; succeeded. The alternative resolution: gfn uninitialized_var(nr_pages_avail); Needed to be changed to gfn_t uninitialized_var(nr_pages_avail); but also allowed compilation. The suggestion to mark __gfn_to_hva_many and gfn_to_hva_many as always inline failed to resolve the problem though. -- You are receiving this mail because: You are watching the assignee of the bug.