Home
last modified time | relevance | path

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

/fs/hfsplus/
Dxattr.c496 u16 record_length = 0; in __hfsplus_getxattr() local
535 record_length = hfs_bnode_read_u16(fd.bnode, in __hfsplus_getxattr()
539 if (record_length > HFSPLUS_MAX_INLINE_DATA_SIZE) { in __hfsplus_getxattr()
558 raw_bytes) + record_length); in __hfsplus_getxattr()
561 if (size >= record_length) { in __hfsplus_getxattr()
562 memcpy(value, entry->inline_data.raw_bytes, record_length); in __hfsplus_getxattr()
563 res = record_length; in __hfsplus_getxattr()
565 res = size ? -ERANGE : record_length; in __hfsplus_getxattr()