(self, path)
| 242 | return super(NFSFileVDI, self).attach(sr_uuid, vdi_uuid) |
| 243 | |
| 244 | def get_mtime(self, path): |
| 245 | st = util.ioretry_stat(lambda: os.stat(path)) |
| 246 | return st[stat.ST_MTIME] |
| 247 | |
| 248 | def clone(self, sr_uuid, vdi_uuid): |
| 249 | timestamp_before = int(self.get_mtime(self.sr.path)) |