* @throws IOException
*/
private void validateBlockSize(byte[] descriptor) throws IOException {
int blockSize = Util.getUInt16Both(descriptor, 129);
if (blockSize != Constants.DEFAULT_BLOCK_SIZE) {
throw new LoopFileSystemException("Invalid block size: " + blockSize);
}
}