Home
last modified time | relevance | path

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

/fs/hfsplus/
Dxattr.c315 u16 record_length = 0; in hfsplus_getxattr() local
366 record_length = hfs_bnode_read_u16(fd.bnode, in hfsplus_getxattr()
370 if (record_length > HFSPLUS_MAX_INLINE_DATA_SIZE) { in hfsplus_getxattr()
389 raw_bytes) + record_length); in hfsplus_getxattr()
392 if (size >= record_length) { in hfsplus_getxattr()
393 memcpy(value, entry->inline_data.raw_bytes, record_length); in hfsplus_getxattr()
394 res = record_length; in hfsplus_getxattr()
396 res = size ? -ERANGE : record_length; in hfsplus_getxattr()