aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/smbfs
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/smbfs')
-rw-r--r--drivers/staging/smbfs/cache.c2
-rw-r--r--drivers/staging/smbfs/dir.c6
2 files changed, 5 insertions, 3 deletions
diff --git a/drivers/staging/smbfs/cache.c b/drivers/staging/smbfs/cache.c
index dbd2e1df3ba..0beded260b0 100644
--- a/drivers/staging/smbfs/cache.c
+++ b/drivers/staging/smbfs/cache.c
@@ -134,7 +134,7 @@ smb_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
134 qname->hash = full_name_hash(qname->name, qname->len); 134 qname->hash = full_name_hash(qname->name, qname->len);
135 135
136 if (dentry->d_op && dentry->d_op->d_hash) 136 if (dentry->d_op && dentry->d_op->d_hash)
137 if (dentry->d_op->d_hash(dentry, qname) != 0) 137 if (dentry->d_op->d_hash(dentry, inode, qname) != 0)
138 goto end_advance; 138 goto end_advance;
139 139
140 newdent = d_lookup(dentry, qname); 140 newdent = d_lookup(dentry, qname);
diff --git a/drivers/staging/smbfs/dir.c b/drivers/staging/smbfs/dir.c
index bd63229f43f..5f79799d5d4 100644
--- a/drivers/staging/smbfs/dir.c
+++ b/drivers/staging/smbfs/dir.c
@@ -274,7 +274,8 @@ smb_dir_open(struct inode *dir, struct file *file)
274 * Dentry operations routines 274 * Dentry operations routines
275 */ 275 */
276static int smb_lookup_validate(struct dentry *, struct nameidata *); 276static int smb_lookup_validate(struct dentry *, struct nameidata *);
277static int smb_hash_dentry(struct dentry *, struct qstr *); 277static int smb_hash_dentry(const struct dentry *, const struct inode *,
278 struct qstr *);
278static int smb_compare_dentry(const struct dentry *, 279static int smb_compare_dentry(const struct dentry *,
279 const struct inode *, 280 const struct inode *,
280 const struct dentry *, const struct inode *, 281 const struct dentry *, const struct inode *,
@@ -336,7 +337,8 @@ smb_lookup_validate(struct dentry * dentry, struct nameidata *nd)
336} 337}
337 338
338static int 339static int
339smb_hash_dentry(struct dentry *dir, struct qstr *this) 340smb_hash_dentry(const struct dentry *dir, const struct inode *inode,
341 struct qstr *this)
340{ 342{
341 unsigned long hash; 343 unsigned long hash;
342 int i; 344 int i;