diff options
author | Damjan Marion <damarion@cisco.com> | 2019-01-18 20:45:30 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-01-19 00:17:51 +0000 |
commit | 36eb7c214280a5442186a2d13ed018bbd26a1a3a (patch) | |
tree | 6cdb6809f6d4eb19c87d314eb6f7f74764270794 /src/vnet/sctp | |
parent | ab9b7ec210059573c2cbe3ed961de533ba43e435 (diff) |
buffers: remove free-list information from buffer metadata
Change-Id: I6048c6a51efa826ac333f7d15919cb87dd766d74
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/sctp')
-rw-r--r-- | src/vnet/sctp/sctp_output.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vnet/sctp/sctp_output.c b/src/vnet/sctp/sctp_output.c index c0e1a6eb339..17b28a86492 100644 --- a/src/vnet/sctp/sctp_output.c +++ b/src/vnet/sctp/sctp_output.c @@ -271,7 +271,6 @@ always_inline void * sctp_init_buffer (vlib_main_t * vm, vlib_buffer_t * b) { ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0); - b->flags &= VLIB_BUFFER_NON_DEFAULT_FREELIST; b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; b->total_length_not_including_first_buffer = 0; vnet_buffer (b)->sctp.flags = 0; |