Home
last modified time | relevance | path

Searched refs:adsize (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/fs/udf/
Dtruncate.c74 int adsize; in udf_truncate_tail_extent() local
85 adsize = sizeof(struct short_ad); in udf_truncate_tail_extent()
87 adsize = sizeof(struct long_ad); in udf_truncate_tail_extent()
105 epos.offset -= adsize; in udf_truncate_tail_extent()
107 epos.offset += adsize; in udf_truncate_tail_extent()
128 int adsize; in udf_discard_prealloc() local
136 adsize = sizeof(struct short_ad); in udf_discard_prealloc()
138 adsize = sizeof(struct long_ad); in udf_discard_prealloc()
140 adsize = 0; in udf_discard_prealloc()
150 epos.offset -= adsize; in udf_discard_prealloc()
[all …]
Dballoc.c449 int adsize; in udf_table_free_blocks() local
459 adsize = sizeof(struct short_ad); in udf_table_free_blocks()
461 adsize = sizeof(struct long_ad); in udf_table_free_blocks()
468 if (epos.offset + (2 * adsize) > sb->s_blocksize) { in udf_table_free_blocks()
489 if (epos.offset + adsize > sb->s_blocksize) { in udf_table_free_blocks()
491 aed->lengthAllocDescs = cpu_to_le32(adsize); in udf_table_free_blocks()
493 - adsize; in udf_table_free_blocks()
496 memcpy(dptr, sptr, adsize); in udf_table_free_blocks()
498 adsize; in udf_table_free_blocks()
500 loffset = epos.offset + adsize; in udf_table_free_blocks()
[all …]
Dinode.c608 int adsize; in udf_extend_file() local
614 adsize = sizeof(struct short_ad); in udf_extend_file()
616 adsize = sizeof(struct long_ad); in udf_extend_file()
641 epos.offset -= adsize; in udf_extend_file()
1872 int adsize; in udf_add_aext() local
1887 adsize = sizeof(struct short_ad); in udf_add_aext()
1889 adsize = sizeof(struct long_ad); in udf_add_aext()
1893 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) { in udf_add_aext()
1919 if (epos->offset + adsize > inode->i_sb->s_blocksize) { in udf_add_aext()
1921 aed->lengthAllocDescs = cpu_to_le32(adsize); in udf_add_aext()
[all …]