ByteBuffer graph = access.read(pos - bytes, bytes);
byte[] b = new byte[bytes - 16];
graph.mark();
graph.get(b);
graph.reset();
CRC32 checksum = new CRC32();
checksum.update(b);
if (crc32 != (int) checksum.getValue()) {
log.warn("Invalid graph checksum in tar file {}", file);