FD.io VPP  v20.09-64-g4f7b92f0a
Vector Packet Processing
svm_fifo.h File Reference
+ Include dependency graph for svm_fifo.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  svm_fifo_seg_
 

Macros

#define OOO_SEGMENT_INVALID_INDEX   ((u32)~0)
 
#define SVM_FIFO_INVALID_SESSION_INDEX   ((u32)~0)
 
#define SVM_FIFO_INVALID_INDEX   ((u32)~0)
 
#define svm_fifo_trace_add(_f, _s, _l, _t)
 

Typedefs

typedef enum svm_fifo_deq_ntf_ svm_fifo_deq_ntf_t
 
typedef enum svm_fifo_flag_ svm_fifo_flag_t
 
typedef struct svm_fifo_seg_ svm_fifo_seg_t
 

Enumerations

enum  svm_fifo_deq_ntf_ { SVM_FIFO_NO_DEQ_NOTIF = 0, SVM_FIFO_WANT_DEQ_NOTIF = 1, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL = 2, SVM_FIFO_WANT_DEQ_NOTIF_IF_EMPTY = 4 }
 
enum  svm_fifo_flag_ { SVM_FIFO_F_LL_TRACKED = 1 << 0 }
 
enum  svm_fifo_err_t { SVM_FIFO_EFULL = -2, SVM_FIFO_EEMPTY = -3, SVM_FIFO_EGROW = -4 }
 

Functions

u8svm_fifo_dump_trace (u8 *s, svm_fifo_t *f)
 
u8svm_fifo_replay (u8 *s, svm_fifo_t *f, u8 no_read, u8 verbose)
 
static void f_load_head_tail_cons (svm_fifo_t *f, u32 *head, u32 *tail)
 Load head and tail optimized for consumer. More...
 
static void f_load_head_tail_prod (svm_fifo_t *f, u32 *head, u32 *tail)
 Load head and tail optimized for producer. More...
 
static void f_load_head_tail_all_acq (svm_fifo_t *f, u32 *head, u32 *tail)
 Load head and tail independent of producer/consumer role. More...
 
static u32 f_cursize (svm_fifo_t *f, u32 head, u32 tail)
 Fifo current size, i.e., number of bytes enqueued. More...
 
static u32 f_free_count (svm_fifo_t *f, u32 head, u32 tail)
 Fifo free bytes, i.e., number of free bytes. More...
 
static u32 f_chunk_end (svm_fifo_chunk_t *c)
 
static int f_pos_lt (u32 a, u32 b)
 
static int f_pos_leq (u32 a, u32 b)
 
static int f_pos_gt (u32 a, u32 b)
 
static int f_pos_geq (u32 a, u32 b)
 
static u8 f_chunk_includes_pos (svm_fifo_chunk_t *c, u32 pos)
 
svm_fifo_tsvm_fifo_alloc (u32 size)
 Create fifo of requested size. More...
 
void svm_fifo_init (svm_fifo_t *f, u32 size)
 Initialize fifo. More...
 
svm_fifo_chunk_tsvm_fifo_chunk_alloc (u32 size)
 Allocate a fifo chunk on heap. More...
 
int svm_fifo_fill_chunk_list (svm_fifo_t *f)
 Ensure the whole fifo size is writeable. More...
 
void svm_fifo_init_ooo_lookup (svm_fifo_t *f, u8 ooo_type)
 Initialize rbtrees used for ooo lookups. More...
 
void svm_fifo_free (svm_fifo_t *f)
 Free fifo and associated state. More...
 
void svm_fifo_free_chunk_lookup (svm_fifo_t *f)
 Cleanup fifo chunk lookup rb tree. More...
 
void svm_fifo_free_ooo_data (svm_fifo_t *f)
 Cleanup fifo ooo data. More...
 
void svm_fifo_init_pointers (svm_fifo_t *f, u32 head, u32 tail)
 Init fifo head and tail. More...
 
void svm_fifo_clone (svm_fifo_t *df, svm_fifo_t *sf)
 Clone fifo. More...
 
