|
Revision tags: v22.03, v22.03-rc4, v22.03-rc3, v22.03-rc2, v22.03-rc1 |
|
| #
06c047b6 |
| 09-Feb-2022 |
Stephen Hemminger <[email protected]> |
remove unnecessary null checks
Functions like free, rte_free, and rte_mempool_free already handle NULL pointer so the checks here are not necessary.
Remove redundant NULL pointer checks before free
remove unnecessary null checks
Functions like free, rte_free, and rte_mempool_free already handle NULL pointer so the checks here are not necessary.
Remove redundant NULL pointer checks before free functions found by nullfree.cocci
Signed-off-by: Stephen Hemminger <[email protected]>
show more ...
|
|
Revision tags: v21.11, v21.11-rc4, v21.11-rc3, v21.11-rc2, v21.11-rc1, v21.08, v21.08-rc4, v21.08-rc3, v21.08-rc2, v21.08-rc1, v21.05, v21.05-rc4, v21.05-rc3 |
|
| #
2d2bf7de |
| 06-May-2021 |
Hongbo Zheng <[email protected]> |
graph: fix null dereference in stats
In function 'stats_mem_init', pointer 'stats' should be confirmed not null before memset it.
Fixes: af1ae8b6a32c ("graph: implement stats") Cc: [email protected]
graph: fix null dereference in stats
In function 'stats_mem_init', pointer 'stats' should be confirmed not null before memset it.
Fixes: af1ae8b6a32c ("graph: implement stats") Cc: [email protected]
Signed-off-by: Hongbo Zheng <[email protected]> Signed-off-by: Min Hu (Connor) <[email protected]> Reviewed-by: Jerin Jacob <[email protected]> Reviewed-by: David Marchand <[email protected]>
show more ...
|
| #
3b47572f |
| 06-May-2021 |
Hongbo Zheng <[email protected]> |
graph: fix memory leak in stats
Fix function 'stats_mem_populate' return without free dynamic memory referenced by 'stats'.
Fixes: af1ae8b6a32c ("graph: implement stats") Cc: [email protected]
Signe
graph: fix memory leak in stats
Fix function 'stats_mem_populate' return without free dynamic memory referenced by 'stats'.
Fixes: af1ae8b6a32c ("graph: implement stats") Cc: [email protected]
Signed-off-by: Hongbo Zheng <[email protected]> Signed-off-by: Min Hu (Connor) <[email protected]> Reviewed-by: David Marchand <[email protected]>
show more ...
|
|
Revision tags: v21.05-rc2, v21.05-rc1 |
|
| #
99a2dd95 |
| 20-Apr-2021 |
Bruce Richardson <[email protected]> |
lib: remove librte_ prefix from directory names
There is no reason for the DPDK libraries to all have 'librte_' prefix on the directory names. This prefix makes the directory names longer and also m
lib: remove librte_ prefix from directory names
There is no reason for the DPDK libraries to all have 'librte_' prefix on the directory names. This prefix makes the directory names longer and also makes it awkward to add features referring to individual libraries in the build - should the lib names be specified with or without the prefix. Therefore, we can just remove the library prefix and use the library's unique name as the directory name, i.e. 'eal' rather than 'librte_eal'
Signed-off-by: Bruce Richardson <[email protected]>
show more ...
|