Home
last modified time | relevance | path

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

/linux-3.4.99/fs/udf/
Dtruncate.c75 int adsize; in udf_truncate_tail_extent() local
86 adsize = sizeof(struct short_ad); in udf_truncate_tail_extent()
88 adsize = sizeof(struct long_ad); in udf_truncate_tail_extent()
106 epos.offset -= adsize; in udf_truncate_tail_extent()
108 epos.offset += adsize; in udf_truncate_tail_extent()
129 int adsize; in udf_discard_prealloc() local
137 adsize = sizeof(struct short_ad); in udf_discard_prealloc()
139 adsize = sizeof(struct long_ad); in udf_discard_prealloc()
141 adsize = 0; in udf_discard_prealloc()
151 epos.offset -= adsize; in udf_discard_prealloc()
[all …]
Dballoc.c453 int adsize; in udf_table_free_blocks() local
463 adsize = sizeof(struct short_ad); in udf_table_free_blocks()
465 adsize = sizeof(struct long_ad); in udf_table_free_blocks()
472 if (epos.offset + (2 * adsize) > sb->s_blocksize) { in udf_table_free_blocks()
493 if (epos.offset + adsize > sb->s_blocksize) { in udf_table_free_blocks()
495 aed->lengthAllocDescs = cpu_to_le32(adsize); in udf_table_free_blocks()
497 - adsize; in udf_table_free_blocks()
500 memcpy(dptr, sptr, adsize); in udf_table_free_blocks()
502 adsize; in udf_table_free_blocks()
504 loffset = epos.offset + adsize; in udf_table_free_blocks()
[all …]
Dinode.c512 int adsize; in udf_extend_file() local
518 adsize = sizeof(struct short_ad); in udf_extend_file()
520 adsize = sizeof(struct long_ad); in udf_extend_file()
545 epos.offset -= adsize; in udf_extend_file()
1767 int adsize; in udf_add_aext() local
1782 adsize = sizeof(struct short_ad); in udf_add_aext()
1784 adsize = sizeof(struct long_ad); in udf_add_aext()
1788 if (epos->offset + (2 * adsize) > inode->i_sb->s_blocksize) { in udf_add_aext()
1814 if (epos->offset + adsize > inode->i_sb->s_blocksize) { in udf_add_aext()
1816 aed->lengthAllocDescs = cpu_to_le32(adsize); in udf_add_aext()
[all …]