> int runstate_is_running(void) > { > - return runstate_check(RUN_STATE_RUNNING); > + return (runstate_check(RUN_STATE_RUNNING) || > + runstate_check(RUN_STATE_MIGRATE) || > + runstate_check(RUN_STATE_DUMP_BITMAP)); > }
Forgot to apply the checkpatch script. The return should be without the braces. -- Sanidhya