All of lore.kernel.org
 help / color / mirror / Atom feed
* [OE-core] [PATCH] btrfs-tools: upgrade 6.1.3 -> 6.2.1
@ 2023-03-16  0:28 wangmy
  2023-03-16 21:46 ` Alexandre Belloni
  0 siblings, 1 reply; 3+ messages in thread
From: wangmy @ 2023-03-16  0:28 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
=========
 * fix build with crypto libraries
 * CI images updated, build tests extended

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../btrfs-tools/{btrfs-tools_6.1.3.bb => btrfs-tools_6.2.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/btrfs-tools/{btrfs-tools_6.1.3.bb => btrfs-tools_6.2.1.bb} (98%)

diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.1.3.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.2.1.bb
similarity index 98%
rename from meta/recipes-devtools/btrfs-tools/btrfs-tools_6.1.3.bb
rename to meta/recipes-devtools/btrfs-tools/btrfs-tools_6.2.1.bb
index b4dfc5b3f3..a6ff87a90c 100644
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.1.3.bb
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.2.1.bb
@@ -19,7 +19,7 @@ SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git;b
            file://0001-Add-a-possibility-to-specify-where-python-modules-ar.patch \
            file://0001-Use-pread-pwrite-ftruncate-stat-instead-of-64bit-equ.patch \
            "
-SRCREV = "908b4b4450320e30fdef693f09b42f4eb93702c3"
+SRCREV = "366cd079bc43241b27e0838be0c5369aa00716f8"
 S = "${WORKDIR}/git"
 
 PACKAGECONFIG ??= " \
-- 
2.34.1



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

* Re: [OE-core] [PATCH] btrfs-tools: upgrade 6.1.3 -> 6.2.1
  2023-03-16  0:28 [OE-core] [PATCH] btrfs-tools: upgrade 6.1.3 -> 6.2.1 wangmy
@ 2023-03-16 21:46 ` Alexandre Belloni
  2023-03-17 13:26   ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Alexandre Belloni @ 2023-03-16 21:46 UTC (permalink / raw)
  To: wangmy; +Cc: openembedded-core

Hello,

This fails on the AB for edgerouter-alt and meta-intel:

https://autobuilder.yoctoproject.org/typhoon/#/builders/111/builds/4406/steps/11/logs/stdio
https://autobuilder.yoctoproject.org/typhoon/#/builders/100/builds/4205/steps/13/logs/stdio

| gcc  -isystem/home/pokybuild/yocto-worker/edgerouter-alt/build/build/tmp/work/x86_64-linux/btrfs-tools-native/6.2.1-r0/recipe-sysroot-native/usr/include -O2 -pipe -std=gnu11 -D_GNU_SOURCE -fPIC -fvisibility=hidden -I./libbtrfsutil    -o libbtrfsutil/stubs.o -c libbtrfsutil/stubs.c -o libbtrfsutil/stubs.o
| In file included from crypto/blake2b-round.h:140,
|                  from crypto/blake2b-sse2.c:33:
| crypto/blake2b-sse2.c: In function ‘blake2b_compress_sse2’:
| crypto/blake2b-load-sse41.h:21:25: error: incompatible type for argument 1 of ‘_mm_unpacklo_epi64’
|    21 | b0 = _mm_unpacklo_epi64(m0, m1); \
|       |                         ^~
|       |                         |
|       |                         uint64_t {aka long unsigned int}
| crypto/blake2b-round.h:146:3: note: in expansion of macro ‘LOAD_MSG_0_1’
|   146 |   LOAD_MSG_ ##r ##_1(b0, b1); \
|       |   ^~~~~~~~~
| crypto/blake2b-sse2.c:80:3: note: in expansion of macro ‘ROUND’
|    80 |   ROUND( 0 );
|       |   ^~~~~
| In file included from crypto/blake2b-sse2.c:25:
| /usr/lib/gcc/x86_64-redhat-linux/11/include/emmintrin.h:1046:29: note: expected ‘__m128i’ but argument is of type ‘uint64_t’ {aka ‘long unsigned int’}
|  1046 | _mm_unpacklo_epi64 (__m128i __A, __m128i __B)
|       |                     ~~~~~~~~^~~
| In file included from crypto/blake2b-round.h:140,
|                  from crypto/blake2b-sse2.c:33:

On 16/03/2023 08:28:44+0800, wangmy wrote:
> From: Wang Mingyu <wangmy@fujitsu.com>
> 
> Changelog:
> =========
>  * fix build with crypto libraries
>  * CI images updated, build tests extended
> 
> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>  .../btrfs-tools/{btrfs-tools_6.1.3.bb => btrfs-tools_6.2.1.bb}  | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>  rename meta/recipes-devtools/btrfs-tools/{btrfs-tools_6.1.3.bb => btrfs-tools_6.2.1.bb} (98%)
> 
> diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.1.3.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.2.1.bb
> similarity index 98%
> rename from meta/recipes-devtools/btrfs-tools/btrfs-tools_6.1.3.bb
> rename to meta/recipes-devtools/btrfs-tools/btrfs-tools_6.2.1.bb
> index b4dfc5b3f3..a6ff87a90c 100644
> --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.1.3.bb
> +++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.2.1.bb
> @@ -19,7 +19,7 @@ SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git;b
>             file://0001-Add-a-possibility-to-specify-where-python-modules-ar.patch \
>             file://0001-Use-pread-pwrite-ftruncate-stat-instead-of-64bit-equ.patch \
>             "
> -SRCREV = "908b4b4450320e30fdef693f09b42f4eb93702c3"
> +SRCREV = "366cd079bc43241b27e0838be0c5369aa00716f8"
>  S = "${WORKDIR}/git"
>  
>  PACKAGECONFIG ??= " \
> -- 
> 2.34.1
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#178664): https://lists.openembedded.org/g/openembedded-core/message/178664
> Mute This Topic: https://lists.openembedded.org/mt/97641211/3617179
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alexandre.belloni@bootlin.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


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