int svm_fifo_enqueue (svm_fifo_t *f, u32 len, const u8 *src)
 Enqueue data to fifo. More...
 
int svm_fifo_enqueue_with_offset (svm_fifo_t *f, u32 offset, u32 len, u8 *src)
 Enqueue data to fifo with offset. More...
 
void svm_fifo_enqueue_nocopy (svm_fifo_t *f, u32 len)
 Advance tail pointer. More...
 
void svm_fifo_overwrite_head (svm_fifo_t *f, u8 *src, u32 len)
 Overwrite fifo head with new data. More...
 
int svm_fifo_dequeue (svm_fifo_t *f, u32 len, u8 *dst)
 Dequeue data from fifo. More...
 
int svm_fifo_peek (svm_fifo_t *f, u32 offset, u32 len, u8 *dst)
 Peek data from fifo. More...
 
int svm_fifo_dequeue_drop (svm_fifo_t *f, u32 len)
 Dequeue and drop bytes from fifo. More...
 
void svm_fifo_dequeue_drop_all (svm_fifo_t *f)
 Dequeue and drop all bytes from fifo. More...
 
int svm_fifo_segments (svm_fifo_t *f, svm_fifo_seg_t *fs)
 
void svm_fifo_segments_free (svm_fifo_t *f, svm_fifo_seg_t *fs)
 
void svm_fifo_add_subscriber (svm_fifo_t *f, u8 sub)
 Add io events subscriber to list. More...
 
void svm_fifo_del_subscriber (svm_fifo_t *f, u8 subscriber)
 Remove io events subscriber form list. More...
 
u32 svm_fifo_n_ooo_segments (svm_fifo_t *f)
 Number of out-of-order segments for fifo. More...
 
ooo_segment_tsvm_fifo_first_ooo_segment (svm_fifo_t *f)
 First out-of-order segment for fifo. More...
 
u8 svm_fifo_is_sane (svm_fifo_t *f)
 Check if fifo is sane. More...
 
u32 svm_fifo_n_chunks (svm_fifo_t *f)
 Number of chunks linked into the fifo. More...
 
static u32 svm_fifo_max_dequeue_cons (svm_fifo_t *f)
 Fifo max bytes to dequeue optimized for consumer. More...
 
static u32 svm_fifo_max_dequeue_prod (svm_fifo_t *f)
 Fifo max bytes to dequeue optimized for producer. More...
 
static u32 svm_fifo_max_dequeue (svm_fifo_t *f)
 Fifo max bytes to dequeue. More...
 
static int svm_fifo_is_full_prod (svm_fifo_t *f)
 Check if fifo is full optimized for producer. More...
 
static int svm_fifo_is_full (svm_fifo_t *f)
 
static int svm_fifo_is_empty_cons (svm_fifo_t *f)
 Check if fifo is empty optimized for consumer. More...
 
static int svm_fifo_is_empty_prod (svm_fifo_t *f)
 Check if fifo is empty optimized for producer. More...
 
static int svm_fifo_is_empty (svm_fifo_t *f)
 Check if fifo is empty. More...
 
static u8 svm_fifo_is_wrapped (svm_fifo_t *f)
 Check if fifo is wrapped. More...
 
static u32 svm_fifo_max_enqueue_prod (svm_fifo_t *f)
 Maximum number of bytes that can be enqueued into fifo. More...
 
static u32 svm_fifo_max_enqueue (svm_fifo_t *f)
 
u32 svm_fifo_max_read_chunk (svm_fifo_t *f)
 Max contiguous chunk of data that can be read. More...
 
u32 svm_fifo_max_write_chunk (svm_fifo_t *f)
 Max contiguous chunk of data that can be written. More...
 
static svm_fifo_chunk_tsvm_fifo_head_chunk (svm_fifo_t *f)
 Fifo head chunk getter. More...
 
static u8svm_fifo_head (svm_fifo_t *f)
 Fifo head pointer getter. More...
 
