Start a semantic patch archive

Move patches there which are not intended to be applied again, but which
we used once and want to keep for reference.

Also another coccinelle script which I found useful at one point.
parent 8cddd051
......@@ -10,4 +10,7 @@ Unless noted otherwise, all patches should work when invoked as::
-I include/ -I bin/varnishd/ --dir . --in-place \
--sp-file $COCCI
The ``archive/`` directory contains patches which we used once and
should not need again, but want to retain for reference.
.. _coccinelle: http://coccinelle.lip6.fr/
/*
* facilitate second half of phks vdp signature overhaul
*/
@@
expression req;
@@
-VDP_Close(req)
+VDP_Close(req->vdc)
@@
expression req;
@@
-VDP_DeliverObj(req)
+VDP_DeliverObj(req->vdc, req->objcore)
@@
expression req, vdp, priv;
@@
-VDP_Push(req, vdp, priv)
+VDP_Push(req->vdc, req->ws, vdp, priv)
@@
expression req, vdp, priv;
@@
-VDP_Push(req, &vdp, priv)
+VDP_Push(req->vdc, req->ws, &vdp, priv)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment