On (11/21/15 11:15), Sergey Senozhatsky wrote: [..] > > with the only nit that the subject should be "try kmalloc() before vmalloc()" > or similar, not "prevent page allocation failure", I think. >
Oh, and one more thing > static void zcomp_lz4_destroy(void *private) > { > - kfree(private); > + if (is_vmalloc_addr(private)) > + vfree(private); > + else > + kfree(private); > } static void zcomp_FOO_destroy(void *private) { kvfree(private); } -ss -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/