static svm_fifo_chunk_tsvm_fifo_tail_chunk (svm_fifo_t *f)
 Fifo tail chunk getter. More...
 
static u8svm_fifo_tail (svm_fifo_t *f)
 Fifo tail pointer getter. More...
 
static u8 svm_fifo_n_subscribers (svm_fifo_t *f)
 Fifo number of subscribers getter. More...
 
static u8 svm_fifo_has_ooo_data (svm_fifo_t *f)
 Check if fifo has out-of-order data. More...
 
static ooo_segment_tsvm_fifo_newest_ooo_segment (svm_fifo_t *f)
 
static void svm_fifo_newest_ooo_segment_reset (svm_fifo_t *f)
 
static u32 ooo_segment_offset_prod (svm_fifo_t *f, ooo_segment_t *s)
 
static u32 ooo_segment_length (svm_fifo_t *f, ooo_segment_t *s)
 
static u32 svm_fifo_size (svm_fifo_t *f)
 
static void svm_fifo_set_size (svm_fifo_t *f, u32 size)
 
static int svm_fifo_has_event (svm_fifo_t *f)
 Check if fifo has io event. More...
 
static u8 svm_fifo_set_event (svm_fifo_t *f)
 Set fifo event flag. More...
 
static void svm_fifo_unset_event (svm_fifo_t *f)
 Unset fifo event flag. More...
 
static void svm_fifo_add_want_deq_ntf (svm_fifo_t *f, u8 ntf_type)
 Set specific want notification flag. More...
 
static void svm_fifo_del_want_deq_ntf (svm_fifo_t *f, u8 ntf_type)
 Clear specific want notification flag. More...
 
static void svm_fifo_clear_deq_ntf (svm_fifo_t *f)
 Clear the want notification flag and set has notification. More...
 
static void svm_fifo_reset_has_deq_ntf (svm_fifo_t *f)
 Clear has notification flag. More...
 
static u8 svm_fifo_needs_deq_ntf (svm_fifo_t *f, u32 n_last_deq)
 Check if fifo needs dequeue notification. More...
 

Variables

format_function_t format_svm_fifo
 

Macro Definition Documentation

◆ OOO_SEGMENT_INVALID_INDEX

#define OOO_SEGMENT_INVALID_INDEX   ((u32)~0)

Definition at line 28 of file svm_fifo.h.

◆ SVM_FIFO_INVALID_INDEX

#define SVM_FIFO_INVALID_INDEX   ((u32)~0)

Definition at line 30 of file svm_fifo.h.

◆ SVM_FIFO_INVALID_SESSION_INDEX

#define SVM_FIFO_INVALID_SESSION_INDEX   ((u32)~0)

Definition at line 29 of file svm_fifo.h.

◆ svm_fifo_trace_add

#define svm_fifo_trace_add (   _f,
  _s,
  _l,
  _t 
)

Definition at line 68 of file svm_fifo.h.

Typedef Documentation

◆ svm_fifo_deq_ntf_t

◆ svm_fifo_flag_t

◆ svm_fifo_seg_t

typedef struct svm_fifo_seg_ svm_fifo_seg_t

Enumeration Type Documentation

◆ svm_fifo_deq_ntf_

Enumerator
SVM_FIFO_NO_DEQ_NOTIF 

No notification requested.

SVM_FIFO_WANT_DEQ_NOTIF 

Notify on dequeue.

SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL 

Notify on transition from full.

SVM_FIFO_WANT_DEQ_NOTIF_IF_EMPTY 

Notify on transition to empty.

Definition at line 32 of file svm_fifo.h.

◆ svm_fifo_err_t

Enumerator
SVM_FIFO_EFULL 
SVM_FIFO_EEMPTY 
SVM_FIFO_EGROW 

Definition at line 45 of file svm_fifo.h.

◆ svm_fifo_flag_

Enumerator
SVM_FIFO_F_LL_TRACKED 

Definition at line 40 of file svm_fifo.h.

Function Documentation

◆ f_chunk_end()

