在内核4.0上,当单步执行sysfs_create_bin_file
的内核源代码时,我注意到它传递给sysfs_add_file(kobj->sd, &attr->attr, true);
&attr->attr
是struct attribute
结构bin_attribute
结构。
这是有道理的,直到我访问sysfs_add_file_mode_ns
,直接从sysfs_add_file
调用,line #277设置临时变量stuct bin_attribute *battr = (void*)attr;
此时是否指向struct attribute
,如何将其解析为正确的结构(由于在{{3}上使用sysfs_add_file
调用&attr->attr
})?
代码
int sysfs_create_bin_file(struct kobject *kobj,
const struct bin_attribute *attr)
{
BUG_ON(!kobj || !kobj->sd || !attr);
return sysfs_add_file(kobj->sd, &attr->attr, true);
}
int sysfs_add_file(struct kernfs_node *parent, const struct attribute *attr,
bool is_bin)
{
return sysfs_add_file_mode_ns(parent, attr, is_bin, attr->mode, NULL);
}
int sysfs_add_file_mode_ns(struct kernfs_node *parent,
const struct attribute *attr, bool is_bin,
umode_t mode, const void *ns)
{
struct lock_class_key *key = NULL;
const struct kernfs_ops *ops;
struct kernfs_node *kn;
loff_t size;
if (!is_bin) {
...
} else {
struct bin_attribute *battr = (void *)attr;
...
}
答案 0 :(得分:1)
行
stuct bin_attribute *battr = (void*)attr;
从bin_attribute
类型第一个字段 attr
的指针正确获取指向struct attribute
结构的指针。
通常,Linux内核开发人员倾向于使用container_of
宏来获取指向结构类型的指针,知道指向其字段的指针。更多"规范"以上转型的方式是:
stuct bin_attribute *battr = container_of(attr, struct device_attribute, attr);
(在此调用中,第一个attr
参数引用指针,第三个attr
参数引用字段的名称)。