svm: split fifo into private and shared structs
[vpp.git] / src / vnet / session / application_interface.h
index 79c6f28..096af1e 100644 (file)
@@ -343,9 +343,7 @@ typedef struct session_bound_msg_
   uword rx_fifo;
   uword tx_fifo;
   uword vpp_evt_q;
-  u32 segment_size;
-  u8 segment_name_length;
-  u8 segment_name[128];
+  u64 segment_handle;
 } __clib_packed session_bound_msg_t;
 
 typedef struct session_unlisten_msg_
@@ -519,6 +517,7 @@ typedef struct session_migrate_msg_
   uword vpp_evt_q;
   session_handle_t handle;
   session_handle_t new_handle;
+  u64 segment_handle;
   u32 vpp_thread_index;
 } __clib_packed session_migrated_msg_t;
 
@@ -640,8 +639,8 @@ app_send_dgram_raw (svm_fifo_t * f, app_session_transport_t * at,
   if (do_evt)
     {
       if (svm_fifo_set_event (f))
-       app_send_io_evt_to_vpp (vpp_evt_q, f->master_session_index, evt_type,
-                               noblock);
+       app_send_io_evt_to_vpp (vpp_evt_q, f->shr->master_session_index,
+                               evt_type, noblock);
     }
   return len;
 }
@@ -664,8 +663,8 @@ app_send_stream_raw (svm_fifo_t * f, svm_msg_q_t * vpp_evt_q, u8 * data,
   if (do_evt)
     {
       if (rv > 0 && svm_fifo_set_event (f))
-       app_send_io_evt_to_vpp (vpp_evt_q, f->master_session_index, evt_type,
-                               noblock);
+       app_send_io_evt_to_vpp (vpp_evt_q, f->shr->master_session_index,
+                               evt_type, noblock);
     }
   return rv;
 }