| 1360 | DO_EXT2FS(do_ext2fs_utimes(fs, path, tv, 1)); |
| 1361 | } |
| 1362 | int lutimes(const char *path, const struct timeval tv[2]) override { |
| 1363 | DO_EXT2FS(do_ext2fs_utimes(fs, path, tv, 0)); |
| 1364 | } |
| 1365 | int chown(const char *path, uid_t owner, gid_t group) override { |
| 1366 | DO_EXT2FS(do_ext2fs_chown(fs, path, owner, group, 1)) |
| 1367 | } |