1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/hpfs/dentry.c
5 * Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999
13 * Note: the dentry argument is the parent dentry.
16 static int hpfs_hash_dentry(const struct dentry
*dentry
, struct qstr
*qstr
)
20 unsigned l
= qstr
->len
;
22 if (l
== 1) if (qstr
->name
[0]=='.') goto x
;
23 if (l
== 2) if (qstr
->name
[0]=='.' || qstr
->name
[1]=='.') goto x
;
24 hpfs_adjust_length(qstr
->name
, &l
);
25 /*if (hpfs_chk_name(qstr->name,&l))*/
26 /*return -ENAMETOOLONG;*/
30 hash
= init_name_hash(dentry
);
31 for (i
= 0; i
< l
; i
++)
32 hash
= partial_name_hash(hpfs_upcase(hpfs_sb(dentry
->d_sb
)->sb_cp_table
,qstr
->name
[i
]), hash
);
33 qstr
->hash
= end_name_hash(hash
);
38 static int hpfs_compare_dentry(const struct dentry
*dentry
,
39 unsigned int len
, const char *str
, const struct qstr
*name
)
42 unsigned bl
= name
->len
;
44 hpfs_adjust_length(str
, &al
);
45 /*hpfs_adjust_length(b->name, &bl);*/
48 * 'str' is the nane of an already existing dentry, so the name
49 * must be valid. 'name' must be validated first.
52 if (hpfs_chk_name(name
->name
, &bl
))
54 if (hpfs_compare_names(dentry
->d_sb
, str
, al
, name
->name
, bl
, 0))
59 const struct dentry_operations hpfs_dentry_operations
= {
60 .d_hash
= hpfs_hash_dentry
,
61 .d_compare
= hpfs_compare_dentry
,