代码之家  ›  专栏  ›  技术社区  ›  Twifty Andy

可供sysfs读取的最大字节数

  •  1
  • Twifty Andy  · 技术社区  · 6 年前

    sysfs show 添加到 kobj_attribute 结构。原型 the function is defined as

    ssize_t (*show)(struct kobject *kobj, struct kobj_attribute *attr,
                char *buf);
    

    显然我需要把数据写到 buf 参数,但是可以写入的字节数的上限是多少?它的定义在哪里?

    1 回复  |  直到 6 年前
        1
  •  4
  •   Stack Exchange Supports Israel    6 年前

    根据 Documentation/filesystems/sysfs.txt PAGE_SIZE 字节。