On 04/02, Gautham R Shenoy wrote:
>
>  int freeze_processes(unsigned long freeze_event)
>  {
>       unsigned int nr_unfrozen;
> -
> +     int ret = 0;
> +     mutex_lock(&freezer_mutex);
> +     if (system_freeze_event_mask & freeze_event)
> +             goto done;

I am not sure this is correct. Suppose that system_freeze_event_mask == 
FE_SUSPEND,
now freeze_processes(FE_ALL) returns success. Shouldn't we return an error?

Oleg.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to