static u32 f_chunk_end ( svm_fifo_chunk_t c)
inlinestatic

Definition at line 138 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ f_chunk_includes_pos()

static u8 f_chunk_includes_pos ( svm_fifo_chunk_t c,
u32  pos 
)
inlinestatic

Definition at line 168 of file svm_fifo.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ f_cursize()

static u32 f_cursize ( svm_fifo_t f,
u32  head,
u32  tail 
)
inlinestatic

Fifo current size, i.e., number of bytes enqueued.

Internal function.

Definition at line 121 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ f_free_count()

static u32 f_free_count ( svm_fifo_t f,
u32  head,
u32  tail 
)
inlinestatic

Fifo free bytes, i.e., number of free bytes.

Internal function

Definition at line 132 of file svm_fifo.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ f_load_head_tail_all_acq()

static void f_load_head_tail_all_acq ( svm_fifo_t f,
u32 head,
u32 tail 
)
inlinestatic

Load head and tail independent of producer/consumer role.

Internal function.

Definition at line 107 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ f_load_head_tail_cons()

static void f_load_head_tail_cons ( svm_fifo_t f,
u32 head,
u32 tail 
)
inlinestatic

Load head and tail optimized for consumer.

Internal function.

Definition at line 80 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ f_load_head_tail_prod()

static void f_load_head_tail_prod ( svm_fifo_t f,
u32 head,
u32 tail 
)
inlinestatic

Load head and tail optimized for producer.

Internal function

Definition at line 93 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ f_pos_geq()

static int f_pos_geq ( u32  a,
u32  b 
)
inlinestatic

Definition at line 162 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ f_pos_gt()

static int f_pos_gt ( u32  a,
u32  b 
)
inlinestatic

Definition at line 156 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ f_pos_leq()

static int f_pos_leq ( u32  a,
u32  b 
)
inlinestatic

Definition at line 150 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ f_pos_lt()

static int f_pos_lt ( u32  a,
u32  b 
)
inlinestatic

Definition at line 144 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ ooo_segment_length()

static u32 ooo_segment_length ( svm_fifo_t f,
ooo_segment_t s 
)
inlinestatic

Definition at line 660 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ ooo_segment_offset_prod()

static u32 ooo_segment_offset_prod ( svm_fifo_t f,
ooo_segment_t s 
)
inlinestatic

Definition at line 650 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_add_subscriber()

void svm_fifo_add_subscriber ( svm_fifo_t f,
u8  sub 
)

Add io events subscriber to list.

Parameters
ffifo
subsubscriber opaque index (typically app worker index)

Definition at line 1241 of file svm_fifo.c.

+ Here is the caller graph for this function:

◆ svm_fifo_add_want_deq_ntf()

static void svm_fifo_add_want_deq_ntf ( svm_fifo_t f,
u8  ntf_type 
)
inlinestatic

Set specific want notification flag.

For list of flags see svm_fifo_deq_ntf_t

Parameters
ffifo
ntf_typetype of notification requested

Definition at line 728 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_alloc()

svm_fifo_t* svm_fifo_alloc ( u32  data_size_in_bytes)

Create fifo of requested size.

Allocates fifo on current heap.

Parameters
sizedata size in bytes for fifo to be allocated. Will be rounded to the next highest power-of-two value.
Returns
pointer to new fifo

Create fifo of requested size.

Fails vs blow up the process

Definition at line 421 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_chunk_alloc()

svm_fifo_chunk_t* svm_fifo_chunk_alloc ( u32  size)

Allocate a fifo chunk on heap.

If the chunk is allocated on a fifo segment, this should be called with the segment's heap pushed.

Parameters
sizechunk size in bytes. Will be rounded to the next highest power-of-two
Returns
new chunk or 0 if alloc failed

Allocate a fifo chunk on heap.

Definition at line 457 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_clear_deq_ntf()

static void svm_fifo_clear_deq_ntf ( svm_fifo_t f)
inlinestatic

Clear the want notification flag and set has notification.

