blob: 67d9d36b3d5fa05534b0a0abe320da25292e839d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/hpfs/dentry.c
3 *
4 * Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999
5 *
6 * dcache operations
7 */
8
9#include "hpfs_fn.h"
10
11/*
12 * Note: the dentry argument is the parent dentry.
13 */
14
15static int hpfs_hash_dentry(struct dentry *dentry, struct qstr *qstr)
16{
17 unsigned long hash;
18 int i;
19 unsigned l = qstr->len;
20
21 if (l == 1) if (qstr->name[0]=='.') goto x;
22 if (l == 2) if (qstr->name[0]=='.' || qstr->name[1]=='.') goto x;
Al Viro7e7742e2010-01-31 17:09:29 -050023 hpfs_adjust_length(qstr->name, &l);
24 /*if (hpfs_chk_name(qstr->name,&l))*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 /*return -ENAMETOOLONG;*/
26 /*return -ENOENT;*/
27 x:
28
29 hash = init_name_hash();
30 for (i = 0; i < l; i++)
31 hash = partial_name_hash(hpfs_upcase(hpfs_sb(dentry->d_sb)->sb_cp_table,qstr->name[i]), hash);
32 qstr->hash = end_name_hash(hash);
33
34 return 0;
35}
36
37static int hpfs_compare_dentry(struct dentry *dentry, struct qstr *a, struct qstr *b)
38{
39 unsigned al=a->len;
40 unsigned bl=b->len;
Al Viro7e7742e2010-01-31 17:09:29 -050041 hpfs_adjust_length(a->name, &al);
42 /*hpfs_adjust_length(b->name, &bl);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 /* 'a' is the qstr of an already existing dentry, so the name
44 * must be valid. 'b' must be validated first.
45 */
46
Al Viro7e7742e2010-01-31 17:09:29 -050047 if (hpfs_chk_name(b->name, &bl))
48 return 1;
49 if (hpfs_compare_names(dentry->d_sb, a->name, al, b->name, bl, 0))
50 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 return 0;
52}
53
Al Viroe16404e2009-02-20 05:55:13 +000054static const struct dentry_operations hpfs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .d_hash = hpfs_hash_dentry,
56 .d_compare = hpfs_compare_dentry,
57};
58
59void hpfs_set_dentry_operations(struct dentry *dentry)
60{
61 dentry->d_op = &hpfs_dentry_operations;
62}