Loading CHANGELOG.md +1 −0 Original line number Diff line number Diff line Loading @@ -8,6 +8,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ### New - Added syscall support for listxattr family ([!186](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_request/186)). - Remove optimization, removing one RPC per operation ([!195](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_request/195)). - Added the GekkoFS proxy as an optional gateway between client and daemon. The proxy is started on each compute node that houses clients ([!191](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_request/191)). Loading src/client/hooks.cpp +2 −1 Original line number Diff line number Diff line Loading @@ -1025,7 +1025,8 @@ hook_llistxattr(const char* path, char* list, size_t size) { ssize_t hook_flistxattr(int fd, char* list, size_t size) { LOG(DEBUG, "{}() called with fd '{}' list '{}' size '{}'", __func__, fd, list, size); LOG(DEBUG, "{}() called with fd '{}' list '{}' size '{}'", __func__, fd, list, size); if(CTX->file_map()->exist(fd)) { return -ENOTSUP; Loading Loading
CHANGELOG.md +1 −0 Original line number Diff line number Diff line Loading @@ -8,6 +8,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] ### New - Added syscall support for listxattr family ([!186](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_request/186)). - Remove optimization, removing one RPC per operation ([!195](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_request/195)). - Added the GekkoFS proxy as an optional gateway between client and daemon. The proxy is started on each compute node that houses clients ([!191](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_request/191)). Loading
src/client/hooks.cpp +2 −1 Original line number Diff line number Diff line Loading @@ -1025,7 +1025,8 @@ hook_llistxattr(const char* path, char* list, size_t size) { ssize_t hook_flistxattr(int fd, char* list, size_t size) { LOG(DEBUG, "{}() called with fd '{}' list '{}' size '{}'", __func__, fd, list, size); LOG(DEBUG, "{}() called with fd '{}' list '{}' size '{}'", __func__, fd, list, size); if(CTX->file_map()->exist(fd)) { return -ENOTSUP; Loading