Should be used after enqueuing an event. This clears the SVM_FIFO_WANT_NOTIF flag but it does not clear SVM_FIFO_WANT_NOTIF_IF_FULL. If the latter was set, has_ntf is set to avoid enqueueing events for for all dequeue operations until it is manually cleared.

Parameters
ffifo

Definition at line 759 of file svm_fifo.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_clone()

void svm_fifo_clone ( svm_fifo_t df,
svm_fifo_t sf 
)

Clone fifo.

Clones single/default chunk fifo. It does not work for fifos with multiple chunks.

Clone fifo.

Assumptions:

  • no prod and cons are accessing either dest or src fifo
  • fifo is not multi chunk

Definition at line 1195 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_del_subscriber()

void svm_fifo_del_subscriber ( svm_fifo_t f,
u8  subscriber 
)

Remove io events subscriber form list.

Parameters
ffifo
subsubscriber index to be removed

Definition at line 1249 of file svm_fifo.c.

+ Here is the caller graph for this function:

◆ svm_fifo_del_want_deq_ntf()

static void svm_fifo_del_want_deq_ntf ( svm_fifo_t f,
u8  ntf_type 
)
inlinestatic

Clear specific want notification flag.

For list of flags see svm_fifo_ntf_t

Parameters
ffifo
ntf_typetype of notification to be cleared

Definition at line 742 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_dequeue()

int svm_fifo_dequeue ( svm_fifo_t f,
u32  len,
u8 dst 
)

Dequeue data from fifo.

Data is dequeued to consumer provided buffer and head is atomically updated. This should not be used in combination with ooo lookups. If ooo peeking of data is needed in combination with dequeuing use svm_fifo_dequeue_drop.

Parameters
ffifo
lenlength of data to dequeue
dstbuffer to where to dequeue the data
Returns
number of bytes dequeued or error

Definition at line 1009 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_dequeue_drop()

int svm_fifo_dequeue_drop ( svm_fifo_t f,
u32  len 
)

Dequeue and drop bytes from fifo.

Advances fifo head by requested amount of bytes.

Parameters
ffifo
lennumber of bytes to drop
Returns
number of bytes dropped

Definition at line 1068 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_dequeue_drop_all()

void svm_fifo_dequeue_drop_all ( svm_fifo_t f)

Dequeue and drop all bytes from fifo.

Advances head to tail position.

Parameters
ffifo

Dequeue and drop all bytes from fifo.

Definition at line 1106 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_dump_trace()

u8* svm_fifo_dump_trace ( u8 s,
svm_fifo_t f 
)

Definition at line 1383 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_enqueue()

int svm_fifo_enqueue ( svm_fifo_t f,
u32  len,
const u8 src 
)

Enqueue data to fifo.

Data is enqueued and tail pointer is updated atomically. If the new data enqueued partly overlaps or "touches" an out-of-order segment, said segment is "consumed" and the number of bytes returned is appropriately updated.

Parameters
ffifo
lenlength of data to copy
srcbuffer from where to copy the data
Returns
number of contiguous bytes that can be consumed or error

Definition at line 838 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_enqueue_nocopy()

void svm_fifo_enqueue_nocopy ( svm_fifo_t f,
u32  len 
)

Advance tail pointer.

Useful for moving tail pointer after external enqueue.

Parameters
ffifo
lennumber of bytes to add to tail

Advance tail pointer.

Definition at line 933 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_enqueue_with_offset()

int svm_fifo_enqueue_with_offset ( svm_fifo_t f,
u32  offset,
u32  len,
u8 src 
)

Enqueue data to fifo with offset.

Data is enqueued without updating tail pointer. Instead, an out-of-order list of segments is generated and maintained. Fifo takes care of coalescing contiguous or overlapping segments.

Parameters
ffifo
offsetoffset at which to copy the data
lenlen of data to copy
srcbuffer from where to copy the data
Returns
0 if enqueue was successful, error otherwise

Enqueue data to fifo with offset.

