summaryrefslogtreecommitdiffstats
path: root/src/net/retry.c
diff options
context:
space:
mode:
authorMichael Brown2009-08-10 02:09:41 +0200
committerMichael Brown2009-08-10 20:27:24 +0200
commit04878ef74512df49803d1119c72c49cd8f1bfe10 (patch)
treeadd5a2af82095b9f731c90652e1f6d2b72a629f3 /src/net/retry.c
parent[infiniband] Handle duplicate Communication Management REPs (diff)
downloadipxe-04878ef74512df49803d1119c72c49cd8f1bfe10.tar.gz
ipxe-04878ef74512df49803d1119c72c49cd8f1bfe10.tar.xz
ipxe-04878ef74512df49803d1119c72c49cd8f1bfe10.zip
[process] Make it safe to call process_add() multiple times
Diffstat (limited to 'src/net/retry.c')
-rw-r--r--src/net/retry.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net/retry.c b/src/net/retry.c
index 3ca69362..40f656f2 100644
--- a/src/net/retry.c
+++ b/src/net/retry.c
@@ -187,5 +187,6 @@ static void retry_step ( struct process *process __unused ) {
/** Retry timer process */
struct process retry_process __permanent_process = {
+ .list = LIST_HEAD_INIT ( retry_process.list ),
.step = retry_step,
};