函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\dynamic_debug.c Create Date:2022-07-27 08:14:22
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:Called in response to a module being unloaded. Removes* any ddebug_table's which point at the module.

函数原型:int ddebug_remove_module(const char *mod_name)

返回类型:int

参数:

类型参数名称
const char *mod_name
964  ret等于负ENOENT
966  vpr_info("removing module \"%s\"\n", mod_name)
968  mutex_lock( & ddebug_lock)
970  如果mod_name恒等于mod_name
971  ddebug_table_free(dt)
972  ret等于0
973  退出
976  mutex_unlock( & ddebug_lock)
977  返回:ret
调用者
名称描述
dynamic_debug_remove
free_moduleFree a module, remove from lists, etc.