Two choices: either copies the entire segment, or copies nothing Returns 0 of the entire segment was copied Returns -1 if none of the segment was copied due to lack of space

Definition at line 896 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_fill_chunk_list()

int svm_fifo_fill_chunk_list ( svm_fifo_t f)

Ensure the whole fifo size is writeable.

Allocates enough chunks to cover the whole fifo size.

Parameters
ffifo

Definition at line 1126 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_first_ooo_segment()

ooo_segment_t* svm_fifo_first_ooo_segment ( svm_fifo_t f)

First out-of-order segment for fifo.

Parameters
ffifo
Returns
first out-of-order segment for fifo

Definition at line 1216 of file svm_fifo.c.

+ Here is the caller graph for this function:

◆ svm_fifo_free()

void svm_fifo_free ( svm_fifo_t f)

Free fifo and associated state.

Parameters
ffifo

Definition at line 760 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_free_chunk_lookup()

void svm_fifo_free_chunk_lookup ( svm_fifo_t f)

Cleanup fifo chunk lookup rb tree.

The rb tree is allocated in segment heap so this should be called with it pushed.

Parameters
ffifo to cleanup

Definition at line 753 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_free_ooo_data()

void svm_fifo_free_ooo_data ( svm_fifo_t f)

Cleanup fifo ooo data.

The ooo data is allocated in producer process memory. The fifo segment heap should not be pushed.

Parameters
ffifo to cleanup

Definition at line 113 of file svm_fifo.c.

+ Here is the caller graph for this function:

◆ svm_fifo_has_event()

static int svm_fifo_has_event ( svm_fifo_t f)
inlinestatic

Check if fifo has io event.

Parameters
ffifo
Returns
1 if fifo has event, 0 otherwise

Definition at line 687 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_has_ooo_data()

static u8 svm_fifo_has_ooo_data ( svm_fifo_t f)
inlinestatic

Check if fifo has out-of-order data.

Parameters
ffifo
Returns
1 if fifo has ooo data, 0 otherwise

Definition at line 630 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_head()

static u8* svm_fifo_head ( svm_fifo_t f)
inlinestatic

Fifo head pointer getter.

Parameters
ffifo
Returns
head pointer

Definition at line 578 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_head_chunk()

static svm_fifo_chunk_t* svm_fifo_head_chunk ( svm_fifo_t f)
inlinestatic

Fifo head chunk getter.

Parameters
ffifo
Returns
head chunk pointer

Definition at line 566 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_init()

void svm_fifo_init ( svm_fifo_t f,
u32  size 
)

Initialize fifo.

Parameters
ffifo
sizesize for fifo

Definition at line 370 of file svm_fifo.c.

+ Here is the caller graph for this function:

◆ svm_fifo_init_ooo_lookup()

void svm_fifo_init_ooo_lookup ( svm_fifo_t f,
u8  ooo_type 
)

Initialize rbtrees used for ooo lookups.

Parameters
ffifo
ooo_typetype of ooo operation (0 enqueue, 1 dequeue)

Definition at line 403 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_init_pointers()

void svm_fifo_init_pointers ( svm_fifo_t f,
u32  head,
u32  tail 
)

Init fifo head and tail.

Parameters
ffifo
headhead value that will be matched to a chunk
tailtail value that will be matched to a chunk

Init fifo head and tail.

Definition at line 1225 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_is_empty()

static int svm_fifo_is_empty ( svm_fifo_t f)
inlinestatic

Check if fifo is empty.

Note: use producer or consumer specific functions for perfomance. svm_fifo_is_empty_cons (svm_fifo_t * f) svm_fifo_is_empty_prod (svm_fifo_t * f)

Definition at line 496 of file svm_fifo.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_is_empty_cons()

static int svm_fifo_is_empty_cons ( svm_fifo_t f)
inlinestatic

Check if fifo is empty optimized for consumer.

Parameters
ffifo
Returns
1 if fifo is empty 0 otherwise

Definition at line 471 of file svm_fifo.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_is_empty_prod()

