Hello,

On Tue, 28 Nov 2006, Horms wrote:

> Dean Manners notices that when an IPVS synchonisation daemons are
> started the system load slowly climbs up to 1. This seems to be related
> to the call to ssleep(1) (aka msleep(1000) in the main loop. Replacing
> this with a call to msleep_interruptable() seems to make the problem go
> away. Though I'm not sure that it is correct.

        The same is needed for sync_backup_loop

> -             ssleep(1);
> +             msleep_interruptible(1000);

Regards

--
Julian Anastasov <[EMAIL PROTECTED]>
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to