ranap: Allocate msgb's with headroom for SCCP User primitive pushing
diff --git a/src/ranap_common.c b/src/ranap_common.c
index 445dd85..f6993fd 100644
--- a/src/ranap_common.c
+++ b/src/ranap_common.c
@@ -290,7 +290,7 @@
 
 static struct msgb *ranap_msgb_alloc(void)
 {
-	return msgb_alloc(1024, "RANAP Tx");
+	return msgb_alloc_headroom(1024+256, 256, "RANAP Tx");
 }
 
 static struct msgb *_ranap_gen_msg(RANAP_RANAP_PDU_t *pdu)