static int svm_fifo_is_empty_prod ( svm_fifo_t f)
inlinestatic

Check if fifo is empty optimized for producer.

Parameters
ffifo
Returns
1 if fifo is empty 0 otherwise

Definition at line 483 of file svm_fifo.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_is_full()

static int svm_fifo_is_full ( svm_fifo_t f)
inlinestatic

Definition at line 459 of file svm_fifo.h.

+ Here is the call graph for this function:

◆ svm_fifo_is_full_prod()

static int svm_fifo_is_full_prod ( svm_fifo_t f)
inlinestatic

Check if fifo is full optimized for producer.

Parameters
ffifo
Returns
1 if fifo is full 0 otherwise

Definition at line 447 of file svm_fifo.h.

+ Here is the call graph for this function:

◆ svm_fifo_is_sane()

u8 svm_fifo_is_sane ( svm_fifo_t f)

Check if fifo is sane.

Debug only.

Parameters
ffifo
Returns
1 if sane, 0 otherwise

Definition at line 1264 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_is_wrapped()

static u8 svm_fifo_is_wrapped ( svm_fifo_t f)
inlinestatic

Check if fifo is wrapped.

Parameters
ffifo
Returns
1 if 'normalized' head is ahead of tail

Definition at line 508 of file svm_fifo.h.

+ Here is the call graph for this function:

◆ svm_fifo_max_dequeue()

static u32 svm_fifo_max_dequeue ( svm_fifo_t f)
inlinestatic

Fifo max bytes to dequeue.

Note: use producer or consumer specific functions for performance: svm_fifo_max_dequeue_cons (svm_fifo_t *f) svm_fifo_max_dequeue_prod (svm_fifo_t *f)

Definition at line 433 of file svm_fifo.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_max_dequeue_cons()

static u32 svm_fifo_max_dequeue_cons ( svm_fifo_t f)
inlinestatic

Fifo max bytes to dequeue optimized for consumer.

Parameters
ffifo
Returns
max number of bytes that can be dequeued

Definition at line 404 of file svm_fifo.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_max_dequeue_prod()

static u32 svm_fifo_max_dequeue_prod ( svm_fifo_t f)
inlinestatic

Fifo max bytes to dequeue optimized for producer.

Parameters
ffifo
Returns
max number of bytes that can be dequeued

Definition at line 418 of file svm_fifo.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_max_enqueue()

static u32 svm_fifo_max_enqueue ( svm_fifo_t f)
inlinestatic

Definition at line 538 of file svm_fifo.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_max_enqueue_prod()

static u32 svm_fifo_max_enqueue_prod ( svm_fifo_t f)
inlinestatic

Maximum number of bytes that can be enqueued into fifo.

Optimized for producer

Parameters
ffifo
Returns
max number of bytes that can be enqueued into fifo

Definition at line 524 of file svm_fifo.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_max_read_chunk()

u32 svm_fifo_max_read_chunk ( svm_fifo_t f)

Max contiguous chunk of data that can be read.

Should only be called by consumers.

Definition at line 509 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_max_write_chunk()

u32 svm_fifo_max_write_chunk ( svm_fifo_t f)

Max contiguous chunk of data that can be written.

Should only be called by producers

Definition at line 529 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_n_chunks()

u32 svm_fifo_n_chunks ( svm_fifo_t f)

Number of chunks linked into the fifo.

Parameters
ffifo
Returns
number of chunks in fifo linked list

Definition at line 1357 of file svm_fifo.c.

+ Here is the caller graph for this function:

◆ svm_fifo_n_ooo_segments()

u32 svm_fifo_n_ooo_segments ( svm_fifo_t f)

Number of out-of-order segments for fifo.

Parameters
ffifo
Returns
number of out of order segments

Definition at line 1210 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_n_subscribers()

static u8 svm_fifo_n_subscribers ( svm_fifo_t f)
inlinestatic

Fifo number of subscribers getter.

Parameters
ffifo
Returns
number of subscribers

