DPDK CI discussions
 help / color / mirror / Atom feed
* Re: [dpdk-ci] [dpdk-dev] [PATCH v12 01/10] eal: add basic threading functions
       [not found]     ` <20210802210811.GA29249@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net>
@ 2021-08-02 21:37       ` Dmitry Kozlyuk
  2021-08-03 15:11         ` Owen Hilyard
  0 siblings, 1 reply; 4+ messages in thread
From: Dmitry Kozlyuk @ 2021-08-02 21:37 UTC (permalink / raw)
  To: Narcisa Ana Maria Vasile
  Cc: dev, thomas, khot, navasile, dmitrym, roretzla, talshn, ocardona,
	bruce.richardson, david.marchand, pallavi.kadam, ci

+ ci@dpdk.org

2021-08-02 14:08 (UTC-0700), Narcisa Ana Maria Vasile:
> On Mon, Aug 02, 2021 at 10:32:17AM -0700, Narcisa Ana Maria Vasile wrote:
> > From: Narcisa Vasile <navasile@microsoft.com>
> > 
> > Use a portable, type-safe representation for the thread identifier.
> > Add functions for comparing thread ids and obtaining the thread id
> > for the current thread.
> > 
> > Signed-off-by: Narcisa Vasile <navasile@microsoft.com>
> > ---
> >  lib/eal/common/meson.build            |  1 +
> >  lib/eal/{unix => common}/rte_thread.c | 57 ++++++++++++++++-----------
> >  lib/eal/include/rte_thread.h          | 48 +++++++++++++++++-----
> >  lib/eal/unix/meson.build              |  1 -
> >  lib/eal/version.map                   |  3 ++
> >  lib/eal/windows/rte_thread.c          | 17 ++++++++
> >  6 files changed, 95 insertions(+), 32 deletions(-)
> >  rename lib/eal/{unix => common}/rte_thread.c (66%)
> > 
> > diff --git a/lib/eal/common/meson.build b/lib/eal/common/meson.build  
> 
> Hello, 
> 
> I see the following error on this patch:
> 
> ninja: error: loading 'build.ninja': No such file or directory
> 
> https://lab.dpdk.org/results/dashboard/patchsets/18090/
> 
> Locally, the build succeedes.
> How can I see more information about this build error?

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

* Re: [dpdk-ci] [dpdk-dev] [PATCH v12 01/10] eal: add basic threading functions
  2021-08-02 21:37       ` [dpdk-ci] [dpdk-dev] [PATCH v12 01/10] eal: add basic threading functions Dmitry Kozlyuk
@ 2021-08-03 15:11         ` Owen Hilyard
  2021-08-03 15:38           ` Dmitry Kozlyuk
  0 siblings, 1 reply; 4+ messages in thread
From: Owen Hilyard @ 2021-08-03 15:11 UTC (permalink / raw)
  To: Dmitry Kozlyuk
  Cc: Narcisa Ana Maria Vasile, dev, Thomas Monjalon, Khoa To,
	navasile, Dmitry Malloy, Tyler Retzlaff, talshn, Omar Cardona,
	Richardson, Bruce, David Marchand, pallavi.kadam, ci

