Re: [PATCH] config/riscv: name the cross file properly

2024-10-03 Thread Radoslaw Biernacki
Staszek, can you update your email? (same with up...@semihalf.com?) On Wed, Oct 2, 2024 at 6:51 PM 'Stephen Hemminger' via upstream wrote: > > On Tue, 21 Jun 2022 14:29:23 +0200 > Stanislaw Kardach wrote: > > > Since the riscv64_linux_gcc was in fact a Ubuntu-specific cross-file, > > rename it.

Re: [dpdk-dev] [PATCH 1/2] test/memzone: add test for memzone count in eal mem config

2018-01-27 Thread Radoslaw Biernacki
_free(). This way we would be able to free only the allocated memzones and prevent leaking out those memzones to other tests. Reviewed-by: Radoslaw Biernacki adoslaw.bierna...@linaro.com> On 26 January 2018 at 18:40, Anatoly Burakov wrote: > Ensure that memzone count in eal mem config is incr

Re: [dpdk-dev] [PATCH 2/2] test/memzone: handle previously allocated memzones

2018-01-27 Thread Radoslaw Biernacki
Thanks, looks OK for me. Reviewed-by: Radoslaw Biernacki adoslaw.bierna...@linaro.com> On 26 January 2018 at 18:40, Anatoly Burakov wrote: > Currently, memzone autotest expects there to be no memzones > present by the time the test is run. Some hardware drivers > will allocate

Re: [dpdk-dev] [PATCH 1/3] test: fix typo in memzone autotest

2018-01-03 Thread Radoslaw Biernacki
s///g effects ;) Thank you! Reviewed-by: Radoslaw Biernacki On 21 December 2017 at 19:19, Anatoly Burakov wrote: > Fixes: 71330483a193 ("test/memzone: fix memory leak") > Cc: radoslaw.bierna...@linaro.org > Cc: sta...@dpdk.org > Signed-off-by: Anatoly Burak

Re: [dpdk-dev] [dpdk-announce] A Bug in DPDK? Use Bugzilla!

2017-12-15 Thread Radoslaw Biernacki
Hi, What about DTS bugs. Can we add DTS into component list in bugzilla? On 15 December 2017 at 10:11, Thomas Monjalon wrote: > Hi, > > As announced during the last summits at Dublin and San Jose, > an instance of Bugzilla is available on dpdk.org: > https://dpdk.org/tracker/ > > We sho

Re: [dpdk-dev] [PATCH 2/3] power: switching to unbuffered access for /sys files

2017-12-01 Thread Radoslaw Biernacki
Hi David, Sorry for log delay. I will make V3 with your suggestions. Thanks. On 23 November 2017 at 15:42, Hunt, David wrote: > Hi Radoslaw, > > > > On 11/11/2017 6:55 PM, Radoslaw Biernacki wrote: > >> This patch fixes the bug caused by improper use of buffered

Re: [dpdk-dev] [PATCH 0/3] power: fixes for power ACPI through sysfs

2017-11-21 Thread Radoslaw Biernacki
Hi David, I forgot to add V2 to the topic (sorry for that). But did you had time to look at V2 of this patch? On 11 November 2017 at 19:55, Radoslaw Biernacki < radoslaw.bierna...@linaro.org> wrote: > This series of patches is fixing bug in power ACPI subsystem code as > well as

[dpdk-dev] [PATCH 2/3] power: switching to unbuffered access for /sys files

2017-11-11 Thread Radoslaw Biernacki
ommon interface for guest and host") CC: sta...@dpdk.org Signed-off-by: Radoslaw Biernacki --- lib/librte_power/rte_power_acpi_cpufreq.c | 211 +- 1 file changed, 91 insertions(+), 120 deletions(-) diff --git a/lib/librte_power/rte_power_acpi_cpufreq.c b/lib/li

[dpdk-dev] [PATCH 1/3] power: removing code macros

2017-11-11 Thread Radoslaw Biernacki
This fix implements David Hunt suggestion to remove error checking code macros. Together with improved code readability it removes checkpatch warnings. Fixes: 445c6528b55f ("power: common interface for guest and host") CC: sta...@dpdk.org Signed-off-by: Radoslaw Biernacki --- lib/li

