Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
U
udpdk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ywj
udpdk
Commits
f03fc595
Commit
f03fc595
authored
Nov 12, 2020
by
Leonardo Lai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replace glibc memcpy with dpdk one
parent
c06db011
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
udpdk/udpdk_syscall.c
udpdk/udpdk_syscall.c
+3
-3
No files found.
udpdk/udpdk_syscall.c
View file @
f03fc595
...
...
@@ -353,7 +353,7 @@ ssize_t udpdk_sendto(int sockfd, const void *buf, size_t len, int flags,
// Write payload
udp_data
=
(
void
*
)(
udp_hdr
+
1
);
memcpy
(
udp_data
,
buf
,
len
);
rte_
memcpy
(
udp_data
,
buf
,
len
);
// Put the packet in the tx_ring
if
(
rte_ring_enqueue
(
exch_slots
[
sockfd
].
tx_q
,
(
void
*
)
pkt
)
<
0
)
{
...
...
@@ -449,7 +449,7 @@ ssize_t udpdk_recvfrom(int sockfd, void *buf, size_t len, int flags,
}
else
{
eff_addrlen
=
*
addrlen
;
}
memcpy
((
void
*
)
src_addr
,
&
addr_in
,
eff_addrlen
);
rte_
memcpy
((
void
*
)
src_addr
,
&
addr_in
,
eff_addrlen
);
*
addrlen
=
eff_addrlen
;
}
...
...
@@ -471,7 +471,7 @@ ssize_t udpdk_recvfrom(int sockfd, void *buf, size_t len, int flags,
eff_len
=
bytes_left
;
}
// Copy payload into buffer
memcpy
(
buf
,
rte_pktmbuf_mtod
(
seg
,
void
*
)
+
offset_payload
,
eff_len
);
rte_
memcpy
(
buf
,
rte_pktmbuf_mtod
(
seg
,
void
*
)
+
offset_payload
,
eff_len
);
// Adjust pointers and counters
buf
+=
eff_len
;
bytes_left
-=
eff_len
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment