// txid -> list of images -> each image described by a property map
final Map<Long, List<Map<String, String>>> outputMap
= new HashMap<Long, List<Map<String, String>>>();
Map<File, StorageLocationType> images = null;
fsn.writeLock();
try {
// for now, we support only the latest checkpoint
lastCheckpointTxId = fsimage.storage.getMostRecentCheckpointTxId();
images = fsimage.storage.getImages(lastCheckpointTxId);
} finally {