| 1419 | DO_EXT2FS(do_ext2fs_setxattr(fs, path, name, value, size, flags, 0)); |
| 1420 | } |
| 1421 | int removexattr(const char *path, const char *name) override { |
| 1422 | DO_EXT2FS(do_ext2fs_removexattr(fs, path, name, 1)); |
| 1423 | } |
| 1424 | int lremovexattr(const char *path, const char *name) override { |
| 1425 | DO_EXT2FS(do_ext2fs_removexattr(fs, path, name, 0)); |
| 1426 | } |