Lines Matching full:mods
814 struct module **mods; member
834 match->mods[match->index] = mod; in filter_match_callback()
845 * is passed with an array, we need to pass the an @mods array of the same size
847 * This means we also need to call `module_put` for each element of @mods after
851 unsigned long *addrs, struct module **mods, in get_ips_from_filter() argument
855 .index = 0, .size = size, .addrs = addrs, .mods = mods}; in get_ips_from_filter()
858 if (addrs && !mods) in get_ips_from_filter()
935 struct module **mods __free(kfree) = NULL; in register_fprobe()
949 mods = kzalloc_objs(*mods, num); in register_fprobe()
950 if (!mods) in register_fprobe()
953 ret = get_ips_from_filter(filter, notfilter, addrs, mods, num); in register_fprobe()
960 if (mods[i]) in register_fprobe()
961 module_put(mods[i]); in register_fprobe()