diff options
author | Laurent Vivier <lvivier@redhat.com> | 2022-11-08 21:43:35 +0100 |
---|---|---|
committer | Laurent Vivier <lvivier@redhat.com> | 2024-03-12 11:54:26 +0100 |
commit | bb3877dde3d1403806092d121d64616c332a950c (patch) | |
tree | bbc97552c88beca7358f14e9c53d52cceaa5b0f6 /tcp_buf.c | |
parent | 27a713947cc63e3f204415c95522664f2ca3b7c0 (diff) | |
download | passt-bb3877dde3d1403806092d121d64616c332a950c.tar passt-bb3877dde3d1403806092d121d64616c332a950c.tar.gz passt-bb3877dde3d1403806092d121d64616c332a950c.tar.bz2 passt-bb3877dde3d1403806092d121d64616c332a950c.tar.lz passt-bb3877dde3d1403806092d121d64616c332a950c.tar.xz passt-bb3877dde3d1403806092d121d64616c332a950c.tar.zst passt-bb3877dde3d1403806092d121d64616c332a950c.zip |
vhost-user: compare mode MODE_PASTA and not MODE_PASST
As we are going to introduce the MODE_VU that will act like
the mode MODE_PASST, compare to MODE_PASTA rather than to add
a comparison to MODE_VU when we check for MODE_PASST.
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Diffstat (limited to 'tcp_buf.c')
-rw-r--r-- | tcp_buf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ #define TCP_FRAMES_MEM 128 #define TCP_FRAMES \ - (c->mode == MODE_PASST ? TCP_FRAMES_MEM : 1) + (c->mode == MODE_PASTA ? 1 : TCP_FRAMES_MEM) /** * tcp_buf_seq_update - Sequences to update with length of frames once sent |