diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-04-28 01:09:25 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-04-28 01:09:25 +0000 |
commit | b9ba7aeb165cffecdffb60aec8c3fa8d590d9ca9 (patch) | |
tree | 42d07b0c7246ae2536a702e7c5de9e2732341116 /include/linux/dcache.h | |
parent | 7406b0a326f2d70ade2671c37d1beef62249db97 (diff) |
Merge with 2.3.99-pre6.
Diffstat (limited to 'include/linux/dcache.h')
-rw-r--r-- | include/linux/dcache.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index f28b3bd9e..9ed7e0726 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h @@ -177,8 +177,8 @@ extern void d_rehash(struct dentry *); * @entry: dentry to add * @inode: The inode to attach to this dentry * - * This adds the entry to the hash queues and initializes "d_inode". - * The entry was actually filled in earlier during "d_alloc()" + * This adds the entry to the hash queues and initializes @inode. + * The entry was actually filled in earlier during d_alloc(). */ static __inline__ void d_add(struct dentry * entry, struct inode * inode) @@ -207,9 +207,9 @@ extern char * __d_path(struct dentry *, struct vfsmount *, struct dentry *, /** * dget - get a reference to a dentry - * @dentry: dentry to get a reference too + * @dentry: dentry to get a reference to * - * Given a dentry or NULL pointer increment the reference count + * Given a dentry or %NULL pointer increment the reference count * if appropriate and return the dentry. A dentry will not be * destroyed when it has references. */ @@ -225,7 +225,7 @@ static __inline__ struct dentry * dget(struct dentry *dentry) * d_unhashed - is dentry hashed * @dentry: entry to check * - * Returns true if the dentry passed is not currently hashed + * Returns true if the dentry passed is not currently hashed. */ static __inline__ int d_unhashed(struct dentry *dentry) |