Home
last modified time | relevance | path

Searched refs:CALC_DENT_SIZE (Results 1 – 4 of 4) sorted by relevance

/linux-4.4.14/fs/ubifs/
Ddir.c250 int err, sz_change = CALC_DENT_SIZE(dentry->d_name.len); in ubifs_create()
506 int err, sz_change = CALC_DENT_SIZE(dentry->d_name.len); in ubifs_link()
560 int sz_change = CALC_DENT_SIZE(dentry->d_name.len); in ubifs_unlink()
651 int sz_change = CALC_DENT_SIZE(dentry->d_name.len); in ubifs_rmdir()
714 int err, sz_change = CALC_DENT_SIZE(dentry->d_name.len); in ubifs_mkdir()
778 int sz_change = CALC_DENT_SIZE(dentry->d_name.len); in ubifs_mknod()
855 int sz_change = CALC_DENT_SIZE(dentry->d_name.len); in ubifs_symlink()
978 int new_sz = CALC_DENT_SIZE(new_dentry->d_name.len); in ubifs_rename()
979 int old_sz = CALC_DENT_SIZE(old_dentry->d_name.len); in ubifs_rename()
Dxattr.c158 host_ui->xattr_size += CALC_DENT_SIZE(nm->len); in create_xattr()
174 host_ui->xattr_size -= CALC_DENT_SIZE(nm->len); in create_xattr()
520 host_ui->xattr_size -= CALC_DENT_SIZE(nm->len); in remove_xattr()
534 host_ui->xattr_size += CALC_DENT_SIZE(nm->len); in remove_xattr()
Ddebug.c1133 size += CALC_DENT_SIZE(nm.len); in dbg_check_dir()
2099 fscki1->calc_xsz += CALC_DENT_SIZE(nlen); in check_leaf()
2103 fscki1->calc_sz += CALC_DENT_SIZE(nlen); in check_leaf()
Dubifs.h143 #define CALC_DENT_SIZE(name_len) ALIGN(UBIFS_DENT_NODE_SZ + (name_len) + 1, 8) macro