]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
sysfs.txt: fix pre-kernfs sysfs_dirent reference
authorUlf Magnusson <ulfalizer@gmail.com>
Wed, 2 Sep 2015 12:34:52 +0000 (14:34 +0200)
committerJonathan Corbet <corbet@lwn.net>
Sun, 13 Sep 2015 20:38:50 +0000 (14:38 -0600)
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>
Documentation/filesystems/sysfs.txt
Documentation/zh_CN/filesystems/sysfs.txt

index 9494afb9476a4b667224fe220fa4ca5ee16ac9ba..78170ed7bfded1c51ea9c21ee8a4ad67e677e8e8 100644 (file)
@@ -40,7 +40,7 @@ ancestors of object hierarchies; i.e. the subsystems the objects
 belong to. 
 
 Sysfs internally stores a pointer to the kobject that implements a
-directory in the sysfs_dirent object associated with the directory. In
+directory in the kernfs_node object associated with the directory. In
 the past this kobject pointer has been used by sysfs to do reference
 counting directly on the kobject whenever the file is opened or closed.
 With the current sysfs implementation the kobject reference count is
index e230eaa331226901582f33d030af73499a9b9f5d..7d3b05edb8ce368a8c35196dafc03b8848137ee7 100644 (file)
@@ -61,7 +61,7 @@ Documentation/kobject.txt 文档以获得更多关于 kobject 接口的
 内核的对象层次到用户空间。sysfs 中的顶层目录代表着内核对象层次的
 共同祖先;例如:某些对象属于某个子系统。
 
-Sysfs 在与其目录关联的 sysfs_dirent 对象中内部保存一个指向实现
+Sysfs 在与其目录关联的 kernfs_node 对象中内部保存一个指向实现
 目录的 kobject 的指针。以前,这个 kobject 指针被 sysfs 直接用于
 kobject 文件打开和关闭的引用计数。而现在的 sysfs 实现中,kobject
 引用计数只能通过 sysfs_schedule_callback() 函数直接修改。