Excerpts from Haren Myneni's message of April 18, 2021 7:08 am: > +static int deallocate_free_window(struct vas_window *win) > +{ > + int rc = 0; > + > + rc = plpar_vas_deallocate_window(win->winid); > + if (!rc) > + kfree(win->lpar.name); Oh, did this kfree sneak in here? The allocation appears in patch 11 I think. Thanks, Nick