diff options
author | Zhaolei <zhaolei@cn.fujitsu.com> | 2008-12-01 17:34:58 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-12-31 18:07:40 -0500 |
commit | be42c4c433c2c0d3f1583c08908fead00d36d222 (patch) | |
tree | 4553430fa44429b1127a4ef8649380b3bce4f9eb /Documentation | |
parent | dc711ca35f9d95a1eec02118e0c298b5e3068315 (diff) |
correct wrong function name of d_put in kernel document and source comment
no function named d_put(), it should be dput().
Impact: fix document and comment, no functionality changed
Signed-off-by: Zhao Lei <zhaolei@cn.fuijtsu.com>
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/filesystems/vfs.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/filesystems/vfs.txt b/Documentation/filesystems/vfs.txt index 5579bda58a6d..041cb771d505 100644 --- a/Documentation/filesystems/vfs.txt +++ b/Documentation/filesystems/vfs.txt | |||
@@ -931,7 +931,7 @@ manipulate dentries: | |||
931 | d_lookup: look up a dentry given its parent and path name component | 931 | d_lookup: look up a dentry given its parent and path name component |
932 | It looks up the child of that given name from the dcache | 932 | It looks up the child of that given name from the dcache |
933 | hash table. If it is found, the reference count is incremented | 933 | hash table. If it is found, the reference count is incremented |
934 | and the dentry is returned. The caller must use d_put() | 934 | and the dentry is returned. The caller must use dput() |
935 | to free the dentry when it finishes using it. | 935 | to free the dentry when it finishes using it. |
936 | 936 | ||
937 | For further information on dentry locking, please refer to the document | 937 | For further information on dentry locking, please refer to the document |