On Wed, Jan 7, 2015 at 4:58 PM, Rusty Russell <[email protected]> wrote: > --- a/kernel/bpf/core.c > +++ b/kernel/bpf/core.c > void bpf_jit_binary_free(struct bpf_binary_header *hdr) > { > - module_free(NULL, hdr); > + module_memfree(hdr); > } ... > -void __weak module_free(struct module *mod, void *module_region) > +void __weak module_memfree(void *module_region) > { > vfree(module_region); > }
Looks obviously correct. Acked-by: Alexei Starovoitov <[email protected]> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

