困惑于创建二进制sysfs条目

时间:2017-11-28 07:47:31

标签: c linux-kernel sysfs

在内核4.0上,当单步执行sysfs_create_bin_file的内核源代码时,我注意到它传递给sysfs_add_file(kobj->sd, &attr->attr, true); &attr->attrstruct 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;
         ...
    }

1 个答案:

答案 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参数引用字段的名称)。