Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Cleaned up deinitialization of VMM and free of VMs
[palacios.git] / linux_module / main.c
index 99ec9e8..4d09399 100644 (file)
@@ -481,7 +481,7 @@ static int read_info(struct seq_file *s, void *v)
     if (!v3_lookup_option("mem_block_size")) { 
        mem_block_size = V3_CONFIG_MEM_BLOCK_SIZE;
     } else {
-       if (kstrtoull(v3_lookup_option("mem_block_size"), 0, &mem_block_size)) {
+       if (strict_strtoull(v3_lookup_option("mem_block_size"), 0, &mem_block_size)) {
            // huh?
            mem_block_size=-1;
        }