[ovs-dev] [PATCH v2 5/9] dp-packet: Copy flow mark on packet clone.

Ilya Maximets i.maximets at samsung.com
Tue Nov 13 12:12:24 UTC 2018


Dummy interfaces clones dp-packet while 'receive' appctl processing.
In general, we should do this anyway to avoid any possible issues in
the future with real interfaces.

Signed-off-by: Ilya Maximets <i.maximets at samsung.com>
---
 lib/dp-packet.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lib/dp-packet.c b/lib/dp-packet.c
index b5942f815..4ccb4da5c 100644
--- a/lib/dp-packet.c
+++ b/lib/dp-packet.c
@@ -163,6 +163,7 @@ struct dp_packet *
 dp_packet_clone_with_headroom(const struct dp_packet *buffer, size_t headroom)
 {
     struct dp_packet *new_buffer;
+    uint32_t mark;
 
     new_buffer = dp_packet_clone_data_with_headroom(dp_packet_data(buffer),
                                                  dp_packet_size(buffer),
@@ -180,6 +181,9 @@ dp_packet_clone_with_headroom(const struct dp_packet *buffer, size_t headroom)
     if (dp_packet_rss_valid(buffer)) {
         dp_packet_set_rss_hash(new_buffer, dp_packet_get_rss_hash(buffer));
     }
+    if (dp_packet_has_flow_mark(buffer, &mark)) {
+        dp_packet_set_flow_mark(new_buffer, mark);
+    }
 
     return new_buffer;
 }
-- 
2.17.1



More information about the dev mailing list