| 608 | } |
| 609 | |
| 610 | int FileSystem::fenumxattr(FileHandle file, AttributeEnumCallback callback, void* buffer, size_t bufsize) |
| 611 | { |
| 612 | CHECK_MOUNTED() |
| 613 | |
| 614 | auto smb = getMetaBuffer(file); |
| 615 | if(smb == nullptr) { |
| 616 | return Error::InvalidHandle; |
| 617 | } |
| 618 | |
| 619 | return smb->enumxattr(callback, buffer, bufsize); |
| 620 | } |
| 621 | |
| 622 | int FileSystem::setxattr(const char* path, AttributeTag tag, const void* data, size_t size) |
| 623 | { |