Displaying 3 results from an estimated 3 matches for "max_tries".
Did you mean:
mac_tries
2019 Mar 26
0
Bug: upssched and 3+ UPSes
...15:30:19.972184228 +0100
@@ -648,8 +648,10 @@ static int check_parent(const char *cmd,
/* we didn't get the lock - must be two upsscheds running */
- /* blow this away in case we crashed before */
- unlink(lockfn);
+ if (tries >= MAX_TRIES-1) {
+ /* blow this away in case we crashed before */
+ unlink(lockfn);
+ }
/* give the other one a chance to start it, then try again */
usleep(250000);
----
Regards, Richard
2012 Jan 09
39
[PATCH v4 00/25] xen: ARMv7 with virtualization extensions
Hello everyone,
this is the fourth version of the patch series that introduces ARMv7
with virtualization extensions support in Xen.
The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile
Express simulator.
See the following announce email for more informations about what we
are trying to achieve, as well as the original git history:
See
2011 Dec 06
57
[PATCH RFC 00/25] xen: ARMv7 with virtualization extensions
Hello everyone,
this is the very first version of the patch series that introduces ARMv7
with virtualization extensions support in Xen.
The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile
Express simulator.
See the following announce email for more informations about what we
are trying to achieve, as well as the original git history:
See