[-- Attachment #1: Type: text/plain, Size: 2120 bytes --]

It seems like meson encountered an error when building

app/test/meson.build:472:11: ERROR: Index 1 out of bounds of array of size
> 1.
>
> A full log can be found at
> /home-local/jenkins-local/jenkins-agent/workspace/Apply-Custom-Patch-Set/dpdk/build/meson-logs/meson-log.txt
> ninja: error: loading 'build.ninja': No such file or directory
>

I can also reproduce the issue building locally (Meson version: 0.58.1):
1. Get the DPDK main branch (f12b844b54f4ea7908ecb08ade04c7366ede031d)
2. apply all patches
3. meson $BUILD_DIR

Meson doesn't really give any extra information aside from that, but
looking at the build file, it looks like one of the fast_tests has no
arguments and at least one is expected.

On Mon, Aug 2, 2021 at 5:37 PM Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
wrote:

> + ci@dpdk.org
>
> 2021-08-02 14:08 (UTC-0700), Narcisa Ana Maria Vasile:
> > On Mon, Aug 02, 2021 at 10:32:17AM -0700, Narcisa Ana Maria Vasile wrote:
> > > From: Narcisa Vasile <navasile@microsoft.com>
> > >
> > > Use a portable, type-safe representation for the thread identifier.
> > > Add functions for comparing thread ids and obtaining the thread id
> > > for the current thread.
> > >
> > > Signed-off-by: Narcisa Vasile <navasile@microsoft.com>
> > > ---
> > >  lib/eal/common/meson.build            |  1 +
> > >  lib/eal/{unix => common}/rte_thread.c | 57 ++++++++++++++++-----------
> > >  lib/eal/include/rte_thread.h          | 48 +++++++++++++++++-----
> > >  lib/eal/unix/meson.build              |  1 -
> > >  lib/eal/version.map                   |  3 ++
> > >  lib/eal/windows/rte_thread.c          | 17 ++++++++
> > >  6 files changed, 95 insertions(+), 32 deletions(-)
> > >  rename lib/eal/{unix => common}/rte_thread.c (66%)
> > >
> > > diff --git a/lib/eal/common/meson.build b/lib/eal/common/meson.build
> >
> > Hello,
> >
> > I see the following error on this patch:
> >
> > ninja: error: loading 'build.ninja': No such file or directory
> >
> > https://lab.dpdk.org/results/dashboard/patchsets/18090/
> >
> > Locally, the build succeedes.
> > How can I see more information about this build error?
>

[-- Attachment #2: Type: text/html, Size: 3232 bytes --]

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

* Re: [dpdk-ci] [dpdk-dev] [PATCH v12 01/10] eal: add basic threading functions
  2021-08-03 15:11         ` Owen Hilyard
@ 2021-08-03 15:38           ` Dmitry Kozlyuk
  2021-08-03 15:57             ` Owen Hilyard
  0 siblings, 1 reply; 4+ messages in thread
From: Dmitry Kozlyuk @ 2021-08-03 15:38 UTC (permalink / raw)
  To: Owen Hilyard
  Cc: Narcisa Ana Maria Vasile, dev, Thomas Monjalon, Khoa To,
	navasile, Dmitry Malloy, Tyler Retzlaff, talshn, Omar Cardona,
	Richardson, Bruce, David Marchand, pallavi.kadam, ci

2021-08-03 11:11 (UTC-0400), Owen Hilyard:
> It seems like meson encountered an error when building
> 
> app/test/meson.build:472:11: ERROR: Index 1 out of bounds of array of size
> > 1.
> >
> > A full log can be found at
> > /home-local/jenkins-local/jenkins-agent/workspace/Apply-Custom-Patch-Set/dpdk/build/meson-logs/meson-log.txt
> > ninja: error: loading 'build.ninja': No such file or directory
> >  
> 
> I can also reproduce the issue building locally (Meson version: 0.58.1):

Meson 0.58+ has a known issue on Windows:
https://github.com/mesonbuild/meson/issues/8981
The last known good version is 0.57.2.

> 1. Get the DPDK main branch (f12b844b54f4ea7908ecb08ade04c7366ede031d)
> 2. apply all patches
> 3. meson $BUILD_DIR
> 
> Meson doesn't really give any extra information aside from that, but
> looking at the build file, it looks like one of the fast_tests has no
> arguments and at least one is expected.
> 
> On Mon, Aug 2, 2021 at 5:37 PM Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
> wrote:
> 
> > + ci@dpdk.org
> >
> > 2021-08-02 14:08 (UTC-0700), Narcisa Ana Maria Vasile:  
> > > On Mon, Aug 02, 2021 at 10:32:17AM -0700, Narcisa Ana Maria Vasile wrote:  
> > > > From: Narcisa Vasile <navasile@microsoft.com>
> > > >
> > > > Use a portable, type-safe representation for the thread identifier.
> > > > Add functions for comparing thread ids and obtaining the thread id
> > > > for the current thread.
> > > >
> > > > Signed-off-by: Narcisa Vasile <navasile@microsoft.com>
> > > > ---
> > > >  lib/eal/common/meson.build            |  1 +
> > > >  lib/eal/{unix => common}/rte_thread.c | 57 ++++++++++++++++-----------
> > > >  lib/eal/include/rte_thread.h          | 48 +++++++++++++++++-----
> > > >  lib/eal/unix/meson.build              |  1 -
> > > >  lib/eal/version.map                   |  3 ++
> > > >  lib/eal/windows/rte_thread.c          | 17 ++++++++
> > > >  6 files changed, 95 insertions(+), 32 deletions(-)
> > > >  rename lib/eal/{unix => common}/rte_thread.c (66%)
> > > >
> > > > diff --git a/lib/eal/common/meson.build b/lib/eal/common/meson.build  
> > >
> > > Hello,
> > >
> > > I see the following error on this patch:
> > >
> > > ninja: error: loading 'build.ninja': No such file or directory
> > >
> > > https://lab.dpdk.org/results/dashboard/patchsets/18090/
> > >
> > > Locally, the build succeedes.
> > > How can I see more information about this build error?  
> >  


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

* Re: [dpdk-ci] [dpdk-dev] [PATCH v12 01/10] eal: add basic threading functions
  2021-08-03 15:38           ` Dmitry Kozlyuk
@ 2021-08-03 15:57             ` Owen Hilyard
  0 siblings, 0 replies; 4+ messages in thread
From: Owen Hilyard @ 2021-08-03 15:57 UTC (permalink / raw)
  To: Dmitry Kozlyuk
  Cc: Narcisa Ana Maria Vasile, dev, Thomas Monjalon, Khoa To,
	navasile, Dmitry Malloy, Tyler Retzlaff, talshn, Omar Cardona,
	Richardson, Bruce, David Marchand, pallavi.kadam, ci

[-- Attachment #1: Type: text/plain, Size: 2797 bytes --]

Our windows servers are both running 0.57.1, but all of the *nix hosts are
running 0.58.1. This issue also happens on 0.57.1 and 0.57.2, with the
exact same steps to reproduce.

On Tue, Aug 3, 2021 at 11:38 AM Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
wrote:

> 2021-08-03 11:11 (UTC-0400), Owen Hilyard:
> > It seems like meson encountered an error when building
> >
> > app/test/meson.build:472:11: ERROR: Index 1 out of bounds of array of
> size
> > > 1.
> > >
> > > A full log can be found at
> > >
> /home-local/jenkins-local/jenkins-agent/workspace/Apply-Custom-Patch-Set/dpdk/build/meson-logs/meson-log.txt
> > > ninja: error: loading 'build.ninja': No such file or directory
> > >
> >
> > I can also reproduce the issue building locally (Meson version: 0.58.1):
>
> Meson 0.58+ has a known issue on Windows:
> https://github.com/mesonbuild/meson/issues/8981
> The last known good version is 0.57.2.
>
> > 1. Get the DPDK main branch (f12b844b54f4ea7908ecb08ade04c7366ede031d)
> > 2. apply all patches
> > 3. meson $BUILD_DIR
> >
> > Meson doesn't really give any extra information aside from that, but
> > looking at the build file, it looks like one of the fast_tests has no
> > arguments and at least one is expected.
> >
> > On Mon, Aug 2, 2021 at 5:37 PM Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
> > wrote:
> >
> > > + ci@dpdk.org
> > >
> > > 2021-08-02 14:08 (UTC-0700), Narcisa Ana Maria Vasile:
> > > > On Mon, Aug 02, 2021 at 10:32:17AM -0700, Narcisa Ana Maria Vasile
> wrote:
> > > > > From: Narcisa Vasile <navasile@microsoft.com>
> > > > >
> > > > > Use a portable, type-safe representation for the thread identifier.
> > > > > Add functions for comparing thread ids and obtaining the thread id
> > > > > for the current thread.
> > > > >
> > > > > Signed-off-by: Narcisa Vasile <navasile@microsoft.com>
> > > > > ---
> > > > >  lib/eal/common/meson.build            |  1 +
> > > > >  lib/eal/{unix => common}/rte_thread.c | 57
> ++++++++++++++++-----------
> > > > >  lib/eal/include/rte_thread.h          | 48 +++++++++++++++++-----
> > > > >  lib/eal/unix/meson.build              |  1 -
> > > > >  lib/eal/version.map                   |  3 ++
> > > > >  lib/eal/windows/rte_thread.c          | 17 ++++++++
> > > > >  6 files changed, 95 insertions(+), 32 deletions(-)
> > > > >  rename lib/eal/{unix => common}/rte_thread.c (66%)
> > > > >
> > > > > diff --git a/lib/eal/common/meson.build
> b/lib/eal/common/meson.build
> > > >
> > > > Hello,
> > > >
> > > > I see the following error on this patch:
> > > >
> > > > ninja: error: loading 'build.ninja': No such file or directory
> > > >
> > > > https://lab.dpdk.org/results/dashboard/patchsets/18090/
> > > >
> > > > Locally, the build succeedes.
> > > > How can I see more information about this build error?
> > >
>
>

[-- Attachment #2: Type: text/html, Size: 4235 bytes --]

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

end of thread, other threads:[~2021-08-03 15:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1627684312-28630-1-git-send-email-navasile@linux.microsoft.com>
     [not found] ` <1627925546-29982-1-git-send-email-navasile@linux.microsoft.com>
     [not found]   ` <1627925546-29982-2-git-send-email-navasile@linux.microsoft.com>
     [not found]     ` <20210802210811.GA29249@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net>
2021-08-02 21:37       ` [dpdk-ci] [dpdk-dev] [PATCH v12 01/10] eal: add basic threading functions Dmitry Kozlyuk
2021-08-03 15:11         ` Owen Hilyard
2021-08-03 15:38           ` Dmitry Kozlyuk
2021-08-03 15:57             ` Owen Hilyard

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).