• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/isofs/

Lines Matching refs:dentry

30 static int isofs_hashi(struct dentry *parent, struct qstr *qstr);
31 static int isofs_hash(struct dentry *parent, struct qstr *qstr);
32 static int isofs_dentry_cmpi(struct dentry *dentry, struct qstr *a, struct qstr *b);
33 static int isofs_dentry_cmp(struct dentry *dentry, struct qstr *a, struct qstr *b);
36 static int isofs_hashi_ms(struct dentry *parent, struct qstr *qstr);
37 static int isofs_hash_ms(struct dentry *parent, struct qstr *qstr);
38 static int isofs_dentry_cmpi_ms(struct dentry *dentry, struct qstr *a, struct qstr *b);
39 static int isofs_dentry_cmp_ms(struct dentry *dentry, struct qstr *a, struct qstr *b);
58 static int isofs_statfs (struct dentry *, struct kstatfs *);
159 * Compute the hash for the isofs name corresponding to the dentry.
162 isofs_hash_common(struct dentry *dentry, struct qstr *qstr, int ms)
180 * Compute the hash for the isofs name corresponding to the dentry.
183 isofs_hashi_common(struct dentry *dentry, struct qstr *qstr, int ms)
210 static int isofs_dentry_cmpi_common(struct dentry *dentry, struct qstr *a,
234 static int isofs_dentry_cmp_common(struct dentry *dentry, struct qstr *a,
256 isofs_hash(struct dentry *dentry, struct qstr *qstr)
258 return isofs_hash_common(dentry, qstr, 0);
262 isofs_hashi(struct dentry *dentry, struct qstr *qstr)
264 return isofs_hashi_common(dentry, qstr, 0);
268 isofs_dentry_cmp(struct dentry *dentry,struct qstr *a,struct qstr *b)
270 return isofs_dentry_cmp_common(dentry, a, b, 0);
274 isofs_dentry_cmpi(struct dentry *dentry,struct qstr *a,struct qstr *b)
276 return isofs_dentry_cmpi_common(dentry, a, b, 0);
281 isofs_hash_ms(struct dentry *dentry, struct qstr *qstr)
283 return isofs_hash_common(dentry, qstr, 1);
287 isofs_hashi_ms(struct dentry *dentry, struct qstr *qstr)
289 return isofs_hashi_common(dentry, qstr, 1);
293 isofs_dentry_cmp_ms(struct dentry *dentry,struct qstr *a,struct qstr *b)
295 return isofs_dentry_cmp_common(dentry, a, b, 1);
299 isofs_dentry_cmpi_ms(struct dentry *dentry,struct qstr *a,struct qstr *b)
301 return isofs_dentry_cmpi_common(dentry, a, b, 1);
836 /* get the root dentry */
891 static int isofs_statfs (struct dentry *dentry, struct kstatfs *buf)
893 struct super_block *sb = dentry->d_sb;