All of lore.kernel.org
 help / color / mirror / Atom feed
* [BUG] Linux-next fails to link on ARM in allyesconfig
@ 2019-01-23 10:09 Maxim Kuvyrkov
  2019-01-23 10:12 ` Ard Biesheuvel
  2019-01-23 11:06 ` Eran Ben Elisha
  0 siblings, 2 replies; 3+ messages in thread
From: Maxim Kuvyrkov @ 2019-01-23 10:09 UTC (permalink / raw)
  To: Eran Ben Elisha
  Cc: Mark Brown, Arnd Bergmann, linux-arm-kernel, Ard Biesheuvel

Hi Eran,

It seems that your commit 880ee82f0313453ec5a6cb122866ac057263066b causes a link failure for ARM in allyesconfig.  This happens for at least gcc-8 and gcc-master compilers.
===
arm-linux-gnueabihf-ld: net/core/devlink.o: in function `devlink_health_buffers_create':
devlink.c:(.text+0x4eac): undefined reference to `__aeabi_uldivmod'
===

Would you please investigate?  Below is diagnostics from Linaro's automated bisection job.


Successfully identified regression in CI configuration gnu-release-arm-next-allyesconfig for linux between bad_rev 5b22549b8c0011b8cc81b6f4fcd082e5545c3225 and baseline_rev a37d50ca3b837c19a297f349365d11a20c1087d0 .

Culprit:
<cut>
commit 880ee82f0313453ec5a6cb122866ac057263066b
Author: Eran Ben Elisha <eranbe@mellanox.com>
Date:   Thu Jan 17 23:59:11 2019 +0200

   devlink: Add health reporter create/destroy functionality

   Devlink health reporter is an instance for reporting, diagnosing and
   recovering from run time errors discovered by the reporters.
   Define it's data structure and supported operations.
   In addition, expose devlink API to create and destroy a reporter.
   Each devlink instance will hold it's own reporters list.

   As part of the allocation, driver shall provide a set of callbacks which
   will be used the devlink in order to handle health reports and user
   commands related to this reporter. In addition, driver is entitled to
   provide some priv pointer, which can be fetched from the reporter by
   devlink_health_reporter_priv function.

   For each reporter, devlink will hold a metadata of statistics,
   buffers and status.

   Signed-off-by: Eran Ben Elisha <eranbe@mellanox.com>
   Reviewed-by: Moshe Shemesh <moshe@mellanox.com>
   Signed-off-by: David S. Miller <davem@davemloft.net>
</cut>

Results regressed from (for last_good == cb5ccfbe73b389470e1dc11061bb185ef4bc9aec)

<cut>
reset_artifacts:
-10
build_abe binutils:
-9
build_abe stage1:
-8
linux_n_obj:
all
</cut>

to (for first_bad == 880ee82f0313453ec5a6cb122866ac057263066b)

<cut>
reset_artifacts:
-10
build_abe binutils:
-9
build_abe stage1:
-8
linux_n_obj:
17403
</cut>

Artifacts of last_good build: https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/build-cb5ccfbe73b389470e1dc11061bb185ef4bc9aec/
Artifacts of first_bad build: https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/build-880ee82f0313453ec5a6cb122866ac057263066b/

Reproduce builds:
<cut>
mkdir investigate-linux-880ee82f0313453ec5a6cb122866ac057263066b
cd investigate-linux-880ee82f0313453ec5a6cb122866ac057263066b

git clone https://git.linaro.org/toolchain/jenkins-scripts

mkdir -p artifacts/manifests
curl -o artifacts/manifests/build-baseline.sh https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/manifests/build-baseline.sh
curl -o artifacts/manifests/build-parameters.sh https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/manifests/build-parameters.sh
curl -o artifacts/test.sh https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/test.sh
chmod +x artifacts/test.sh

# Reproduce the baseline build (build all pre-requisites)
./jenkins-scripts/tcwg_kernel-build.sh @@ artifacts/manifests/build-baseline.sh

cd linux

# Reproduce first_bad build
git checkout --detach 880ee82f0313453ec5a6cb122866ac057263066b
../artifacts/test.sh

# Reproduce last_good build
git checkout --detach cb5ccfbe73b389470e1dc11061bb185ef4bc9aec
../artifacts/test.sh

cd ..
</cut>

