1DENTRY_UPDATE_NAME_C(9) The Linux VFS DENTRY_UPDATE_NAME_C(9)
2
3
4
6 dentry_update_name_case - update case insensitive dentry with a new
7 name
8
10 void dentry_update_name_case(struct dentry * dentry,
11 struct qstr * name);
12
14 dentry
15 dentry to be updated
16
17 name
18 new name
19
21 Update a case insensitive dentry with new case of name.
22
23 dentry must have been returned by d_lookup with name name. Old and new
24 name lengths must match (ie. no d_compare which allows mismatched name
25 lengths).
26
27 Parent inode i_mutex must be held over d_lookup and into this call (to
28 keep renames and concurrent inserts, and readdir(2) away).
29
31Kernel Hackers Manual 3.10 June 2019 DENTRY_UPDATE_NAME_C(9)