X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fsvm%2Fsvm_fifo.c;h=b2c8e5bdb166ae2c71e0926de53f9cd1e16af922;hb=371ca50a74a9c4f1b74c4c1b65c6fdec610fcfc3;hp=42eb1ee8f886e776b9ec56babffce97717fa49a7;hpb=9e6356962a0cbb84f7ea9056b954d65aaa231a61;p=vpp.git diff --git a/src/svm/svm_fifo.c b/src/svm/svm_fifo.c index 42eb1ee8f88..b2c8e5bdb16 100644 --- a/src/svm/svm_fifo.c +++ b/src/svm/svm_fifo.c @@ -448,7 +448,8 @@ ooo_segment_try_collect (svm_fifo_t * f, u32 n_bytes_enqueued) } static int -svm_fifo_enqueue_internal (svm_fifo_t * f, u32 max_bytes, u8 * copy_from_here) +svm_fifo_enqueue_internal (svm_fifo_t * f, u32 max_bytes, + const u8 * copy_from_here) { u32 total_copy_bytes, first_copy_bytes, second_copy_bytes; u32 cursize, nitems; @@ -520,7 +521,7 @@ svm_fifo_enqueue_internal (svm_fifo_t * f, u32 max_bytes, u8 * copy_from_here) static int svm_fifo_enqueue_nowait_ma (svm_fifo_t * f, u32 max_bytes, - u8 * copy_from_here) + const u8 * copy_from_here) { return svm_fifo_enqueue_internal (f, max_bytes, copy_from_here); } @@ -530,12 +531,13 @@ foreach_march_variant (SVM_ENQUEUE_CLONE_TEMPLATE, CLIB_MULTIARCH_SELECT_FN (svm_fifo_enqueue_nowait_ma); int -svm_fifo_enqueue_nowait (svm_fifo_t * f, u32 max_bytes, u8 * copy_from_here) +svm_fifo_enqueue_nowait (svm_fifo_t * f, u32 max_bytes, + const u8 * copy_from_here) { #if CLIB_DEBUG > 0 return svm_fifo_enqueue_nowait_ma (f, max_bytes, copy_from_here); #else - static int (*fp) (svm_fifo_t *, u32, u8 *); + static int (*fp) (svm_fifo_t *, u32, const u8 *); if (PREDICT_FALSE (fp == 0)) fp = (void *) svm_fifo_enqueue_nowait_ma_multiarch_select ();