[dpdk-dev] [PATCH 3/3] power: check if userspace governor is available

2017-11-11 Thread Radoslaw Biernacki
g the rte_power_acpi_cpufreq_init(). Signed-off-by: Radoslaw Biernacki --- lib/librte_power/rte_power_acpi_cpufreq.c | 74 +++ 1 file changed, 74 insertions(+) diff --git a/lib/librte_power/rte_power_acpi_cpufreq.c b/lib/librte_power/rte_power_acpi_cpufreq.c index f8

[dpdk-dev] [PATCH 0/3] power: fixes for power ACPI through sysfs

2017-11-11 Thread Radoslaw Biernacki
together with suggestion about needed kernel boot parameter Radoslaw Biernacki (3): power: removing code macros power: switching to unbuffered access for /sys files power: check if userspace governor is available lib/librte_power/rte_power_acpi_cpufreq.c | 304

[dpdk-dev] [PATCH] test/memory: fixing line parsing in memory autotest

2017-11-09 Thread Radoslaw Biernacki
secutive test (error does not propagate). Fixes: 7ba49d39f14c ("mem: rename segment address from physical to IOVA") Fixes: b4ce15aa2bc7 ("app/test: fix memory autotest") Signed-off-by: Radoslaw Biernacki --- test/test/autotest_test_funcs.py | 37 +++-

[dpdk-dev] [PATCH] test/memzone: fixing memory leak in memzone autotest

2017-11-08 Thread Radoslaw Biernacki
case. Fixes: ff909fe21f0a ("mem: introduce memzone freeing") Signed-off-by: Radoslaw Biernacki --- test/test/test_memzone.c | 135 ++- 1 file changed, 134 insertions(+), 1 deletion(-) diff --git a/test/test/test_memzone.c b/test/test/test

Re: [dpdk-dev] [PATCH 2/2] power: check if userspace governor is available

2017-10-18 Thread Radoslaw Biernacki
Hi David, On 18 October 2017 at 12:53, Hunt, David wrote: > Hi Radoslaw, > > > On 16/10/2017 2:47 PM, Radoslaw Biernacki wrote: > >> Since for new Intel CPU's kernel use intel_pstate driver, >> which does not offer userspace governor, it is vise to check

Re: [dpdk-dev] [PATCH 1/2] power: switching to unbuffered stdio for /sys file access

2017-10-18 Thread Radoslaw Biernacki
Hi David, Thank you for comments. On 18 October 2017 at 12:33, Hunt, David wrote: > Hi Radoslaw, > > > On 16/10/2017 2:47 PM, Radoslaw Biernacki wrote: > >> This patch fixes the bug caused by improper use of buffered >> stdio file access for switching the CPU freq

[dpdk-dev] [PATCH 2/2] power: check if userspace governor is available

2017-10-16 Thread Radoslaw Biernacki
g the rte_power_acpi_cpufreq_init(). This patch also add the /sys file name to error message as on some platforms some files expected by this rte_power are not available. This is also useful for pinning down the root cause of the problem. Signed-off-by: Radoslaw Biernacki --- lib/librte_

[dpdk-dev] [PATCH 1/2] power: switching to unbuffered stdio for /sys file access

2017-10-16 Thread Radoslaw Biernacki
not returned by fwrite()/fputs()/fprintf(). Since with buffered approatch, fflush() need to be done every time it is better to use unbuffered mode or not use stdio at all (instead use plain open/write functions). To minimize amount of changes this fix use first approach. Signed-off-by: Radoslaw

[dpdk-dev] [PATCH] test/logs: fix dynamic log levels testing

2017-09-21 Thread Radoslaw Biernacki
console, the initial log level must be low (DEBUG). It is than changed above ERR when we test if TESTAPP2 log type can be filtered by log type log level. Fixes: c1b5fa94a46f ("eal: support dynamic log types") Signed-off-by: Radoslaw Biernacki --- test/test/test_logs.c | 10 +---