函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

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

函数名称:kset_create() - Create a struct kset dynamically

函数原型:static struct kset *kset_create(const char *name, const struct kset_uevent_ops *uevent_ops, struct kobject *parent_kobj)

返回类型:struct kset

参数:

类型参数名称
const char *name
const struct kset_uevent_ops *uevent_ops
struct kobject *parent_kobj
955  kset等于分配内存并置零
956  如果非kset则返回:NULL
958  retval等于kobject_set_name() - Set the name of a kobject
959  如果retval
960  释放内存
961  返回:NULL
963  uevent_ops等于uevent_ops
964  父设备指针等于parent_kobj
971  设备对象类型指针等于kset_ktype
972  设备组指针 = NULL
974  返回:kset
调用者
名称描述
kset_create_and_addkset_create_and_add() - Create a struct kset dynamically and add it to sysfs