function alloc_file()
{
  if [ $# -gt 1 ]; then
    dd if=/dev/zero bs=1 of="${1}" count=0 seek=${2}
  else
    echo "${FUNCNAME} <path> <size> [K,M,G suffixes allowed]"
  fi
}