rhel: Don't delete bridges on boot.
[openvswitch] / lib / ofpbuf.c
index 8166d6b1c1a1f3ee29ed361fbae3afc9ef1690be..38874816c1f88679548bb1581b53547c42b5e7b1 100644 (file)
@@ -289,6 +289,16 @@ ofpbuf_trim(struct ofpbuf *b)
     }
 }
 
+/* If 'b' is shorter than 'length' bytes, pads its tail out with zeros to that
+ * length. */
+void
+ofpbuf_padto(struct ofpbuf *b, size_t length)
+{
+    if (b->size < length) {
+        ofpbuf_put_zeros(b, length - b->size);
+    }
+}
+
 /* Appends 'size' bytes of data to the tail end of 'b', reallocating and
  * copying its data if necessary.  Returns a pointer to the first byte of the
  * new data, which is left uninitialized. */