Shirley Ma a écrit : > This patch is generated against 2.6 git tree. I didn't break up this > patch since it has one functionality. Please review it. > > Thanks > Shirley > > Signed-off-by: Shirley Ma <xma@xxxxxxxxxx> > ------ > > +void virtio_free_pages(void *buf) > +{ > + struct page *page = (struct page *)buf; > + > + while (page) { > + __free_pages(page, 0); > + page = (struct page *)page->private; > + } > +} > + Interesting use after free :) -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html