dev.dpdk.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/5] Fix issues reported by static analysis tool
@ 2015-02-23 14:09 Pawel Wodkowski
       [not found] ` <1424700600-1765-1-git-send-email-pawelx.wodkowski-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 25+ messages in thread
From: Pawel Wodkowski @ 2015-02-23 14:09 UTC (permalink / raw)
  To: dev-VfR2kkLFssw

Klockwork report some issues against current DPDK version. Most of them need
only cosmetic code changes (changing type of variable or adding explicit cast).

One issue related with ring pmd fix real memory leak problem.


Pawel Wodkowski (5):
  rte_timer: fix invalid declaration of rte_timer_cb_t
  librte_kvargs: make rte_kvargs_free() be consistent with other
    "free()"     functions
  pmd ring: fix possible memory leak during devinit
  cmdline: make parse_set_list() use size_t instead of int for low/high 
       parameter
  Fix usage of fgets in various places

 lib/librte_cfgfile/rte_cfgfile.c                |  2 +-
 lib/librte_cmdline/cmdline_parse_portlist.c     |  4 ++--
 lib/librte_eal/bsdapp/eal/eal.c                 |  2 +-
 lib/librte_eal/linuxapp/eal/eal_hugepage_info.c |  4 ++--
 lib/librte_eal/linuxapp/eal/eal_memory.c        |  2 +-
 lib/librte_eal/linuxapp/eal/eal_pci.c           |  2 +-
 lib/librte_eal/linuxapp/eal/eal_timer.c         |  2 +-
 lib/librte_kvargs/rte_kvargs.c                  |  4 ++++
 lib/librte_kvargs/rte_kvargs.h                  |  3 ++-
 lib/librte_pmd_ring/rte_eth_ring.c              |  6 +++---
 lib/librte_pmd_virtio/virtio_ethdev.c           |  2 +-
 lib/librte_power/rte_power_acpi_cpufreq.c       | 10 +++++-----
 lib/librte_timer/rte_timer.h                    |  4 ++--
 13 files changed, 26 insertions(+), 21 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2015-03-04 10:27 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-23 14:09 [PATCH 0/5] Fix issues reported by static analysis tool Pawel Wodkowski
     [not found] ` <1424700600-1765-1-git-send-email-pawelx.wodkowski-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-23 14:09   ` [PATCH 1/5] rte_timer: fix invalid declaration of rte_timer_cb_t Pawel Wodkowski
     [not found]     ` <1424700600-1765-2-git-send-email-pawelx.wodkowski-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-24 10:39       ` Olivier MATZ
     [not found]         ` <54EC54C5.2060002-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2015-02-24 11:12           ` Wodkowski, PawelX
     [not found]             ` <F6F2A6264E145F47A18AB6DF8E87425D12BAD646-kPTMFJFq+rFP9JyJpTNKArfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2015-02-24 12:36               ` Olivier MATZ
2015-02-23 14:09   ` [PATCH 2/5] librte_kvargs: make rte_kvargs_free() be consistent with other "free()" functions Pawel Wodkowski
     [not found]     ` <1424700600-1765-3-git-send-email-pawelx.wodkowski-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-24 11:30       ` Olivier MATZ
2015-02-23 14:09   ` [PATCH 3/5] pmd ring: fix possible memory leak during devinit Pawel Wodkowski
     [not found]     ` <1424700600-1765-4-git-send-email-pawelx.wodkowski-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-24 11:05       ` Olivier MATZ
     [not found]         ` <54EC5B11.1040201-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2015-02-24 11:15           ` Pawel Wodkowski
     [not found]             ` <54EC5D6A.7040009-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-24 11:30               ` Olivier MATZ
2015-02-23 14:09   ` [PATCH 4/5] cmdline: make parse_set_list() use size_t instead of int for low/high parameter Pawel Wodkowski
     [not found]     ` <1424700600-1765-5-git-send-email-pawelx.wodkowski-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-24 11:05       ` Olivier MATZ
2015-02-23 14:10   ` [PATCH 5/5] Fix usage of fgets in various places Pawel Wodkowski
     [not found]     ` <1424700600-1765-6-git-send-email-pawelx.wodkowski-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-23 16:00       ` Stephen Hemminger
2015-02-24  9:20         ` Panu Matilainen
     [not found]           ` <54EC4261.6050804-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-02-24 19:01             ` Stephen Hemminger
2015-02-25  5:37               ` Panu Matilainen
2015-02-25 12:41   ` [PATCH v2 0/4] Fix issues reported by static analysis tool Pawel Wodkowski
     [not found]     ` <1424868086-4232-1-git-send-email-pawelx.wodkowski-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-02-25 12:41       ` [PATCH v2 1/4] rte_timer: change declaration of rte_timer_cb_t Pawel Wodkowski
2015-02-25 12:41       ` [PATCH v2 2/4] librte_kvargs: make rte_kvargs_free() be consistent with other "free()" functions Pawel Wodkowski
2015-02-25 12:41       ` [PATCH v2 3/4] pmd ring: fix possible memory leak during devinit Pawel Wodkowski
2015-02-25 12:41       ` [PATCH v2 4/4] cmdline: make parse_set_list() use size_t instead of int for low/high parameter Pawel Wodkowski
2015-02-27 13:28       ` [PATCH v2 0/4] Fix issues reported by static analysis tool Olivier MATZ
     [not found]         ` <54F07113.5030200-pdR9zngts4EAvxtiuMwx3w@public.gmane.org>
2015-03-04 10:27           ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).