Definition at line 618 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_needs_deq_ntf()

static u8 svm_fifo_needs_deq_ntf ( svm_fifo_t f,
u32  n_last_deq 
)
inlinestatic

Check if fifo needs dequeue notification.

Determines based on notification request flags and state of the fifo if an event should be generated.

Parameters
ffifo
n_last_deqnumber of bytes last dequeued
Returns
1 if event should be generated, 0 otherwise

Definition at line 792 of file svm_fifo.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_newest_ooo_segment()

static ooo_segment_t* svm_fifo_newest_ooo_segment ( svm_fifo_t f)
inlinestatic

Definition at line 636 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_newest_ooo_segment_reset()

static void svm_fifo_newest_ooo_segment_reset ( svm_fifo_t f)
inlinestatic

Definition at line 644 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_overwrite_head()

void svm_fifo_overwrite_head ( svm_fifo_t f,
u8 src,
u32  len 
)

Overwrite fifo head with new data.

This should be typically used by dgram transport protocols that need to update the dgram header after dequeuing a chunk of data. It assumes that the dgram header is at most spread over two chunks.

Parameters
ffifo
srcsrc of new data
lenlength of new data

Definition at line 773 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_peek()

int svm_fifo_peek ( svm_fifo_t f,
u32  offset,
u32  len,
u8 dst 
)

Peek data from fifo.

Data is copied from requested offset into provided dst buffer. Head is not updated.

Parameters
ffifo
offsetoffset from which to copy the data
lenlength of data to copy
dstbuffer to where to dequeue the data
Returns
number of bytes peeked

Definition at line 1044 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_replay()

u8* svm_fifo_replay ( u8 s,
svm_fifo_t f,
u8  no_read,
u8  verbose 
)

Definition at line 1407 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_reset_has_deq_ntf()

static void svm_fifo_reset_has_deq_ntf ( svm_fifo_t f)
inlinestatic

Clear has notification flag.

The fifo generates only one event per SVM_FIFO_WANT_NOTIF_IF_FULL request and sets has_ntf. To received new events the flag must be cleared using this function.

Parameters
ffifo

Definition at line 776 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_segments()

int svm_fifo_segments ( svm_fifo_t f,
svm_fifo_seg_t fs 
)

Definition at line 1142 of file svm_fifo.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_segments_free()

void svm_fifo_segments_free ( svm_fifo_t f,
svm_fifo_seg_t fs 
)

Definition at line 1174 of file svm_fifo.c.

+ Here is the caller graph for this function:

◆ svm_fifo_set_event()

static u8 svm_fifo_set_event ( svm_fifo_t f)
inlinestatic

Set fifo event flag.

Forces release semantics.

Parameters
ffifo
Returns
1 if flag was not set, 0 otherwise

Definition at line 701 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_set_size()

static void svm_fifo_set_size ( svm_fifo_t f,
u32  size 
)
inlinestatic

Definition at line 672 of file svm_fifo.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ svm_fifo_size()

static u32 svm_fifo_size ( svm_fifo_t f)
inlinestatic

Definition at line 666 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_tail()

static u8* svm_fifo_tail ( svm_fifo_t f)
inlinestatic

Fifo tail pointer getter.

Parameters
ffifo
Returns
tail pointer

Definition at line 605 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_tail_chunk()

static svm_fifo_chunk_t* svm_fifo_tail_chunk ( svm_fifo_t f)
inlinestatic

Fifo tail chunk getter.

Parameters
ffifo
Returns
tail chunk pointer

Definition at line 593 of file svm_fifo.h.

+ Here is the caller graph for this function:

◆ svm_fifo_unset_event()

static void svm_fifo_unset_event ( svm_fifo_t f)
inlinestatic

Unset fifo event flag.

Forces acquire semantics

Parameters
ffifo

Definition at line 714 of file svm_fifo.h.

+ Here is the caller graph for this function:

Variable Documentation

◆ format_svm_fifo

format_function_t format_svm_fifo

Definition at line 395 of file svm_fifo.h.