Il 03/10/2014 19:47, Dr. David Alan Gilbert (git) ha scritto: > + mis->postcopy_ram_state); > + if (mis->postcopy_ram_state == POSTCOPY_RAM_INCOMING_ADVISE) { > + /* > + * Where a migration had postcopy enabled (and thus went to advise) > + * but managed to complete within the precopy period > + */ > + postcopy_ram_incoming_cleanup(mis); > + } else { > + if ((ret >= 0) && > + (mis->postcopy_ram_state > POSTCOPY_RAM_INCOMING_ADVISE)) { > + /* > + * Postcopy was started, cleanup should happen at the end of the > + * postcopy thread. > + */ > + DPRINTF("process_incoming_migration_co: exiting main branch"); > + return; > + }
Extra parentheses and extra nesting. Paolo