]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/fs/hpfs/dentry.c | |
3 | * | |
4 | * Mikulas Patocka ([email protected]), 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 | ||
da53be12 | 15 | static int hpfs_hash_dentry(const struct dentry *dentry, struct qstr *qstr) |
1da177e4 LT |
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; | |
7e7742ee AV |
23 | hpfs_adjust_length(qstr->name, &l); |
24 | /*if (hpfs_chk_name(qstr->name,&l))*/ | |
1da177e4 LT |
25 | /*return -ENAMETOOLONG;*/ |
26 | /*return -ENOENT;*/ | |
27 | x: | |
28 | ||
8387ff25 | 29 | hash = init_name_hash(dentry); |
1da177e4 LT |
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 | ||
6fa67e70 | 37 | static int hpfs_compare_dentry(const struct dentry *dentry, |
621e155a | 38 | unsigned int len, const char *str, const struct qstr *name) |
1da177e4 | 39 | { |
621e155a NP |
40 | unsigned al = len; |
41 | unsigned bl = name->len; | |
42 | ||
43 | hpfs_adjust_length(str, &al); | |
7e7742ee | 44 | /*hpfs_adjust_length(b->name, &bl);*/ |
621e155a NP |
45 | |
46 | /* | |
47 | * 'str' is the nane of an already existing dentry, so the name | |
48 | * must be valid. 'name' must be validated first. | |
1da177e4 LT |
49 | */ |
50 | ||
621e155a | 51 | if (hpfs_chk_name(name->name, &bl)) |
7e7742ee | 52 | return 1; |
d3fe1985 | 53 | if (hpfs_compare_names(dentry->d_sb, str, al, name->name, bl, 0)) |
7e7742ee | 54 | return 1; |
1da177e4 LT |
55 | return 0; |
56 | } | |
57 | ||
43d344d7 | 58 | const struct dentry_operations hpfs_dentry_operations = { |
1da177e4 LT |
59 | .d_hash = hpfs_hash_dentry, |
60 | .d_compare = hpfs_compare_dentry, | |
61 | }; |