summaryrefslogtreecommitdiff
path: root/coccinelle/iovec-make.cocci
diff options
context:
space:
mode:
Diffstat (limited to 'coccinelle/iovec-make.cocci')
-rw-r--r--coccinelle/iovec-make.cocci24
1 files changed, 24 insertions, 0 deletions
diff --git a/coccinelle/iovec-make.cocci b/coccinelle/iovec-make.cocci
new file mode 100644
index 0000000000..62defe9400
--- /dev/null
+++ b/coccinelle/iovec-make.cocci
@@ -0,0 +1,24 @@
+@@
+expression x, y, p, l;
+@@
+- x[y].iov_base = p;
+- x[y].iov_len = l;
+- y++;
++ x[y++] = IOVEC_MAKE(p, l);
+@@
+expression x, p, l;
+@@
+- x.iov_base = p;
+- x.iov_len = l;
++ x = IOVEC_MAKE(p, l);
+@@
+expression x, p, l;
+@@
+- x->iov_base = p;
+- x->iov_len = l;
++ *x = IOVEC_MAKE(p, l);
+@@
+expression s;
+@@
+- IOVEC_MAKE(s, strlen(s));
++ IOVEC_MAKE_STRING(s);