History of pending regressions and results: https://git.linaro.org/toolchain/ci/base-artifacts.git/log/?h=linaro-local/ci/tcwg_kernel/gnu-release-arm-next-allyesconfig

Bisect log: https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/bisect.log/*view*/
Artifacts: https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/
Build URL: https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/
Build log: https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/consoleText

--
Maxim Kuvyrkov
www.linaro.org




_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [BUG] Linux-next fails to link on ARM in allyesconfig
  2019-01-23 10:09 [BUG] Linux-next fails to link on ARM in allyesconfig Maxim Kuvyrkov
@ 2019-01-23 10:12 ` Ard Biesheuvel
  2019-01-23 11:06 ` Eran Ben Elisha
  1 sibling, 0 replies; 3+ messages in thread
From: Ard Biesheuvel @ 2019-01-23 10:12 UTC (permalink / raw)
  To: Maxim Kuvyrkov
  Cc: Mark Brown, Eran Ben Elisha, linux-arm-kernel, Arnd Bergmann

On Wed, 23 Jan 2019 at 11:09, Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org> wrote:
>
> Hi Eran,
>
> It seems that your commit 880ee82f0313453ec5a6cb122866ac057263066b causes a link failure for ARM in allyesconfig.  This happens for at least gcc-8 and gcc-master compilers.
> ===
> arm-linux-gnueabihf-ld: net/core/devlink.o: in function `devlink_health_buffers_create':
> devlink.c:(.text+0x4eac): undefined reference to `__aeabi_uldivmod'
> ===
>
> Would you please investigate?  Below is diagnostics from Linaro's automated bisection job.
>
>
> Successfully identified regression in CI configuration gnu-release-arm-next-allyesconfig for linux between bad_rev 5b22549b8c0011b8cc81b6f4fcd082e5545c3225 and baseline_rev a37d50ca3b837c19a297f349365d11a20c1087d0 .
>
> Culprit:
> <cut>
> commit 880ee82f0313453ec5a6cb122866ac057263066b
> Author: Eran Ben Elisha <eranbe@mellanox.com>
> Date:   Thu Jan 17 23:59:11 2019 +0200
>
>    devlink: Add health reporter create/destroy functionality
>

That code uses u64 for quantities that can just fit into an 'int', and
we end up with 64-bit division using support code, since ARM cannot do
it natively.

Does the change below help at all?

