diff options
author | Ulf Magnusson <ulfalizer@gmail.com> | 2015-09-02 14:34:52 +0200 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2015-09-13 14:38:50 -0600 |
commit | 390b421c42c8b749661f018818f1d34f339fc3b2 (patch) | |
tree | 3ce94a4a85f537cf7620e53870487a39331ee9c1 /Documentation/zh_CN | |
parent | 121e0248bdae1ddaebc26ef32975c3ac1692995e (diff) | |
download | talos-obmc-linux-390b421c42c8b749661f018818f1d34f339fc3b2.tar.gz talos-obmc-linux-390b421c42c8b749661f018818f1d34f339fc3b2.zip |
sysfs.txt: fix pre-kernfs sysfs_dirent reference
sysfs_dirent went away when kernfs was extracted from sysfs. The reference
to the kobject now lives in a kernfs_node (in the 'priv' member).
See commit 324a56e16e44 ("kernfs: s/sysfs_dirent/kernfs_node/ and rename
its friends accordingly").
Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/zh_CN')
-rw-r--r-- | Documentation/zh_CN/filesystems/sysfs.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/zh_CN/filesystems/sysfs.txt b/Documentation/zh_CN/filesystems/sysfs.txt index e230eaa33122..7d3b05edb8ce 100644 --- a/Documentation/zh_CN/filesystems/sysfs.txt +++ b/Documentation/zh_CN/filesystems/sysfs.txt @@ -61,7 +61,7 @@ Documentation/kobject.txt 文档以获得更多关于 kobject 接口的 内核的对象层次到用户空间。sysfs 中的顶层目录代表着内核对象层次的 共同祖先;例如:某些对象属于某个子系统。 -Sysfs 在与其目录关联的 sysfs_dirent 对象中内部保存一个指向实现 +Sysfs 在与其目录关联的 kernfs_node 对象中内部保存一个指向实现 目录的 kobject 的指针。以前,这个 kobject 指针被 sysfs 直接用于 kobject 文件打开和关闭的引用计数。而现在的 sysfs 实现中,kobject 引用计数只能通过 sysfs_schedule_callback() 函数直接修改。 |