Lines Matching refs:a
563 static int already_uses(struct module *a, struct module *b) in already_uses() argument
568 if (use->source == a) in already_uses()
571 pr_debug("%s does not use %s!\n", a->name, b->name); in already_uses()
582 static int add_module_usage(struct module *a, struct module *b) in add_module_usage() argument
586 pr_debug("Allocating new usage for %s.\n", a->name); in add_module_usage()
591 use->source = a; in add_module_usage()
594 list_add(&use->target_list, &a->target_list); in add_module_usage()
599 static int ref_module(struct module *a, struct module *b) in ref_module() argument
603 if (b == NULL || already_uses(a, b)) in ref_module()
611 err = add_module_usage(a, b); in ref_module()
794 unsigned long a = (unsigned long)dereference_function_descriptor(addr); in symbol_put_addr() local
796 if (core_kernel_text(a)) in symbol_put_addr()
804 modaddr = __module_text_address(a); in symbol_put_addr()
862 static int ref_module(struct module *a, struct module *b) in ref_module() argument