| 281 | return underlay_xattrfs->removexattr(path, name); |
| 282 | } |
| 283 | virtual int lremovexattr(const char *path, const char *name) override |
| 284 | { |
| 285 | if (!underlay_xattrfs) |
| 286 | LOG_ERROR_RETURN(ENOTSUP, -1, "xattr is not supported by underlay fs"); |
| 287 | PathCat __(this, path); |
| 288 | return underlay_xattrfs->lremovexattr(path, name); |
| 289 | } |
| 290 | }; |
| 291 | class SubFile : public ForwardFile_Ownership |
| 292 | { |