MCPcopy Create free account
hub / github.com/alibaba/PhotonLibOS / lremovexattr

Method lremovexattr

fs/subfs.cpp:283–289  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers 1

OVERRIDE_ASYNCMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected