Home
last modified time | relevance | path

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

/linux/fs/ubifs/
H A Ddir.c332 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_create()
781 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_link()
851 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_unlink()
960 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_rmdir()
1032 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_mkdir()
1121 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_mknod()
1207 sz_change = CALC_DENT_SIZE(fname_len(&nm)); in ubifs_symlink()
1382 new_sz = CALC_DENT_SIZE(fname_len(&new_nm)); in do_rename()
1383 old_sz = CALC_DENT_SIZE(fname_len(&old_nm)); in do_rename()
1441 old_sz -= CALC_DENT_SIZE(fname_len(&old_nm)); in do_rename()
H A Dxattr.c126 host_ui->xattr_size += CALC_DENT_SIZE(fname_len(nm)); in create_xattr()
152 host_ui->xattr_size -= CALC_DENT_SIZE(fname_len(nm)); in create_xattr()
466 host_ui->xattr_size -= CALC_DENT_SIZE(fname_len(nm)); in remove_xattr()
480 host_ui->xattr_size += CALC_DENT_SIZE(fname_len(nm)); in remove_xattr()
H A Ddebug.c1153 size += CALC_DENT_SIZE(fname_len(&nm)); in dbg_check_dir()
2123 fscki1->calc_xsz += CALC_DENT_SIZE(nlen); in check_leaf()
2127 fscki1->calc_sz += CALC_DENT_SIZE(nlen); in check_leaf()
H A Dubifs.h113 #define CALC_DENT_SIZE(name_len) ALIGN(UBIFS_DENT_NODE_SZ + (name_len) + 1, 8) macro