pcapng: handle failure of link status queryIf rte_ethlink_get fails, the code can just not add speedto the pcap file.Coverity issue: 373664Fixes: 8d23ce8f5ee9 ("pcapng: add new library for writ
pcapng: handle failure of link status queryIf rte_ethlink_get fails, the code can just not add speedto the pcap file.Coverity issue: 373664Fixes: 8d23ce8f5ee9 ("pcapng: add new library for writing pcapng files")Cc: [email protected]Signed-off-by: Stephen Hemminger <[email protected]>
show more ...
lib: remove unneeded header includesThese header includes have been flagged by the iwyu_tooland removed.Signed-off-by: Sean Morrissey <[email protected]>
pcapng: use new ethdev namespaceRTE_ prefix was added bycommit 295968d17407 ("ethdev: add namespace")Fixes: 8d23ce8f5ee9 ("pcapng: add new library for writing pcapng files")Signed-off-by: Step
pcapng: use new ethdev namespaceRTE_ prefix was added bycommit 295968d17407 ("ethdev: add namespace")Fixes: 8d23ce8f5ee9 ("pcapng: add new library for writing pcapng files")Signed-off-by: Stephen Hemminger <[email protected]>
mbuf: add namespace to offload flagsFix the mbuf offload flags namespace by adding an RTE_ prefix to thename. The old flags remain usable, but a deprecation warning is issuedat compilation.Sign
mbuf: add namespace to offload flagsFix the mbuf offload flags namespace by adding an RTE_ prefix to thename. The old flags remain usable, but a deprecation warning is issuedat compilation.Signed-off-by: Olivier Matz <[email protected]>Acked-by: Andrew Rybchenko <[email protected]>Acked-by: Ajit Khaparde <[email protected]>Acked-by: Somnath Kotur <[email protected]>
build/windows: remove separate list of libsRather than maintaining a separate list of libraries which are to bebuilt on windows, use the standard library list and explicitly add toeach library th
build/windows: remove separate list of libsRather than maintaining a separate list of libraries which are to bebuilt on windows, use the standard library list and explicitly add toeach library that is not to be built a check for windows and disablethe library at that per-lib level. As well as shortening the mainlib/meson.build file, this also leads to the build summary at the end ofthe meson config run correctly listing the libraries which are not to bebuilt.Signed-off-by: Bruce Richardson <[email protected]>
pcapng: add new library for writing pcapng filesThis is utility library for writing pcapng format filesused by Wireshark family of utilities. Older tcpdumpalso knows how to read (but not write) t
pcapng: add new library for writing pcapng filesThis is utility library for writing pcapng format filesused by Wireshark family of utilities. Older tcpdumpalso knows how to read (but not write) this format.See https://github.com/pcapng/pcapng/Signed-off-by: Stephen Hemminger <[email protected]>Acked-by: Reshma Pattan <[email protected]>Acked-by: Ray Kinsella <[email protected]>