| 232 | } |
| 233 | |
| 234 | virtual ssize_t getxattr(const char *path, const char *name, void *value, size_t size) override |
| 235 | { |
| 236 | if (!underlay_xattrfs) |
| 237 | LOG_ERROR_RETURN(ENOTSUP, -1, "xattr is not supported by underlay fs"); |
| 238 | PathCat __(this, path); |
| 239 | return underlay_xattrfs->getxattr(path, name, value, size); |
| 240 | } |
| 241 | virtual ssize_t lgetxattr(const char *path, const char *name, void *value, size_t size) override |
| 242 | { |
| 243 | if (!underlay_xattrfs) |