* Re: [OE-core] [PATCH] btrfs-tools: upgrade 6.1.3 -> 6.2.1
  2023-03-16 21:46 ` Alexandre Belloni
@ 2023-03-17 13:26   ` Khem Raj
  0 siblings, 0 replies; 3+ messages in thread
From: Khem Raj @ 2023-03-17 13:26 UTC (permalink / raw)
  To: alexandre.belloni; +Cc: wangmy, openembedded-core

FWIW it also fails compiling with clang compiler

https://errors.yoctoproject.org/Errors/Details/698109/

On Thu, Mar 16, 2023 at 2:46 PM Alexandre Belloni via
lists.openembedded.org
<alexandre.belloni=bootlin.com@lists.openembedded.org> wrote:
>
> Hello,
>
> This fails on the AB for edgerouter-alt and meta-intel:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/111/builds/4406/steps/11/logs/stdio
> https://autobuilder.yoctoproject.org/typhoon/#/builders/100/builds/4205/steps/13/logs/stdio
>
> | gcc  -isystem/home/pokybuild/yocto-worker/edgerouter-alt/build/build/tmp/work/x86_64-linux/btrfs-tools-native/6.2.1-r0/recipe-sysroot-native/usr/include -O2 -pipe -std=gnu11 -D_GNU_SOURCE -fPIC -fvisibility=hidden -I./libbtrfsutil    -o libbtrfsutil/stubs.o -c libbtrfsutil/stubs.c -o libbtrfsutil/stubs.o
> | In file included from crypto/blake2b-round.h:140,
> |                  from crypto/blake2b-sse2.c:33:
> | crypto/blake2b-sse2.c: In function ‘blake2b_compress_sse2’:
> | crypto/blake2b-load-sse41.h:21:25: error: incompatible type for argument 1 of ‘_mm_unpacklo_epi64’
> |    21 | b0 = _mm_unpacklo_epi64(m0, m1); \
> |       |                         ^~
> |       |                         |
> |       |                         uint64_t {aka long unsigned int}
> | crypto/blake2b-round.h:146:3: note: in expansion of macro ‘LOAD_MSG_0_1’
> |   146 |   LOAD_MSG_ ##r ##_1(b0, b1); \
> |       |   ^~~~~~~~~
> | crypto/blake2b-sse2.c:80:3: note: in expansion of macro ‘ROUND’
> |    80 |   ROUND( 0 );
> |       |   ^~~~~
> | In file included from crypto/blake2b-sse2.c:25:
> | /usr/lib/gcc/x86_64-redhat-linux/11/include/emmintrin.h:1046:29: note: expected ‘__m128i’ but argument is of type ‘uint64_t’ {aka ‘long unsigned int’}
> |  1046 | _mm_unpacklo_epi64 (__m128i __A, __m128i __B)
> |       |                     ~~~~~~~~^~~
> | In file included from crypto/blake2b-round.h:140,
> |                  from crypto/blake2b-sse2.c:33:
>
> On 16/03/2023 08:28:44+0800, wangmy wrote:
> > From: Wang Mingyu <wangmy@fujitsu.com>
> >
> > Changelog:
> > =========
> >  * fix build with crypto libraries
> >  * CI images updated, build tests extended
> >
> > Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> > ---
> >  .../btrfs-tools/{btrfs-tools_6.1.3.bb => btrfs-tools_6.2.1.bb}  | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >  rename meta/recipes-devtools/btrfs-tools/{btrfs-tools_6.1.3.bb => btrfs-tools_6.2.1.bb} (98%)
> >
> > diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.1.3.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.2.1.bb
> > similarity index 98%
> > rename from meta/recipes-devtools/btrfs-tools/btrfs-tools_6.1.3.bb
> > rename to meta/recipes-devtools/btrfs-tools/btrfs-tools_6.2.1.bb
> > index b4dfc5b3f3..a6ff87a90c 100644
> > --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.1.3.bb
> > +++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_6.2.1.bb
> > @@ -19,7 +19,7 @@ SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git;b
> >             file://0001-Add-a-possibility-to-specify-where-python-modules-ar.patch \
> >             file://0001-Use-pread-pwrite-ftruncate-stat-instead-of-64bit-equ.patch \
> >             "
> > -SRCREV = "908b4b4450320e30fdef693f09b42f4eb93702c3"
> > +SRCREV = "366cd079bc43241b27e0838be0c5369aa00716f8"
> >  S = "${WORKDIR}/git"
> >
> >  PACKAGECONFIG ??= " \
> > --
> > 2.34.1
> >
>
> >
> >
> >
>
>
> --
> Alexandre Belloni, co-owner and COO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#178735): https://lists.openembedded.org/g/openembedded-core/message/178735
> Mute This Topic: https://lists.openembedded.org/mt/97641211/1997914
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

end of thread, other threads:[~2023-03-17 13:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-16  0:28 [OE-core] [PATCH] btrfs-tools: upgrade 6.1.3 -> 6.2.1 wangmy
2023-03-16 21:46 ` Alexandre Belloni
2023-03-17 13:26   ` Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.