diff --git a/net/core/devlink.c b/net/core/devlink.c
index 60248a53c0ad..341dd14c13a6 100644
--- a/net/core/devlink.c
+++ b/net/core/devlink.c
@@ -3644,8 +3644,8 @@ static struct devlink_health_buffer **
 devlink_health_buffers_create(u64 size)
 {
        struct devlink_health_buffer **buffers_list;
-       u64 num_of_buffers = DEVLINK_HEALTH_SIZE_TO_BUFFERS(size);
-       u64 i;
+       int num_of_buffers = DEVLINK_HEALTH_SIZE_TO_BUFFERS(size);
+       int i;

        buffers_list = kcalloc(num_of_buffers,
                               sizeof(struct devlink_health_buffer *),



>    Devlink health reporter is an instance for reporting, diagnosing and
>    recovering from run time errors discovered by the reporters.
>    Define it's data structure and supported operations.
>    In addition, expose devlink API to create and destroy a reporter.
>    Each devlink instance will hold it's own reporters list.
>
>    As part of the allocation, driver shall provide a set of callbacks which
>    will be used the devlink in order to handle health reports and user
>    commands related to this reporter. In addition, driver is entitled to
>    provide some priv pointer, which can be fetched from the reporter by
>    devlink_health_reporter_priv function.
>
>    For each reporter, devlink will hold a metadata of statistics,
>    buffers and status.
>
>    Signed-off-by: Eran Ben Elisha <eranbe@mellanox.com>
>    Reviewed-by: Moshe Shemesh <moshe@mellanox.com>
>    Signed-off-by: David S. Miller <davem@davemloft.net>
> </cut>
>
> Results regressed from (for last_good == cb5ccfbe73b389470e1dc11061bb185ef4bc9aec)
>
> <cut>
> reset_artifacts:
> -10
> build_abe binutils:
> -9
> build_abe stage1:
> -8
> linux_n_obj:
> all
> </cut>
>
> to (for first_bad == 880ee82f0313453ec5a6cb122866ac057263066b)
>
> <cut>
> reset_artifacts:
> -10
> build_abe binutils:
> -9
> build_abe stage1:
> -8
> linux_n_obj:
> 17403
> </cut>
>
> Artifacts of last_good build: https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/build-cb5ccfbe73b389470e1dc11061bb185ef4bc9aec/
> Artifacts of first_bad build: https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/build-880ee82f0313453ec5a6cb122866ac057263066b/
>
> Reproduce builds:
> <cut>
> mkdir investigate-linux-880ee82f0313453ec5a6cb122866ac057263066b
> cd investigate-linux-880ee82f0313453ec5a6cb122866ac057263066b
>
> git clone https://git.linaro.org/toolchain/jenkins-scripts
>
> mkdir -p artifacts/manifests
> curl -o artifacts/manifests/build-baseline.sh https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/manifests/build-baseline.sh
> curl -o artifacts/manifests/build-parameters.sh https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/manifests/build-parameters.sh
> curl -o artifacts/test.sh https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/test.sh
> chmod +x artifacts/test.sh
>
> # Reproduce the baseline build (build all pre-requisites)
> ./jenkins-scripts/tcwg_kernel-build.sh @@ artifacts/manifests/build-baseline.sh
>
> cd linux
>
> # Reproduce first_bad build
> git checkout --detach 880ee82f0313453ec5a6cb122866ac057263066b
> ../artifacts/test.sh
>
> # Reproduce last_good build
> git checkout --detach cb5ccfbe73b389470e1dc11061bb185ef4bc9aec
> ../artifacts/test.sh
>
> cd ..
> </cut>
>
> History of pending regressions and results: https://git.linaro.org/toolchain/ci/base-artifacts.git/log/?h=linaro-local/ci/tcwg_kernel/gnu-release-arm-next-allyesconfig
>
> Bisect log: https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/bisect.log/*view*/
> Artifacts: https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/artifact/artifacts/
> Build URL: https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/
> Build log: https://ci.linaro.org/job/tcwg_kernel-bisect-gnu-release-arm-next-allyesconfig/12/consoleText
>
> --
> Maxim Kuvyrkov
> www.linaro.org
>
>
>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [BUG] Linux-next fails to link on ARM in allyesconfig
  2019-01-23 10:09 [BUG] Linux-next fails to link on ARM in allyesconfig Maxim Kuvyrkov
  2019-01-23 10:12 ` Ard Biesheuvel
@ 2019-01-23 11:06 ` Eran Ben Elisha
  1 sibling, 0 replies; 3+ messages in thread
From: Eran Ben Elisha @ 2019-01-23 11:06 UTC (permalink / raw)
  To: Maxim Kuvyrkov
  Cc: Mark Brown, Arnd Bergmann, linux-arm-kernel, Ard Biesheuvel



On 1/23/2019 12:09 PM, Maxim Kuvyrkov wrote:
> Hi Eran,
> 
> It seems that your commit 880ee82f0313453ec5a6cb122866ac057263066b causes a link failure for ARM in allyesconfig.  This happens for at least gcc-8 and gcc-master compilers.
> ===
> arm-linux-gnueabihf-ld: net/core/devlink.o: in function `devlink_health_buffers_create':
> devlink.c:(.text+0x4eac): undefined reference to `__aeabi_uldivmod'

This one shall solve the issue:
https://patchwork.ozlabs.org/patch/1029047/

> ===
> 
> Would you please investigate?  Below is diagnostics from Linaro's automated bisection job.
> 
> 
> Successfully identified regression in CI configuration gnu-release-arm-next-allyesconfig for linux between bad_rev 5b22549b8c0011b8cc81b6f4fcd082e5545c3225 and baseline_rev a37d50ca3b837c19a297f349365d11a20c1087d0 .
> 
> Culprit:
> <cut>
> commit 880ee82f0313453ec5a6cb122866ac057263066b
> Author: Eran Ben Elisha <eranbe@mellanox.com>
> Date:   Thu Jan 17 23:59:11 2019 +0200
> 
>     devlink: Add health reporter create/destroy functionality
> 
>     Devlink health reporter is an instance for reporting, diagnosing and
>     recovering from run time errors discovered by the reporters.
>     Define it's data structure and supported operations.
>     In addition, expose devlink API to create and destroy a reporter.
>     Each devlink instance will hold it's own reporters list.
> 
>     As part of the allocation, driver shall provide a set of callbacks which
>     will be used the devlink in order to handle health reports and user
>     commands related to this reporter. In addition, driver is entitled to
>     provide some priv pointer, which can be fetched from the reporter by
>     devlink_health_reporter_priv function.
> 
>     For each reporter, devlink will hold a metadata of statistics,
>     buffers and status.
> 
>     Signed-off-by: Eran Ben Elisha <eranbe@mellanox.com>
>     Reviewed-by: Moshe Shemesh <moshe@mellanox.com>
>     Signed-off-by: David S. Miller <davem@davemloft.net>
> </cut>
> 
> Results regressed from (for last_good == cb5ccfbe73b389470e1dc11061bb185ef4bc9aec)
> 
> <cut>
> reset_artifacts:
> -10
> build_abe binutils:
> -9
> build_abe stage1:
> -8
> linux_n_obj:
> all
> </cut>
> 
> to (for first_bad == 880ee82f0313453ec5a6cb122866ac057263066b)
> 
> <cut>
> reset_artifacts:
> -10
> build_abe binutils:
> -9
> build_abe stage1:
> -8
> linux_n_obj:
> 17403
> </cut>
> 
> Artifacts of last_good build: https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fci.linaro.org%2Fjob%2Ftcwg_kernel-bisect-gnu-release-arm-next-allyesconfig%2F12%2Fartifact%2Fartifacts%2Fbuild-cb5ccfbe73b389470e1dc11061bb185ef4bc9aec%2F&amp;data=02%7C01%7Ceranbe%40mellanox.com%7Cf644c95171f34a044bf508d6811adc79%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636838349704100824&amp;sdata=vnw3DbcmXDmLsGUAGHA2049UrZC8mSmdLBaFarb7788%3D&amp;reserved=0
> Artifacts of first_bad build: https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fci.linaro.org%2Fjob%2Ftcwg_kernel-bisect-gnu-release-arm-next-allyesconfig%2F12%2Fartifact%2Fartifacts%2Fbuild-880ee82f0313453ec5a6cb122866ac057263066b%2F&amp;data=02%7C01%7Ceranbe%40mellanox.com%7Cf644c95171f34a044bf508d6811adc79%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636838349704100824&amp;sdata=dROJYaVNnfMkvW%2FH4g9s2fk2AZYhfn9Ix8L1rqiLyGM%3D&amp;reserved=0
> 
> Reproduce builds:
> <cut>
> mkdir investigate-linux-880ee82f0313453ec5a6cb122866ac057263066b
> cd investigate-linux-880ee82f0313453ec5a6cb122866ac057263066b
> 
> git clone https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgit.linaro.org%2Ftoolchain%2Fjenkins-scripts&amp;data=02%7C01%7Ceranbe%40mellanox.com%7Cf644c95171f34a044bf508d6811adc79%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636838349704100824&amp;sdata=H2kp%2B48EjDTWQ5sBEQV4gpI97dIKEMDXRQglmy4lQv0%3D&amp;reserved=0
> 
> mkdir -p artifacts/manifests
> curl -o artifacts/manifests/build-baseline.sh https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fci.linaro.org%2Fjob%2Ftcwg_kernel-bisect-gnu-release-arm-next-allyesconfig%2F12%2Fartifact%2Fartifacts%2Fmanifests%2Fbuild-baseline.sh&amp;data=02%7C01%7Ceranbe%40mellanox.com%7Cf644c95171f34a044bf508d6811adc79%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636838349704100824&amp;sdata=APPLad%2FPA8p1mQDculq7nKjqxQhEkVjqFsRdfcxJ5Ig%3D&amp;reserved=0
> curl -o artifacts/manifests/build-parameters.sh https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fci.linaro.org%2Fjob%2Ftcwg_kernel-bisect-gnu-release-arm-next-allyesconfig%2F12%2Fartifact%2Fartifacts%2Fmanifests%2Fbuild-parameters.sh&amp;data=02%7C01%7Ceranbe%40mellanox.com%7Cf644c95171f34a044bf508d6811adc79%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636838349704100824&amp;sdata=nPZNkN7qJKh6VkVWRdgy%2F3rAn4hu45Y8TsKzyJ9dKpU%3D&amp;reserved=0
> curl -o artifacts/test.sh https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fci.linaro.org%2Fjob%2Ftcwg_kernel-bisect-gnu-release-arm-next-allyesconfig%2F12%2Fartifact%2Fartifacts%2Ftest.sh&amp;data=02%7C01%7Ceranbe%40mellanox.com%7Cf644c95171f34a044bf508d6811adc79%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636838349704100824&amp;sdata=hhgapeTncxxom59LkMMKW5h4iAfSMHwMMWPByf5h67E%3D&amp;reserved=0
> chmod +x artifacts/test.sh
> 
> # Reproduce the baseline build (build all pre-requisites)
> ./jenkins-scripts/tcwg_kernel-build.sh @@ artifacts/manifests/build-baseline.sh
> 
> cd linux
> 
> # Reproduce first_bad build
> git checkout --detach 880ee82f0313453ec5a6cb122866ac057263066b
> ../artifacts/test.sh
> 
> # Reproduce last_good build
> git checkout --detach cb5ccfbe73b389470e1dc11061bb185ef4bc9aec
> ../artifacts/test.sh
> 
> cd ..
> </cut>
> 
> History of pending regressions and results: https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgit.linaro.org%2Ftoolchain%2Fci%2Fbase-artifacts.git%2Flog%2F%3Fh%3Dlinaro-local%2Fci%2Ftcwg_kernel%2Fgnu-release-arm-next-allyesconfig&amp;data=02%7C01%7Ceranbe%40mellanox.com%7Cf644c95171f34a044bf508d6811adc79%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636838349704100824&amp;sdata=oUjVRjdaqwSAU%2FfEanP3sypSLm6yPZgO6R%2BpsAjy308%3D&amp;reserved=0
> 
> Bisect log: https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fci.linaro.org%2Fjob%2Ftcwg_kernel-bisect-gnu-release-arm-next-allyesconfig%2F12%2Fartifact%2Fartifacts%2Fbisect.log%2F*view*%2F&amp;data=02%7C01%7Ceranbe%40mellanox.com%7Cf644c95171f34a044bf508d6811adc79%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636838349704100824&amp;sdata=5y6EyveTvr4fiXyRAWL%2F1y51Rj6uRoISn1D%2B4aOGyfs%3D&amp;reserved=0
> Artifacts: https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fci.linaro.org%2Fjob%2Ftcwg_kernel-bisect-gnu-release-arm-next-allyesconfig%2F12%2Fartifact%2Fartifacts%2F&amp;data=02%7C01%7Ceranbe%40mellanox.com%7Cf644c95171f34a044bf508d6811adc79%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636838349704100824&amp;sdata=0oEekMKLbQ%2FiPvjQpKkSG7o8nvc5ye%2Bv8zVbAxit9jA%3D&amp;reserved=0
> Build URL: https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fci.linaro.org%2Fjob%2Ftcwg_kernel-bisect-gnu-release-arm-next-allyesconfig%2F12%2F&amp;data=02%7C01%7Ceranbe%40mellanox.com%7Cf644c95171f34a044bf508d6811adc79%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636838349704100824&amp;sdata=t%2Bf17lejwkaWMqSElFR1X8mUqkV7xFRBOByCGraJ30A%3D&amp;reserved=0
> Build log: https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fci.linaro.org%2Fjob%2Ftcwg_kernel-bisect-gnu-release-arm-next-allyesconfig%2F12%2FconsoleText&amp;data=02%7C01%7Ceranbe%40mellanox.com%7Cf644c95171f34a044bf508d6811adc79%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636838349704100824&amp;sdata=jmHZihJwblQaMDoBJH764Jce0zgnhNwAkdnOdcEWWao%3D&amp;reserved=0
> 
> --
> Maxim Kuvyrkov
> https://emea01.safelinks.protection.outlook.com/?url=www.linaro.org&amp;data=02%7C01%7Ceranbe%40mellanox.com%7Cf644c95171f34a044bf508d6811adc79%7Ca652971c7d2e4d9ba6a4d149256f461b%7C0%7C0%7C636838349704100824&amp;sdata=CqoP5P5yS0Z0ByANRZiS63TxaWUjp515YcxoQV8ojRY%3D&amp;reserved=0
> 
> 
> 
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2019-01-23 11:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-23 10:09 [BUG] Linux-next fails to link on ARM in allyesconfig Maxim Kuvyrkov
2019-01-23 10:12 ` Ard Biesheuvel
2019-01-23 11:06 ` Eran Ben Elisha

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.