* [PATCH yocto-autobuilder2 v2] Run oe-selftest-armhost jobs on the Arm workers only
From: Ross Burton @ 2022-01-05 14:14 UTC (permalink / raw)
To: yocto
Signed-off-by: Ross Burton <ross.burton@arm.com>
---
config.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/config.py b/config.py
index ea042c6..6da8d58 100644
--- a/config.py
+++ b/config.py
@@ -112,6 +112,8 @@ builders_others = [
"bringup",
"qemuarm-armhost",
"check-layer-nightly",
+ "oe-selftest-arm",
+ "oe-selftest-armhost",
"auh"
]
@@ -172,6 +174,7 @@ builder_to_workers = {
"oe-selftest-fedora": workers_fedora,
"oe-selftest-opensuse": workers_opensuse,
"oe-selftest-centos": workers_centos,
+ "oe-selftest-armhost": workers_arm,
"reproducible-ubuntu": workers_ubuntu,
"reproducible-debian": workers_debian,
"reproducible-fedora": workers_fedora,
--
2.25.1
^ permalink raw reply related
* Re: slow snd_rawmidi_drain() for VirMidi devcies
From: Takashi Iwai @ 2022-01-05 14:13 UTC (permalink / raw)
To: Stefan Sauer; +Cc: alsa-devel
In-Reply-To: <CAJ4JBRMKsrJ54ee0gPwRTeScghA4SB8m2iOWybQA=6584ejG-g@mail.gmail.com>
On Wed, 05 Jan 2022 14:39:05 +0100,
Stefan Sauer wrote:
>
> - 28,78% 0,00% rawmidi_alsa [snd_rawmidi] [k]
> snd_rawmidi_drain_output
> - snd_rawmidi_drain_output
> - 26,59% msleep
> schedule_timeout
> schedule
> + __schedule
> + 2,13% schedule_timeout
>
> Seems to be because of:
> https://github.com/torvalds/linux/blob/master/sound/core/rawmidi.c#L244
> if (substream->ops->drain)
> substream->ops->drain(substream);
> else
> msleep(50);
>
> It see what fileops have no drain impl:
> https://github.com/torvalds/linux/blob/master/sound/core/rawmidi.c#L1708
> and I see
> https://github.com/torvalds/linux/blob/master/sound/core/seq/seq_virmidi.c#L329
> that define no drain op. Not which ones are actually used here :/
>
> The docs confirm teh 50 ms wait though:
> https://github.com/torvalds/linux/blob/master/Documentation/sound/kernel-api/writing-an-alsa-driver.rst#drain-callback
>
> would it make sense to have a dummy drain function for the seq_virmidi output
> ops?
Yes, a proper drain implementation is definitely better.
I guess just calling flush_work(&vmidi->output_work) there would
suffice.
thanks,
Takashi
>
> Stefan
>
> Am Di., 4. Jan. 2022 um 16:54 Uhr schrieb Takashi Iwai <tiwai@suse.de>:
>
> On Sat, 01 Jan 2022 12:49:13 +0100,
> Stefan Sauer wrote:
> >
> > hi,
> >
> > I've tried to link BitwigStudio to the webapp cables.gl over virmidi.
> > Unfortunately Bitwig Studio only supports rawmidi. What I discovered is
> > that there is a strange slowness when sending data to virmidi caused
> > by snd_rawmidi_drain().
> >
> > I've posted two tiny, self-contained c apps to:
> > https://gist.github.com/ensonic/c7588b87fa6c1fa94a8f753b1e0aa394
> > See some examples below. 2 observations:
> > * snd_rawmidi_type() is *not* reporting virmidi as VIRTUAL
> > * snd_rawmidi_drain() takes about 60ms! on virtual vs. less that 0.1 ms
> on
> > usb midi (I checked all my hw midi and the worst was avg=1ms on physical
> > midi image unitor8)
> >
> > When comparing the implementations:
> >
> https://github.com/alsa-project/alsa-lib/blob/master/src/rawmidi/rawmidi_virt.c#L173
> >
> https://github.com/alsa-project/alsa-lib/blob/master/src/rawmidi/rawmidi_hw.c#L164
> > I see that the hw one results in an IOCTL which I can see when striking
> the
> > code and I wonder if this is the root cause? Why is rawmidi_virt.c not
> used
> > for virmidi?
> > >From poking at snd_rawmidi_open_conf() I have not yet figured where
> this is
> > decided ....
> >
> > Stefan
> >
> > > amidi -l
> > Dir Device Name
> > IO hw:0,0,0 Scarlett 18i20 USB MIDI 1
> > IO hw:3,0,0 nanoKEY2 nanoKEY2 _ KEYBOARD
> > IO hw:5,0,0 nanoKONTROL nanoKONTROL _ SLIDE
> > IO hw:10,0 Virtual Raw MIDI (16 subdevices)
> > IO hw:11,0 Virtual Raw MIDI (16 subdevices)
> >
> > # using direct i/o to virmidi - all good
> > > ./rawmidi_oss /dev/midi11 0
> > Using device '/dev/midi11' without draining
> > write took min= 0.0015 ms, avg= 0.0016 ms, max= 0.0110 ms
> > > ./rawmidi_oss /dev/midi11 1
> > Using device '/dev/midi11' with draining
> > write took min= 0.0015 ms, avg= 0.0017 ms, max= 0.0101 ms
> > drain took min= 0.0001 ms, avg= 0.0001 ms, max= 0.0008 ms
> >
> > # using snd_rawmidi to virmidi - slow drain operations
> > > ./rawmidi_alsa hw:11,0 0
> > Using device 'hw:11,0' without draining
> > SND_RAWMIDI_TYPE_HW
> > write took min= 0.0010 ms, avg= 0.0011 ms, max= 0.0056 ms
> > > ./rawmidi_alsa hw:11,0 1
> > Using device 'hw:11,0' with draining
> > SND_RAWMIDI_TYPE_HW
> > write took min= 0.0016 ms, avg= 0.0040 ms, max= 0.0077 ms
> > drain took min= 55.9951 ms, avg= 60.4330 ms, max= 64.0653 ms
> >
> > # using snd_rawmidi to usb hw - all good
> > > ./rawmidi_alsa hw:3,0 0
> > Using device 'hw:3,0' without draining
> > SND_RAWMIDI_TYPE_HW
> > write took min= 0.0012 ms, avg= 0.0015 ms, max= 0.0121 ms
> > > ./rawmidi_alsa hw:3,0 1
> > Using device 'hw:3,0' with draining
> > SND_RAWMIDI_TYPE_HW
> > write took min= 0.0024 ms, avg= 0.0032 ms, max= 0.0110 ms
> > drain took min= 0.0293 ms, avg= 0.0636 ms, max= 0.2277 ms
>
> This kind of thing needs profiling. You can try perf or whatever
> available, and identify which call takes long. My wild guess is
> something about snd_seq_sync_output_queue(), maybe poll syscall takes
> unexpected long.
>
> thanks,
>
> Takashi
>
>
^ permalink raw reply
* [PATCH] git-p4: fixed instantiation of CalledProcessError
From: Joel Holdsworth @ 2022-01-05 14:14 UTC (permalink / raw)
To: git, Luke Diamand, Junio C Hamano
Cc: Tzadik Vanderhoof, Dorgon Chang, Joachim Kuebart, Daniel Levin,
Johannes Schindelin, Ben Keene, Andrew Oakley, Joel Holdsworth
CalledProcessError is an exception class from the subprocess namespace.
When raising this exception, git-p4 would instantiate CalledProcessError
objects without properly referencing the subprocess namespace causing
the script to fail.
This patch resolves the issue by replacing CalledProcessError with
subprocess.CalledProcessError.
---
git-p4.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/git-p4.py b/git-p4.py
index cb37545455..ab3822696c 100755
--- a/git-p4.py
+++ b/git-p4.py
@@ -406,7 +406,7 @@ def system(cmd, ignore_error=False):
sys.stderr.write("executing %s\n" % str(cmd))
retcode = subprocess.call(cmd, shell=expand)
if retcode and not ignore_error:
- raise CalledProcessError(retcode, cmd)
+ raise subprocess.CalledProcessError(retcode, cmd)
return retcode
@@ -416,7 +416,7 @@ def p4_system(cmd):
expand = not isinstance(real_cmd, list)
retcode = subprocess.call(real_cmd, shell=expand)
if retcode:
- raise CalledProcessError(retcode, real_cmd)
+ raise subprocess.CalledProcessError(retcode, real_cmd)
def die_bad_access(s):
die("failure accessing depot: {0}".format(s.rstrip()))
@@ -4110,7 +4110,7 @@ def run(self, args):
init_cmd.append("--bare")
retcode = subprocess.call(init_cmd)
if retcode:
- raise CalledProcessError(retcode, init_cmd)
+ raise subprocess.CalledProcessError(retcode, init_cmd)
if not P4Sync.run(self, depotPaths):
return False
--
2.34.1
^ permalink raw reply related
* Re: [PATCH V4 06/16] xfs: Promote xfs_extnum_t and xfs_aextnum_t to 64 and 32-bits respectively
From: Chandan Babu R @ 2022-01-05 14:14 UTC (permalink / raw)
To: Darrick J. Wong; +Cc: kernel test robot, linux-xfs, kbuild-all, david
In-Reply-To: <20220104235457.GM31583@magnolia>
On 05 Jan 2022 at 05:24, Darrick J. Wong wrote:
> On Wed, Dec 15, 2021 at 02:49:48PM +0530, Chandan Babu R wrote:
>> On 14 Dec 2021 at 20:45, kernel test robot wrote:
>> > Hi Chandan,
>> >
>> > Thank you for the patch! Yet something to improve:
>> >
>> > [auto build test ERROR on xfs-linux/for-next]
>> > [also build test ERROR on v5.16-rc5]
>> > [If your patch is applied to the wrong git tree, kindly drop us a note.
>> > And when submitting patch, we suggest to use '--base' as documented in
>> > https://git-scm.com/docs/git-format-patch]
>> >
>> > url: https://github.com/0day-ci/linux/commits/Chandan-Babu-R/xfs-Extend-per-inode-extent-counters/20211214-164920
>> > base: https://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git for-next
>> > config: microblaze-randconfig-r016-20211214 (https://download.01.org/0day-ci/archive/20211214/202112142335.O3Nu0vQI-lkp@intel.com/config)
>> > compiler: microblaze-linux-gcc (GCC) 11.2.0
>> > reproduce (this is a W=1 build):
>> > wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>> > chmod +x ~/bin/make.cross
>> > # https://github.com/0day-ci/linux/commit/db28da144803c4262c0d8622d736a7d20952ef6b
>> > git remote add linux-review https://github.com/0day-ci/linux
>> > git fetch --no-tags linux-review Chandan-Babu-R/xfs-Extend-per-inode-extent-counters/20211214-164920
>> > git checkout db28da144803c4262c0d8622d736a7d20952ef6b
>> > # save the config file to linux build tree
>> > mkdir build_dir
>> > COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=microblaze SHELL=/bin/bash
>> >
>> > If you fix the issue, kindly add following tag as appropriate
>> > Reported-by: kernel test robot <lkp@intel.com>
>> >
>> > All errors (new ones prefixed by >>):
>> >
>> > microblaze-linux-ld: fs/xfs/libxfs/xfs_bmap.o: in function `xfs_bmap_compute_maxlevels':
>> >>> (.text+0x10cc0): undefined reference to `__udivdi3'
>> >
>>
>> The fix for the compilation error on 32-bit systems involved invoking do_div()
>> instead of using the regular division operator. I will include the fix in the
>> next version of the patchset.
>
> So, uh, how did you resolve this in the end?
>
> maxblocks = roundup_64(maxleafents, minleafrecs);
>
> and
>
> maxblocks = roundup_64(maxblocks, minnodrecs);
>
> ?
I had made the following changes,
maxblocks = maxleafents + minleafrecs - 1;
do_div(maxblocks, minleafrecs);
and
maxblocks += minnoderecs - 1;
do_div(maxblocks, minnoderecs);
roundup_64() would cause maxleafents to have a value >= its previous value
right?
--
chandan
^ permalink raw reply
* Re: [PATCH V4 06/16] xfs: Promote xfs_extnum_t and xfs_aextnum_t to 64 and 32-bits respectively
From: Chandan Babu R @ 2022-01-05 14:14 UTC (permalink / raw)
To: kbuild-all
In-Reply-To: <20220104235457.GM31583@magnolia>
[-- Attachment #1: Type: text/plain, Size: 2733 bytes --]
On 05 Jan 2022 at 05:24, Darrick J. Wong wrote:
> On Wed, Dec 15, 2021 at 02:49:48PM +0530, Chandan Babu R wrote:
>> On 14 Dec 2021 at 20:45, kernel test robot wrote:
>> > Hi Chandan,
>> >
>> > Thank you for the patch! Yet something to improve:
>> >
>> > [auto build test ERROR on xfs-linux/for-next]
>> > [also build test ERROR on v5.16-rc5]
>> > [If your patch is applied to the wrong git tree, kindly drop us a note.
>> > And when submitting patch, we suggest to use '--base' as documented in
>> > https://git-scm.com/docs/git-format-patch]
>> >
>> > url: https://github.com/0day-ci/linux/commits/Chandan-Babu-R/xfs-Extend-per-inode-extent-counters/20211214-164920
>> > base: https://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git for-next
>> > config: microblaze-randconfig-r016-20211214 (https://download.01.org/0day-ci/archive/20211214/202112142335.O3Nu0vQI-lkp(a)intel.com/config)
>> > compiler: microblaze-linux-gcc (GCC) 11.2.0
>> > reproduce (this is a W=1 build):
>> > wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>> > chmod +x ~/bin/make.cross
>> > # https://github.com/0day-ci/linux/commit/db28da144803c4262c0d8622d736a7d20952ef6b
>> > git remote add linux-review https://github.com/0day-ci/linux
>> > git fetch --no-tags linux-review Chandan-Babu-R/xfs-Extend-per-inode-extent-counters/20211214-164920
>> > git checkout db28da144803c4262c0d8622d736a7d20952ef6b
>> > # save the config file to linux build tree
>> > mkdir build_dir
>> > COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=microblaze SHELL=/bin/bash
>> >
>> > If you fix the issue, kindly add following tag as appropriate
>> > Reported-by: kernel test robot <lkp@intel.com>
>> >
>> > All errors (new ones prefixed by >>):
>> >
>> > microblaze-linux-ld: fs/xfs/libxfs/xfs_bmap.o: in function `xfs_bmap_compute_maxlevels':
>> >>> (.text+0x10cc0): undefined reference to `__udivdi3'
>> >
>>
>> The fix for the compilation error on 32-bit systems involved invoking do_div()
>> instead of using the regular division operator. I will include the fix in the
>> next version of the patchset.
>
> So, uh, how did you resolve this in the end?
>
> maxblocks = roundup_64(maxleafents, minleafrecs);
>
> and
>
> maxblocks = roundup_64(maxblocks, minnodrecs);
>
> ?
I had made the following changes,
maxblocks = maxleafents + minleafrecs - 1;
do_div(maxblocks, minleafrecs);
and
maxblocks += minnoderecs - 1;
do_div(maxblocks, minnoderecs);
roundup_64() would cause maxleafents to have a value >= its previous value
right?
--
chandan
^ permalink raw reply
* [PATCH v1 08/34] tests/docker: auto-generate centos8.docker with lcitool
From: Alex Bennée @ 2022-01-05 13:49 UTC (permalink / raw)
To: qemu-devel
Cc: fam, Thomas Huth, berrange, Beraldo Leal, Alex Bennée, f4bug,
Wainer dos Santos Moschetta, stefanha, crosa, pbonzini,
Philippe Mathieu-Daudé, aurelien
In-Reply-To: <20220105135009.1584676-1-alex.bennee@linaro.org>
From: Daniel P. Berrangé <berrange@redhat.com>
This commit is best examined using the "-b" option to diff.
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20211215141949.3512719-9-berrange@redhat.com>
---
tests/docker/dockerfiles/centos8.docker | 243 +++++++++++++-----------
tests/lcitool/refresh | 2 +
2 files changed, 135 insertions(+), 110 deletions(-)
diff --git a/tests/docker/dockerfiles/centos8.docker b/tests/docker/dockerfiles/centos8.docker
index 7f135f8e8c..3c62b62a99 100644
--- a/tests/docker/dockerfiles/centos8.docker
+++ b/tests/docker/dockerfiles/centos8.docker
@@ -1,112 +1,135 @@
-FROM docker.io/centos:8
+# THIS FILE WAS AUTO-GENERATED
+#
+# $ lcitool dockerfile centos-8 qemu
+#
+# https://gitlab.com/libvirt/libvirt-ci
-RUN dnf -y update
-ENV PACKAGES \
- SDL2-devel \
- alsa-lib-devel \
- bc \
- brlapi-devel \
- bzip2 \
- bzip2-devel \
- ca-certificates \
- capstone-devel \
- ccache \
- clang \
- ctags \
- cyrus-sasl-devel \
- daxctl-devel \
- dbus-daemon \
- device-mapper-multipath-devel \
- diffutils \
- findutils \
- gcc \
- gcc-c++ \
- genisoimage \
- gettext \
- git \
- glib2-devel \
- glibc-langpack-en \
- glibc-static \
- glusterfs-api-devel \
- gnutls-devel \
- gtk3-devel \
- hostname \
- jemalloc-devel \
- libaio-devel \
- libasan \
- libattr-devel \
- libbpf-devel \
- libcacard-devel \
- libcap-ng-devel \
- libcurl-devel \
- libdrm-devel \
- libepoxy-devel \
- libfdt-devel \
- libffi-devel \
- libgcrypt-devel \
- libiscsi-devel \
- libjpeg-devel \
- libnfs-devel \
- libpmem-devel \
- libpng-devel \
- librbd-devel \
- libseccomp-devel \
- libselinux-devel \
- libslirp-devel \
- libssh-devel \
- libtasn1-devel \
- libubsan \
- libudev-devel \
- libusbx-devel \
- libxml2-devel \
- libzstd-devel \
- llvm \
- lzo-devel \
- make \
- mesa-libgbm-devel \
- ncurses-devel \
- nettle-devel \
- ninja-build \
- nmap-ncat \
- numactl-devel \
- openssh-clients \
- pam-devel \
- perl \
- perl-Test-Harness \
- pixman-devel \
- pkgconfig \
- pulseaudio-libs-devel \
- python3 \
- python3-PyYAML \
- python3-numpy \
- python3-pillow \
- python3-pip \
- python3-setuptools \
- python3-sphinx \
- python3-sphinx_rtd_theme \
- python3-virtualenv \
- python3-wheel \
- rdma-core-devel \
- rpm \
- sed \
- snappy-devel \
- spice-protocol \
- spice-server-devel \
- systemd-devel \
- systemtap-sdt-devel \
- tar \
- texinfo \
- usbredir-devel \
- util-linux \
- virglrenderer-devel \
- vte291-devel \
- which \
- xfsprogs-devel \
- zlib-devel
+FROM docker.io/library/centos:8
-RUN dnf install -y dnf-plugins-core && \
- dnf config-manager --set-enabled powertools && \
- dnf install -y centos-release-advanced-virtualization && \
- dnf install -y epel-release && \
- dnf install -y $PACKAGES
-RUN rpm -q $PACKAGES | sort > /packages.txt
+RUN dnf update -y && \
+ dnf install 'dnf-command(config-manager)' -y && \
+ dnf config-manager --set-enabled -y powertools && \
+ dnf install -y centos-release-advanced-virtualization && \
+ dnf install -y epel-release && \
+ dnf install -y \
+ SDL2-devel \
+ alsa-lib-devel \
+ bash \
+ bc \
+ brlapi-devel \
+ bzip2 \
+ bzip2-devel \
+ ca-certificates \
+ capstone-devel \
+ ccache \
+ clang \
+ ctags \
+ cyrus-sasl-devel \
+ daxctl-devel \
+ dbus-daemon \
+ device-mapper-multipath-devel \
+ diffutils \
+ findutils \
+ gcc \
+ gcc-c++ \
+ genisoimage \
+ gettext \
+ git \
+ glib2-devel \
+ glib2-static \
+ glibc-langpack-en \
+ glibc-static \
+ glusterfs-api-devel \
+ gnutls-devel \
+ gtk3-devel \
+ hostname \
+ jemalloc-devel \
+ libaio-devel \
+ libasan \
+ libattr-devel \
+ libbpf-devel \
+ libcacard-devel \
+ libcap-ng-devel \
+ libcurl-devel \
+ libdrm-devel \
+ libepoxy-devel \
+ libfdt-devel \
+ libffi-devel \
+ libgcrypt-devel \
+ libiscsi-devel \
+ libjpeg-devel \
+ libnfs-devel \
+ libpmem-devel \
+ libpng-devel \
+ librbd-devel \
+ libseccomp-devel \
+ libselinux-devel \
+ libslirp-devel \
+ libssh-devel \
+ libtasn1-devel \
+ libubsan \
+ libudev-devel \
+ liburing-devel \
+ libusbx-devel \
+ libxml2-devel \
+ libzstd-devel \
+ llvm \
+ lttng-ust-devel \
+ lzo-devel \
+ make \
+ mesa-libgbm-devel \
+ meson \
+ ncurses-devel \
+ nettle-devel \
+ ninja-build \
+ nmap-ncat \
+ numactl-devel \
+ openssh-clients \
+ pam-devel \
+ pcre-static \
+ perl \
+ perl-Test-Harness \
+ pixman-devel \
+ pkgconfig \
+ pulseaudio-libs-devel \
+ python3 \
+ python3-PyYAML \
+ python3-numpy \
+ python3-pillow \
+ python3-pip \
+ python3-sphinx \
+ python3-sphinx_rtd_theme \
+ python3-virtualenv \
+ rdma-core-devel \
+ rpm \
+ sed \
+ snappy-devel \
+ spice-protocol \
+ spice-server-devel \
+ systemd-devel \
+ systemtap-sdt-devel \
+ tar \
+ texinfo \
+ usbredir-devel \
+ util-linux \
+ virglrenderer-devel \
+ vte291-devel \
+ which \
+ xfsprogs-devel \
+ zlib-devel \
+ zlib-static && \
+ dnf autoremove -y && \
+ dnf clean all -y && \
+ rpm -qa | sort > /packages.txt && \
+ mkdir -p /usr/libexec/ccache-wrappers && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/c++ && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/clang && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/g++ && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
+
+ENV LANG "en_US.UTF-8"
+ENV MAKE "/usr/bin/make"
+ENV NINJA "/usr/bin/ninja"
+ENV PYTHON "/usr/bin/python3"
+ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
diff --git a/tests/lcitool/refresh b/tests/lcitool/refresh
index b47e25f64b..824b1c0ef2 100755
--- a/tests/lcitool/refresh
+++ b/tests/lcitool/refresh
@@ -61,6 +61,8 @@ def generate_dockerfile(host, target, cross=None, trailer=None):
generate(filename, cmd, trailer)
try:
+ generate_dockerfile("centos8", "centos-8")
+
sys.exit(0)
except Exception as ex:
print(str(ex), file=sys.stderr)
--
2.30.2
^ permalink raw reply related
* [PATCH v1 23/34] docs/devel: update C standard to C11
From: Alex Bennée @ 2022-01-05 13:49 UTC (permalink / raw)
To: qemu-devel
Cc: fam, berrange, Philippe Mathieu-Daudé, Richard Henderson,
f4bug, stefanha, crosa, pbonzini, Alex Bennée, aurelien
In-Reply-To: <20220105135009.1584676-1-alex.bennee@linaro.org>
Since 8a9d3d5640 (configure: Use -std=gnu11) we have allowed C11 code
so lets reflect that in the style guide.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20211215152055.1748462-1-alex.bennee@linaro.org>
---
docs/devel/style.rst | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/devel/style.rst b/docs/devel/style.rst
index 9c5c0fffd9..4f770002a7 100644
--- a/docs/devel/style.rst
+++ b/docs/devel/style.rst
@@ -483,11 +483,11 @@ of arguments.
C standard, implementation defined and undefined behaviors
==========================================================
-C code in QEMU should be written to the C99 language specification. A copy
-of the final version of the C99 standard with corrigenda TC1, TC2, and TC3
-included, formatted as a draft, can be downloaded from:
+C code in QEMU should be written to the C11 language specification. A
+copy of the final version of the C11 standard formatted as a draft,
+can be downloaded from:
- `<http://www.open-std.org/jtc1/sc22/WG14/www/docs/n1256.pdf>`_
+ `<http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1548.pdf>`_
The C language specification defines regions of undefined behavior and
implementation defined behavior (to give compiler authors enough leeway to
--
2.30.2
^ permalink raw reply related
* [PATCH v1 34/34] linux-user: Remove the deprecated ppc64abi32 target
From: Alex Bennée @ 2022-01-05 13:50 UTC (permalink / raw)
To: qemu-devel
Cc: fam, Thomas Huth, berrange, Beraldo Leal,
reviewer:Incompatible changes, Richard Henderson, f4bug,
Wainer dos Santos Moschetta, Laurent Vivier,
Cédric Le Goater, stefanha, crosa, pbonzini,
Alex Bennée, aurelien
In-Reply-To: <20220105135009.1584676-1-alex.bennee@linaro.org>
From: Thomas Huth <thuth@redhat.com>
It's likely broken, and nobody cared for picking it up again
during the deprecation phase, so let's remove this now.
Since this is the last entry in deprecated_targets_list, remove
the related code in the configure script, too.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Acked-by: Cédric Le Goater <clg@kaod.org>
Acked-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20211215084958.185214-1-thuth@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
docs/about/deprecated.rst | 7 -----
docs/about/removed-features.rst | 8 +++++
docs/user/main.rst | 1 -
configure | 29 +------------------
configs/targets/ppc64abi32-linux-user.mak | 8 -----
linux-user/ppc/target_syscall.h | 4 +--
linux-user/syscall_defs.h | 6 ++--
linux-user/elfload.c | 4 +--
linux-user/ppc/signal.c | 11 ++-----
.gitlab-ci.d/buildtest.yml | 27 -----------------
.../dockerfiles/debian-ppc64el-cross.docker | 2 +-
tests/tcg/configure.sh | 2 +-
12 files changed, 21 insertions(+), 88 deletions(-)
delete mode 100644 configs/targets/ppc64abi32-linux-user.mak
diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst
index 5693abb663..7f12f53713 100644
--- a/docs/about/deprecated.rst
+++ b/docs/about/deprecated.rst
@@ -396,13 +396,6 @@ The above, converted to the current supported format::
linux-user mode CPUs
--------------------
-``ppc64abi32`` CPUs (since 5.2)
-'''''''''''''''''''''''''''''''
-
-The ``ppc64abi32`` architecture has a number of issues which regularly
-trip up our CI testing and is suspected to be quite broken. For that
-reason the maintainers strongly suspect no one actually uses it.
-
MIPS ``I7200`` CPU (since 5.2)
''''''''''''''''''''''''''''''
diff --git a/docs/about/removed-features.rst b/docs/about/removed-features.rst
index d42c3341de..f92b8bd738 100644
--- a/docs/about/removed-features.rst
+++ b/docs/about/removed-features.rst
@@ -594,6 +594,14 @@ the upstream Linux kernel in 2018, and it has also been dropped from glibc, so
there is no new Linux development taking place with this architecture. For
running the old binaries, you can use older versions of QEMU.
+``ppc64abi32`` CPUs (removed in 7.0)
+''''''''''''''''''''''''''''''''''''
+
+The ``ppc64abi32`` architecture has a number of issues which regularly
+tripped up the CI testing and was suspected to be quite broken. For that
+reason the maintainers strongly suspected no one actually used it.
+
+
System emulator devices
-----------------------
diff --git a/docs/user/main.rst b/docs/user/main.rst
index e08d4be63b..6f2ffa080f 100644
--- a/docs/user/main.rst
+++ b/docs/user/main.rst
@@ -166,7 +166,6 @@ Other binaries
- user mode (PowerPC)
- * ``qemu-ppc64abi32`` TODO.
* ``qemu-ppc64`` TODO.
* ``qemu-ppc`` TODO.
diff --git a/configure b/configure
index 030728d11e..0c57a063c6 100755
--- a/configure
+++ b/configure
@@ -1273,8 +1273,6 @@ if [ "$ARCH" = "unknown" ]; then
fi
default_target_list=""
-deprecated_targets_list=ppc64abi32-linux-user
-deprecated_features=""
mak_wilds=""
if [ "$softmmu" = "yes" ]; then
@@ -1287,16 +1285,6 @@ if [ "$bsd_user" = "yes" ]; then
mak_wilds="${mak_wilds} $source_path/configs/targets/*-bsd-user.mak"
fi
-# If the user doesn't explicitly specify a deprecated target we will
-# skip it.
-if test -z "$target_list"; then
- if test -z "$target_list_exclude"; then
- target_list_exclude="$deprecated_targets_list"
- else
- target_list_exclude="$target_list_exclude,$deprecated_targets_list"
- fi
-fi
-
for config in $mak_wilds; do
target="$(basename "$config" .mak)"
if echo "$target_list_exclude" | grep -vq "$target"; then
@@ -1315,11 +1303,9 @@ Standard options:
--prefix=PREFIX install in PREFIX [$prefix]
--interp-prefix=PREFIX where to find shared libraries, etc.
use %M for cpu name [$interp_prefix]
- --target-list=LIST set target list (default: build all non-deprecated)
+ --target-list=LIST set target list (default: build all)
$(echo Available targets: $default_target_list | \
fold -s -w 53 | sed -e 's/^/ /')
-$(echo Deprecated targets: $deprecated_targets_list | \
- fold -s -w 53 | sed -e 's/^/ /')
--target-list-exclude=LIST exclude a set of targets from the default target-list
Advanced options (experts only):
@@ -1804,13 +1790,6 @@ else
done
fi
-for target in $target_list; do
- # if a deprecated target is enabled we note it here
- if echo "$deprecated_targets_list" | grep -q "$target"; then
- add_to deprecated_features $target
- fi
-done
-
# see if system emulation was really requested
case " $target_list " in
*"-softmmu "*) softmmu=yes
@@ -3950,12 +3929,6 @@ else
fi
fi
-if test -n "${deprecated_features}"; then
- echo "Warning, deprecated features enabled."
- echo "Please see docs/about/deprecated.rst"
- echo " features: ${deprecated_features}"
-fi
-
# Create list of config switches that should be poisoned in common code...
# but filter out CONFIG_TCG and CONFIG_USER_ONLY which are special.
target_configs_h=$(ls *-config-devices.h *-config-target.h 2>/dev/null)
diff --git a/configs/targets/ppc64abi32-linux-user.mak b/configs/targets/ppc64abi32-linux-user.mak
deleted file mode 100644
index 0945451081..0000000000
--- a/configs/targets/ppc64abi32-linux-user.mak
+++ /dev/null
@@ -1,8 +0,0 @@
-TARGET_ARCH=ppc64
-TARGET_ABI32=y
-TARGET_BASE_ARCH=ppc
-TARGET_ABI_DIR=ppc
-TARGET_SYSTBL_ABI=common,nospu,32
-TARGET_SYSTBL=syscall.tbl
-TARGET_WORDS_BIGENDIAN=y
-TARGET_XML_FILES= gdb-xml/power64-core.xml gdb-xml/power-fpu.xml gdb-xml/power-altivec.xml gdb-xml/power-spe.xml gdb-xml/power-vsx.xml
diff --git a/linux-user/ppc/target_syscall.h b/linux-user/ppc/target_syscall.h
index b9c4b813d3..30591806f0 100644
--- a/linux-user/ppc/target_syscall.h
+++ b/linux-user/ppc/target_syscall.h
@@ -36,7 +36,7 @@ struct target_pt_regs {
abi_ulong link;
abi_ulong xer;
abi_ulong ccr;
-#if defined(TARGET_PPC64) && !defined(TARGET_ABI32)
+#if defined(TARGET_PPC64)
abi_ulong softe;
#else
abi_ulong mq; /* 601 only (not used at present) */
@@ -58,7 +58,7 @@ struct target_revectored_struct {
* flags masks
*/
-#if defined(TARGET_PPC64) && !defined(TARGET_ABI32)
+#if defined(TARGET_PPC64)
#ifdef TARGET_WORDS_BIGENDIAN
#define UNAME_MACHINE "ppc64"
#else
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h
index 0b13975937..7a8f24967d 100644
--- a/linux-user/syscall_defs.h
+++ b/linux-user/syscall_defs.h
@@ -1607,7 +1607,7 @@ struct target_stat64 {
struct target_stat {
abi_ulong st_dev;
abi_ulong st_ino;
-#if defined(TARGET_PPC64) && !defined(TARGET_ABI32)
+#if defined(TARGET_PPC64)
abi_ulong st_nlink;
unsigned int st_mode;
#else
@@ -1628,12 +1628,12 @@ struct target_stat {
abi_ulong target_st_ctime_nsec;
abi_ulong __unused4;
abi_ulong __unused5;
-#if defined(TARGET_PPC64) && !defined(TARGET_ABI32)
+#if defined(TARGET_PPC64)
abi_ulong __unused6;
#endif
};
-#if !defined(TARGET_PPC64) || defined(TARGET_ABI32)
+#if !defined(TARGET_PPC64)
#define TARGET_HAS_STRUCT_STAT64
struct QEMU_PACKED target_stat64 {
unsigned long long st_dev;
diff --git a/linux-user/elfload.c b/linux-user/elfload.c
index fa9dae5f3f..130dcb0e14 100644
--- a/linux-user/elfload.c
+++ b/linux-user/elfload.c
@@ -718,7 +718,7 @@ static inline void init_thread(struct target_pt_regs *regs,
#define ELF_MACHINE PPC_ELF_MACHINE
#define ELF_START_MMAP 0x80000000
-#if defined(TARGET_PPC64) && !defined(TARGET_ABI32)
+#if defined(TARGET_PPC64)
#define elf_check_arch(x) ( (x) == EM_PPC64 )
@@ -870,7 +870,7 @@ static uint32_t get_elf_hwcap2(void)
static inline void init_thread(struct target_pt_regs *_regs, struct image_info *infop)
{
_regs->gpr[1] = infop->start_stack;
-#if defined(TARGET_PPC64) && !defined(TARGET_ABI32)
+#if defined(TARGET_PPC64)
if (get_ppc64_abi(infop) < 2) {
uint64_t val;
get_user_u64(val, infop->entry + 8);
diff --git a/linux-user/ppc/signal.c b/linux-user/ppc/signal.c
index 176c9d8503..ec0b9c0df3 100644
--- a/linux-user/ppc/signal.c
+++ b/linux-user/ppc/signal.c
@@ -477,9 +477,7 @@ void setup_rt_frame(int sig, struct target_sigaction *ka,
int i, err = 0;
#if defined(TARGET_PPC64)
struct target_sigcontext *sc = 0;
-#if !defined(TARGET_ABI32)
struct image_info *image = ((TaskState *)thread_cpu->opaque)->info;
-#endif
#endif
rt_sf_addr = get_sigframe(ka, env, sizeof(*rt_sf));
@@ -530,7 +528,7 @@ void setup_rt_frame(int sig, struct target_sigaction *ka,
env->gpr[5] = (target_ulong) h2g(&rt_sf->uc);
env->gpr[6] = (target_ulong) h2g(rt_sf);
-#if defined(TARGET_PPC64) && !defined(TARGET_ABI32)
+#if defined(TARGET_PPC64)
if (get_ppc64_abi(image) < 2) {
/* ELFv1 PPC64 function pointers are pointers to OPD entries. */
struct target_func_ptr *handler =
@@ -562,7 +560,7 @@ sigsegv:
}
-#if !defined(TARGET_PPC64) || defined(TARGET_ABI32)
+#if !defined(TARGET_PPC64)
long do_sigreturn(CPUPPCState *env)
{
struct target_sigcontext *sc = NULL;
@@ -575,12 +573,9 @@ long do_sigreturn(CPUPPCState *env)
if (!lock_user_struct(VERIFY_READ, sc, sc_addr, 1))
goto sigsegv;
-#if defined(TARGET_PPC64)
- set.sig[0] = sc->oldmask + ((uint64_t)(sc->_unused[3]) << 32);
-#else
__get_user(set.sig[0], &sc->oldmask);
__get_user(set.sig[1], &sc->_unused[3]);
-#endif
+
target_to_host_sigset_internal(&blocked, &set);
set_sigmask(&blocked);
diff --git a/.gitlab-ci.d/buildtest.yml b/.gitlab-ci.d/buildtest.yml
index 8f2a3c8f5b..0aa70213fb 100644
--- a/.gitlab-ci.d/buildtest.yml
+++ b/.gitlab-ci.d/buildtest.yml
@@ -473,33 +473,6 @@ tsan-build:
TARGETS: x86_64-softmmu ppc64-softmmu riscv64-softmmu x86_64-linux-user
MAKE_CHECK_ARGS: bench V=1
-# These targets are on the way out
-build-deprecated:
- extends: .native_build_job_template
- needs:
- job: amd64-debian-user-cross-container
- variables:
- IMAGE: debian-all-test-cross
- CONFIGURE_ARGS: --disable-tools
- MAKE_CHECK_ARGS: build-tcg
- TARGETS: ppc64abi32-linux-user
- artifacts:
- expire_in: 2 days
- paths:
- - build
-
-# We split the check-tcg step as test failures are expected but we still
-# want to catch the build breaking.
-check-deprecated:
- extends: .native_test_job_template
- needs:
- - job: build-deprecated
- artifacts: true
- variables:
- IMAGE: debian-all-test-cross
- MAKE_CHECK_ARGS: check-tcg
- allow_failure: true
-
# gprof/gcov are GCC features
build-gprof-gcov:
extends: .native_build_job_template
diff --git a/tests/docker/dockerfiles/debian-ppc64el-cross.docker b/tests/docker/dockerfiles/debian-ppc64el-cross.docker
index 1146a06be6..5de12b01cd 100644
--- a/tests/docker/dockerfiles/debian-ppc64el-cross.docker
+++ b/tests/docker/dockerfiles/debian-ppc64el-cross.docker
@@ -16,7 +16,7 @@ RUN apt update && \
# Specify the cross prefix for this image (see tests/docker/common.rc)
ENV QEMU_CONFIGURE_OPTS --cross-prefix=powerpc64le-linux-gnu-
-ENV DEF_TARGET_LIST ppc64-softmmu,ppc64-linux-user,ppc64abi32-linux-user
+ENV DEF_TARGET_LIST ppc64-softmmu,ppc64-linux-user
# Install extra libraries to increase code coverage
RUN apt update && \
diff --git a/tests/tcg/configure.sh b/tests/tcg/configure.sh
index 309335a2bd..763e9b6ad8 100755
--- a/tests/tcg/configure.sh
+++ b/tests/tcg/configure.sh
@@ -167,7 +167,7 @@ for target in $target_list; do
container_image=debian-nios2-cross
container_cross_cc=nios2-linux-gnu-gcc
;;
- ppc-*|ppc64abi32-*)
+ ppc-*)
container_hosts=x86_64
container_image=debian-powerpc-test-cross
container_cross_cc=powerpc-linux-gnu-gcc-10
--
2.30.2
^ permalink raw reply related
* [PATCH yocto-autobuilder-helper v2] Add a oe-selftest for Arm hosts and targets
From: Ross Burton @ 2022-01-05 14:12 UTC (permalink / raw)
To: yocto
oe-selftest-arm to run oe-selftest with MACHINE=qemuarm64, on any host.
oe-selftest-armhost to run oe-selftest with MACHINE=qemux86-64, on an Arm
host (pinned by yocto-autobuilder2).
Signed-off-by: Ross Burton <ross.burton@arm.com>
---
config.json | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/config.json b/config.json
index c0543d9..2378782 100644
--- a/config.json
+++ b/config.json
@@ -826,6 +826,13 @@
"oe-selftest-centos" : {
"TEMPLATE" : "selftest"
},
+ "oe-selftest-arm" : {
+ "MACHINE": "qemuarm64",
+ "TEMPLATE" : "selftest"
+ },
+ "oe-selftest-armhost" : {
+ "TEMPLATE" : "selftest"
+ },
"reproducible" : {
"TEMPLATE" : "reproducible"
},
--
2.25.1
^ permalink raw reply related
* Re: Memory clearing in swiotlb_update_mem_attributes()
From: Christoph Hellwig @ 2022-01-05 14:12 UTC (permalink / raw)
To: Tom Lendacky; +Cc: Christoph Hellwig, Kirill A. Shutemov, iommu
In-Reply-To: <d16046ad-7828-a015-b6a3-3ed01ed15bac@amd.com>
On Wed, Jan 05, 2022 at 08:06:10AM -0600, Tom Lendacky wrote:
> On 1/4/22 4:49 PM, Kirill A. Shutemov wrote:
> > Hi Tom,
> >
> > For larger TDX VM, memset() after set_memory_decrypted() in
> > swiotlb_update_mem_attributes() takes substantial portion of boot time.
> >
> > It makes me wounder why do we need it there? Malicious VMM can mess with
> > decrypted/shared buffer at any point and for normal use it will be
> > populated with real data anyway.
> >
> > Can we drop it?
>
> Probably more a question for Christoph. Does SWIOTLB need to be initialized
> to zeroes? If it does, then the memset after the set_memory_decrypted() is
> required, otherwise it will appear as ciphertext to SWIOTLB.
While the traditional swiotlb initialization zeroes it I can't really
see any reason why we would want to zero it. If we really care about
not leaking data to the device we'd need to zero the padding at mapping
time.
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
^ permalink raw reply
* next/master baseline: 880 runs, 83 regressions (next-20220105)
From: kernelci.org bot @ 2022-01-05 14:12 UTC (permalink / raw)
To: linux-next, kernel-build-reports, kernelci-results
next/master baseline: 880 runs, 83 regressions (next-20220105)
Regressions Summary
-------------------
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
bcm2711-rpi-4-b | arm64 | lab-collabora | gcc-10 | defconfig | 1
bcm2711-rpi-4-b | arm64 | lab-collabora | gcc-10 | defconfig+crypto | 1
bcm2711-rpi-4-b | arm64 | lab-collabora | gcc-10 | defconfig+CON...OMIZE_BASE=y | 1
bcm2711-rpi-4-b | arm64 | lab-collabora | gcc-10 | defconfig+ima | 1
bcm2711-rpi-4-b | arm64 | lab-linaro-lkft | gcc-10 | defconfig | 1
bcm2711-rpi-4-b | arm64 | lab-linaro-lkft | gcc-10 | defconfig+crypto | 1
bcm2711-rpi-4-b | arm64 | lab-linaro-lkft | gcc-10 | defconfig+CON...OMIZE_BASE=y | 1
bcm2711-rpi-4-b | arm64 | lab-linaro-lkft | gcc-10 | defconfig+ima | 1
bcm2836-rpi-2-b | arm | lab-collabora | gcc-10 | bcm2835_defconfig | 1
bcm2836-rpi-2-b | arm | lab-collabora | gcc-10 | multi_v7_defc...MB2_KERNEL=y | 1
kontron-kbox-a-230-ls | arm64 | lab-kontron | gcc-10 | defconfig+CON..._64K_PAGES=y | 8
kontron-kbox-a-230-ls | arm64 | lab-kontron | gcc-10 | defconfig | 2
kontron-kbox-a-230-ls | arm64 | lab-kontron | gcc-10 | defconfig+crypto | 2
kontron-kbox-a-230-ls | arm64 | lab-kontron | gcc-10 | defconfig+CON...OMIZE_BASE=y | 2
kontron-kbox-a-230-ls | arm64 | lab-kontron | gcc-10 | defconfig+ima | 2
kontron-sl28-var3-ads2 | arm64 | lab-kontron | gcc-10 | defconfig+CON..._64K_PAGES=y | 2
kontron-sl28-var3-ads2 | arm64 | lab-kontron | gcc-10 | defconfig | 2
kontron-sl28-var3-ads2 | arm64 | lab-kontron | gcc-10 | defconfig+crypto | 2
kontron-sl28-var3-ads2 | arm64 | lab-kontron | gcc-10 | defconfig+CON...OMIZE_BASE=y | 2
kontron-sl28-var3-ads2 | arm64 | lab-kontron | gcc-10 | defconfig+ima | 2
meson-g12a-sei510 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
meson-g12a-u200 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
meson-g12a-x96-max | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
meson-g12b-a311d-khadas-vim3 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
meson-g12b-a311d-khadas-vim3 | arm64 | lab-collabora | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
meson-g12b-odroid-n2 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
meson-gxbb-nanopi-k2 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
meson-gxl-s905d-p230 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
meson-gxl-s905d-p230 | arm64 | lab-baylibre | gcc-10 | defconfig+ima | 1
meson-gxl-s905x-libretech-cc | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
meson-gxl-s905x-libretech-cc | arm64 | lab-clabbe | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
meson-gxm-khadas-vim2 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
meson-sm1-khadas-vim3l | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
meson-sm1-sei610 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
minnowboard-turbot-E3826 | x86_64 | lab-collabora | gcc-10 | x86_64_defconfig+debug | 1
qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+debug | 1
qemu_arm64-virt-gicv2-uefi | arm64 | lab-cip | gcc-10 | defconfig+debug | 1
qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+debug | 1
qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
qemu_arm64-virt-gicv2-uefi | arm64 | lab-linaro-lkft | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
qemu_arm64-virt-gicv2-uefi | arm64 | lab-linaro-lkft | gcc-10 | defconfig+debug | 1
qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+debug | 1
qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+debug | 1
qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
qemu_arm64-virt-gicv3-uefi | arm64 | lab-linaro-lkft | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
qemu_arm64-virt-gicv3-uefi | arm64 | lab-linaro-lkft | gcc-10 | defconfig+debug | 1
r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig | 2
r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 2
r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig+crypto | 2
r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig+CON...OMIZE_BASE=y | 2
r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig+ima | 2
r8a77950-salvator-x | arm64 | lab-baylibre | gcc-10 | defconfig+CON...BIG_ENDIAN=y | 1
sun50i-a64-bananapi-m64 | arm64 | lab-clabbe | gcc-10 | defconfig | 1
sun50i-a64-bananapi-m64 | arm64 | lab-clabbe | gcc-10 | defconfig+crypto | 1
sun50i-a64-bananapi-m64 | arm64 | lab-clabbe | gcc-10 | defconfig+CON...OMIZE_BASE=y | 1
zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig+debug | 1
zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig | 1
zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig+crypto | 1
zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig+CON...OMIZE_BASE=y | 1
zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig+ima | 1
Details: https://kernelci.org/test/job/next/branch/master/kernel/next-20220105/plan/baseline/
Test: baseline
Tree: next
Branch: master
Describe: next-20220105
URL: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
SHA: 7a769a3922d81cfc74ab4d90a9cc69485f260976
Test Regressions
----------------
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
bcm2711-rpi-4-b | arm64 | lab-collabora | gcc-10 | defconfig | 1
Details: https://kernelci.org/test/plan/id/61d56f7ddb2b1c4459ef67b5
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-collabora/baseline-bcm2711-rpi-4-b.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-collabora/baseline-bcm2711-rpi-4-b.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f7ddb2b1c4459ef67b6
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
bcm2711-rpi-4-b | arm64 | lab-collabora | gcc-10 | defconfig+crypto | 1
Details: https://kernelci.org/test/plan/id/61d5714943cd06b955ef673f
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+crypto
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-collabora/baseline-bcm2711-rpi-4-b.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-collabora/baseline-bcm2711-rpi-4-b.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d5714943cd06b955ef6740
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
bcm2711-rpi-4-b | arm64 | lab-collabora | gcc-10 | defconfig+CON...OMIZE_BASE=y | 1
Details: https://kernelci.org/test/plan/id/61d572c5cf9ccd5bc4ef67b3
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_RANDOMIZE_BASE=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-collabora/baseline-bcm2711-rpi-4-b.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-collabora/baseline-bcm2711-rpi-4-b.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d572c5cf9ccd5bc4ef67b4
failing since 0 day (last pass: next-20211223, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
bcm2711-rpi-4-b | arm64 | lab-collabora | gcc-10 | defconfig+ima | 1
Details: https://kernelci.org/test/plan/id/61d5776ac8c64dc345ef6758
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+ima
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-collabora/baseline-bcm2711-rpi-4-b.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-collabora/baseline-bcm2711-rpi-4-b.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d5776ac8c64dc345ef6759
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
bcm2711-rpi-4-b | arm64 | lab-linaro-lkft | gcc-10 | defconfig | 1
Details: https://kernelci.org/test/plan/id/61d57895bac07f5bb9ef674a
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-linaro-lkft/baseline-bcm2711-rpi-4-b.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-linaro-lkft/baseline-bcm2711-rpi-4-b.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d57895bac07f5bb9ef674b
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
bcm2711-rpi-4-b | arm64 | lab-linaro-lkft | gcc-10 | defconfig+crypto | 1
Details: https://kernelci.org/test/plan/id/61d579c7adb93203b6ef676c
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+crypto
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-linaro-lkft/baseline-bcm2711-rpi-4-b.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-linaro-lkft/baseline-bcm2711-rpi-4-b.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d579c7adb93203b6ef676d
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
bcm2711-rpi-4-b | arm64 | lab-linaro-lkft | gcc-10 | defconfig+CON...OMIZE_BASE=y | 1
Details: https://kernelci.org/test/plan/id/61d57a3859a2a59788ef673d
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_RANDOMIZE_BASE=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-linaro-lkft/baseline-bcm2711-rpi-4-b.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-linaro-lkft/baseline-bcm2711-rpi-4-b.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d57a3859a2a59788ef673e
failing since 0 day (last pass: next-20211223, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
bcm2711-rpi-4-b | arm64 | lab-linaro-lkft | gcc-10 | defconfig+ima | 1
Details: https://kernelci.org/test/plan/id/61d57a89c0e5ede7b8ef6749
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+ima
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-linaro-lkft/baseline-bcm2711-rpi-4-b.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-linaro-lkft/baseline-bcm2711-rpi-4-b.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d57a89c0e5ede7b8ef674a
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
bcm2836-rpi-2-b | arm | lab-collabora | gcc-10 | bcm2835_defconfig | 1
Details: https://kernelci.org/test/plan/id/61d56db40e2c389d55ef675b
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: bcm2835_defconfig
Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm/bcm2835_defconfig/gcc-10/lab-collabora/baseline-bcm2836-rpi-2-b.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm/bcm2835_defconfig/gcc-10/lab-collabora/baseline-bcm2836-rpi-2-b.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/armel/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56db40e2c389d55ef675c
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
bcm2836-rpi-2-b | arm | lab-collabora | gcc-10 | multi_v7_defc...MB2_KERNEL=y | 1
Details: https://kernelci.org/test/plan/id/61d56f22fc8cf1e96bef6799
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: multi_v7_defconfig+CONFIG_THUMB2_KERNEL=y
Compiler: gcc-10 (arm-linux-gnueabihf-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm/multi_v7_defconfig+config_thumb2_kernel=y/gcc-10/lab-collabora/baseline-bcm2836-rpi-2-b.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm/multi_v7_defconfig+config_thumb2_kernel=y/gcc-10/lab-collabora/baseline-bcm2836-rpi-2-b.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/armel/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f22fc8cf1e96bef679a
failing since 12 days (last pass: next-20211223, first fail: next-20211224)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
kontron-kbox-a-230-ls | arm64 | lab-kontron | gcc-10 | defconfig+CON..._64K_PAGES=y | 8
Details: https://kernelci.org/test/plan/id/61d572c5cf9ccd5bc4ef6754
Results: 85 PASS, 8 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-kontron/baseline-kontron-kbox-a-230-ls.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-kontron/baseline-kontron-kbox-a-230-ls.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.bootrr.caam-probed: https://kernelci.org/test/case/id/61d572c5cf9ccd5bc4ef678a
new failure (last pass: next-20211224)
2022-01-05T10:28:08.634761 /lava-73776/1/../bin/lava-test-case
2022-01-05T10:28:08.637972 <8>[ 18.694455] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=caam-probed RESULT=fail>
* baseline.bootrr.caam_jr-driver-present: https://kernelci.org/test/case/id/61d572c5cf9ccd5bc4ef678b
new failure (last pass: next-20211224)
2022-01-05T10:28:09.657778 /lava-73776/1/../bin/lava-test-case
2022-01-05T10:28:09.660879 <8>[ 19.712893] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=caam_jr-driver-present RESULT=fail>
* baseline.bootrr.caam_jr-jr0-probed: https://kernelci.org/test/case/id/61d572c5cf9ccd5bc4ef678c
new failure (last pass: next-20211224)
2022-01-05T10:28:10.672511 /lava-73776/1/../bin/lava-test-case
2022-01-05T10:28:10.674539 <8>[ 20.731746] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=caam_jr-jr0-probed RESULT=fail>
* baseline.bootrr.caam_jr-jr1-probed: https://kernelci.org/test/case/id/61d572c5cf9ccd5bc4ef678d
new failure (last pass: next-20211224)
2022-01-05T10:28:11.690262 /lava-73776/1/../bin/lava-test-case
2022-01-05T10:28:11.693377 <8>[ 21.750433] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=caam_jr-jr1-probed RESULT=fail>
* baseline.bootrr.caam_jr-jr2-probed: https://kernelci.org/test/case/id/61d572c5cf9ccd5bc4ef678e
new failure (last pass: next-20211224)
2022-01-05T10:28:12.708812 /lava-73776/1/../bin/lava-test-case
2022-01-05T10:28:12.711925 <8>[ 22.769316] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=caam_jr-jr2-probed RESULT=fail>
* baseline.bootrr.caam_jr-jr3-probed: https://kernelci.org/test/case/id/61d572c5cf9ccd5bc4ef678f
new failure (last pass: next-20211224)
2022-01-05T10:28:13.770415 /lava-73776/1/../bin/lava-test-case
2022-01-05T10:28:13.770752 <8>[ 23.788254] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=caam_jr-jr3-probed RESULT=fail>
2022-01-05T10:28:13.770988 /lava-73776/1/../bin/lava-test-case
2022-01-05T10:28:13.771149 <8>[ 23.804682] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=sp805-wdt-driver-present RESULT=pass>
2022-01-05T10:28:13.771328 /lava-73776/1/../bin/lava-test-case
2022-01-05T10:28:13.771490 <8>[ 23.820933] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=sp805-wdt-watchdog0-probed RESULT=pass>
2022-01-05T10:28:13.773559 /lava-73776/1/../bin/lava-test-case
* baseline.bootrr.ftm-alarm-driver-present: https://kernelci.org/test/case/id/61d572c5cf9ccd5bc4ef6799
failing since 15 days (last pass: next-20211216, first fail: next-20211220)
2022-01-05T10:28:14.898905 /lava-73776/1/../bin/lava-test-case
* baseline.bootrr.ftm-alarm-probed: https://kernelci.org/test/case/id/61d572c5cf9ccd5bc4ef679a
failing since 15 days (last pass: next-20211216, first fail: next-20211220)
2022-01-05T10:28:14.902028 <8>[ 24.953675] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-driver-present RESULT=fail>
2022-01-05T10:28:15.950505 /lava-73776/1/../bin/lava-test-case
2022-01-05T10:28:15.950883 <8>[ 25.973003] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-probed RESULT=fail>
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
kontron-kbox-a-230-ls | arm64 | lab-kontron | gcc-10 | defconfig | 2
Details: https://kernelci.org/test/plan/id/61d5733d6fc8c6fbceef6759
Results: 91 PASS, 2 FAIL, 0 SKIP
Full config: defconfig
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-kontron/baseline-kontron-kbox-a-230-ls.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-kontron/baseline-kontron-kbox-a-230-ls.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.bootrr.ftm-alarm-driver-present: https://kernelci.org/test/case/id/61d5733d6fc8c6fbceef679e
failing since 18 days (last pass: next-20211216, first fail: next-20211217)
2022-01-05T10:30:07.198566 /lava-73779/1/../bin/lava-test-case
* baseline.bootrr.ftm-alarm-probed: https://kernelci.org/test/case/id/61d5733d6fc8c6fbceef679f
failing since 18 days (last pass: next-20211216, first fail: next-20211217)
2022-01-05T10:30:07.201632 <8>[ 16.704986] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-driver-present RESULT=fail>
2022-01-05T10:30:08.250897 /lava-73779/1/../bin/lava-test-case
2022-01-05T10:30:08.251251 <8>[ 17.723690] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-probed RESULT=fail>
2022-01-05T10:30:08.251494 /lava-73779/1/../bin/lava-test-case
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
kontron-kbox-a-230-ls | arm64 | lab-kontron | gcc-10 | defconfig+crypto | 2
Details: https://kernelci.org/test/plan/id/61d575be1d108ae9cbef675b
Results: 91 PASS, 2 FAIL, 0 SKIP
Full config: defconfig+crypto
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-kontron/baseline-kontron-kbox-a-230-ls.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-kontron/baseline-kontron-kbox-a-230-ls.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.bootrr.ftm-alarm-driver-present: https://kernelci.org/test/case/id/61d575be1d108ae9cbef67a4
failing since 14 days (last pass: next-20211216, first fail: next-20211221)
2022-01-05T10:40:48.104032 /lava-73795/1/../bin/lava-test-case
* baseline.bootrr.ftm-alarm-probed: https://kernelci.org/test/case/id/61d575be1d108ae9cbef67a5
failing since 14 days (last pass: next-20211216, first fail: next-20211221)
2022-01-05T10:40:48.107127 <8>[ 17.904208] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-driver-present RESULT=fail>
2022-01-05T10:40:49.159230 /lava-73795/1/../bin/lava-test-case
2022-01-05T10:40:49.159541 <8>[ 18.923725] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-probed RESULT=fail>
2022-01-05T10:40:49.159736 /lava-73795/1/../bin/lava-test-case
2022-01-05T10:40:49.159920 <8>[ 18.939758] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=simple-mfd-i2c-driver-present RESULT=pass>
2022-01-05T10:40:49.160104 /lava-73795/1/../bin/lava-test-case
2022-01-05T10:40:49.160278 <8>[ 18.955846] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=simple-mfd-i2c-probed RESULT=pass>
2022-01-05T10:40:49.160454 /lava-73795/1/../bin/lava-test-case
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
kontron-kbox-a-230-ls | arm64 | lab-kontron | gcc-10 | defconfig+CON...OMIZE_BASE=y | 2
Details: https://kernelci.org/test/plan/id/61d57805689d4266edef673d
Results: 91 PASS, 2 FAIL, 0 SKIP
Full config: defconfig+CONFIG_RANDOMIZE_BASE=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-kontron/baseline-kontron-kbox-a-230-ls.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-kontron/baseline-kontron-kbox-a-230-ls.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.bootrr.ftm-alarm-driver-present: https://kernelci.org/test/case/id/61d57805689d4266edef6782
failing since 14 days (last pass: next-20211216, first fail: next-20211221)
2022-01-05T10:50:29.962545 /lava-73809/1/../bin/lava-test-case
* baseline.bootrr.ftm-alarm-probed: https://kernelci.org/test/case/id/61d57805689d4266edef6783
failing since 14 days (last pass: next-20211216, first fail: next-20211221)
2022-01-05T10:50:29.965649 <8>[ 16.972618] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-driver-present RESULT=fail>
2022-01-05T10:50:31.015439 /lava-73809/1/../bin/lava-test-case
2022-01-05T10:50:31.015803 <8>[ 17.991908] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-probed RESULT=fail>
2022-01-05T10:50:31.016048 /lava-73809/1/../bin/lava-test-case
2022-01-05T10:50:31.016276 <8>[ 18.008972] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=simple-mfd-i2c-driver-present RESULT=pass>
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
kontron-kbox-a-230-ls | arm64 | lab-kontron | gcc-10 | defconfig+ima | 2
Details: https://kernelci.org/test/plan/id/61d5792ed62ddbd6c5ef674f
Results: 91 PASS, 2 FAIL, 0 SKIP
Full config: defconfig+ima
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-kontron/baseline-kontron-kbox-a-230-ls.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-kontron/baseline-kontron-kbox-a-230-ls.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.bootrr.ftm-alarm-driver-present: https://kernelci.org/test/case/id/61d5792fd62ddbd6c5ef6794
failing since 18 days (last pass: next-20211216, first fail: next-20211217)
2022-01-05T10:55:30.972983 /lava-73814/1/../bin/lava-test-case
* baseline.bootrr.ftm-alarm-probed: https://kernelci.org/test/case/id/61d5792fd62ddbd6c5ef6795
failing since 18 days (last pass: next-20211216, first fail: next-20211217)
2022-01-05T10:55:30.976167 <8>[ 18.293702] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-driver-present RESULT=fail>
2022-01-05T10:55:32.023863 /lava-73814/1/../bin/lava-test-case
2022-01-05T10:55:32.024226 <8>[ 19.312482] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-probed RESULT=fail>
2022-01-05T10:55:32.024468 /lava-73814/1/../bin/lava-test-case
2022-01-05T10:55:32.024713 <8>[ 19.328399] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=simple-mfd-i2c-driver-present RESULT=pass>
2022-01-05T10:55:32.024946 /lava-73814/1/../bin/lava-test-case
2022-01-05T10:55:32.025231 <8>[ 19.345517] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=simple-mfd-i2c-probed RESULT=pass>
2022-01-05T10:55:32.025464 /lava-73814/1/../bin/lava-test-case
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
kontron-sl28-var3-ads2 | arm64 | lab-kontron | gcc-10 | defconfig+CON..._64K_PAGES=y | 2
Details: https://kernelci.org/test/plan/id/61d5715d622bb2f528ef673d
Results: 99 PASS, 2 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-kontron/baseline-kontron-sl28-var3-ads2.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-kontron/baseline-kontron-sl28-var3-ads2.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.bootrr.ftm-alarm-driver-present: https://kernelci.org/test/case/id/61d5715e622bb2f528ef6789
failing since 15 days (last pass: next-20211216, first fail: next-20211220)
2022-01-05T10:22:14.763311 /lava-73774/1/../bin/lava-test-case
* baseline.bootrr.ftm-alarm-probed: https://kernelci.org/test/case/id/61d5715e622bb2f528ef678a
failing since 15 days (last pass: next-20211216, first fail: next-20211220)
2022-01-05T10:22:14.767197 <8>[ 14.011095] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-driver-present RESULT=fail>
2022-01-05T10:22:15.815421 /lava-73774/1/../bin/lava-test-case
2022-01-05T10:22:15.815809 <8>[ 15.030853] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-probed RESULT=fail>
2022-01-05T10:22:15.816048 /lava-73774/1/../bin/lava-test-case
2022-01-05T10:22:15.816270 <8>[ 15.046932] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=simple-mfd-i2c-driver-present RESULT=pass>
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
kontron-sl28-var3-ads2 | arm64 | lab-kontron | gcc-10 | defconfig | 2
Details: https://kernelci.org/test/plan/id/61d5733f7089ab4190ef673d
Results: 99 PASS, 2 FAIL, 0 SKIP
Full config: defconfig
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-kontron/baseline-kontron-sl28-var3-ads2.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-kontron/baseline-kontron-sl28-var3-ads2.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.bootrr.ftm-alarm-driver-present: https://kernelci.org/test/case/id/61d5733f7089ab4190ef6789
failing since 18 days (last pass: next-20211216, first fail: next-20211217)
2022-01-05T10:30:13.663912 /lava-73784/1/../bin/lava-test-case
* baseline.bootrr.ftm-alarm-probed: https://kernelci.org/test/case/id/61d5733f7089ab4190ef678a
failing since 18 days (last pass: next-20211216, first fail: next-20211217)
2022-01-05T10:30:13.667748 <8>[ 13.497684] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-driver-present RESULT=fail>
2022-01-05T10:30:14.714840 /lava-73784/1/../bin/lava-test-case
2022-01-05T10:30:14.715255 <8>[ 14.516396] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-probed RESULT=fail>
2022-01-05T10:30:14.715495 /lava-73784/1/../bin/lava-test-case
2022-01-05T10:30:14.715721 <8>[ 14.532865] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=simple-mfd-i2c-driver-present RESULT=pass>
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
kontron-sl28-var3-ads2 | arm64 | lab-kontron | gcc-10 | defconfig+crypto | 2
Details: https://kernelci.org/test/plan/id/61d5751f67dd5850e0ef6762
Results: 99 PASS, 2 FAIL, 0 SKIP
Full config: defconfig+crypto
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-kontron/baseline-kontron-sl28-var3-ads2.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-kontron/baseline-kontron-sl28-var3-ads2.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.bootrr.ftm-alarm-driver-present: https://kernelci.org/test/case/id/61d5751f67dd5850e0ef67ae
failing since 14 days (last pass: next-20211216, first fail: next-20211221)
2022-01-05T10:38:09.098835 /lava-73792/1/../bin/lava-test-case
* baseline.bootrr.ftm-alarm-probed: https://kernelci.org/test/case/id/61d5751f67dd5850e0ef67af
failing since 14 days (last pass: next-20211216, first fail: next-20211221)
2022-01-05T10:38:09.112006 <8>[ 13.529868] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-driver-present RESULT=fail>
2022-01-05T10:38:10.148983 /lava-73792/1/../bin/lava-test-case
2022-01-05T10:38:10.149346 <8>[ 14.548831] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-probed RESULT=fail>
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
kontron-sl28-var3-ads2 | arm64 | lab-kontron | gcc-10 | defconfig+CON...OMIZE_BASE=y | 2
Details: https://kernelci.org/test/plan/id/61d5782a4d24e3a779ef673d
Results: 99 PASS, 2 FAIL, 0 SKIP
Full config: defconfig+CONFIG_RANDOMIZE_BASE=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-kontron/baseline-kontron-sl28-var3-ads2.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-kontron/baseline-kontron-sl28-var3-ads2.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.bootrr.ftm-alarm-driver-present: https://kernelci.org/test/case/id/61d5782b4d24e3a779ef6789
failing since 14 days (last pass: next-20211216, first fail: next-20211221)
2022-01-05T10:51:01.880878 /lava-73806/1/../bin/lava-test-case
* baseline.bootrr.ftm-alarm-probed: https://kernelci.org/test/case/id/61d5782b4d24e3a779ef678a
failing since 14 days (last pass: next-20211216, first fail: next-20211221)
2022-01-05T10:51:01.884002 <8>[ 13.499893] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-driver-present RESULT=fail>
2022-01-05T10:51:02.931059 /lava-73806/1/../bin/lava-test-case
2022-01-05T10:51:02.931685 <8>[ 14.519379] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-probed RESULT=fail>
2022-01-05T10:51:02.931942 /lava-73806/1/../bin/lava-test-case
2022-01-05T10:51:02.932168 <8>[ 14.535290] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=simple-mfd-i2c-driver-present RESULT=pass>
2022-01-05T10:51:02.932358 /lava-73806/1/../bin/lava-test-case
2022-01-05T10:51:02.932535 <8>[ 14.551279] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=simple-mfd-i2c-probed RESULT=pass>
2022-01-05T10:51:02.932713 /lava-73806/1/../bin/lava-test-case
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
kontron-sl28-var3-ads2 | arm64 | lab-kontron | gcc-10 | defconfig+ima | 2
Details: https://kernelci.org/test/plan/id/61d5793036b4d8a1e8ef6746
Results: 99 PASS, 2 FAIL, 0 SKIP
Full config: defconfig+ima
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-kontron/baseline-kontron-sl28-var3-ads2.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-kontron/baseline-kontron-sl28-var3-ads2.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.bootrr.ftm-alarm-driver-present: https://kernelci.org/test/case/id/61d5793036b4d8a1e8ef6792
failing since 18 days (last pass: next-20211216, first fail: next-20211217)
2022-01-05T10:55:36.616263 /lava-73815/1/../bin/lava-test-case
* baseline.bootrr.ftm-alarm-probed: https://kernelci.org/test/case/id/61d5793036b4d8a1e8ef6793
failing since 18 days (last pass: next-20211216, first fail: next-20211217)
2022-01-05T10:55:36.619515 <8>[ 13.559966] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-driver-present RESULT=fail>
2022-01-05T10:55:37.665789 /lava-73815/1/../bin/lava-test-case
2022-01-05T10:55:37.666154 <8>[ 14.578752] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=ftm-alarm-probed RESULT=fail>
2022-01-05T10:55:37.667155 /lava-73815/1/../bin/lava-test-case
2022-01-05T10:55:37.667454 <8>[ 14.594713] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=simple-mfd-i2c-driver-present RESULT=pass>
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-g12a-sei510 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56e7023624821c6ef675b
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-g12a-sei510.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-g12a-sei510.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56e7023624821c6ef675c
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-g12a-u200 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56ef40626dfd305ef6749
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-g12a-u200.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-g12a-u200.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56ef40626dfd305ef674a
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-g12a-x96-max | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56f4622c7e0cf23ef6757
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-g12a-x96-max.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-g12a-x96-max.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f4622c7e0cf23ef6758
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-g12b-a311d-khadas-vim3 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56f4486609ccf29ef674d
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-g12b-a311d-khadas-vim3.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-g12b-a311d-khadas-vim3.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f4486609ccf29ef674e
new failure (last pass: next-20211224)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-g12b-a311d-khadas-vim3 | arm64 | lab-collabora | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56e5293ac6aeec9ef676e
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-collabora/baseline-meson-g12b-a311d-khadas-vim3.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-collabora/baseline-meson-g12b-a311d-khadas-vim3.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56e5293ac6aeec9ef676f
new failure (last pass: next-20211224)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-g12b-odroid-n2 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56e4993ac6aeec9ef675e
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-g12b-odroid-n2.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-g12b-odroid-n2.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56e4993ac6aeec9ef675f
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-gxbb-nanopi-k2 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56e9313c9f47b14ef673d
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-gxbb-nanopi-k2.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-gxbb-nanopi-k2.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56e9313c9f47b14ef673e
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-gxl-s905d-p230 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d5744bdd5a8d6a87ef6758
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-gxl-s905d-p230.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-gxl-s905d-p230.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d5744bdd5a8d6a87ef6759
failing since 0 day (last pass: next-20211118, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-gxl-s905d-p230 | arm64 | lab-baylibre | gcc-10 | defconfig+ima | 1
Details: https://kernelci.org/test/plan/id/61d581331246cbee81ef6749
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+ima
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-baylibre/baseline-meson-gxl-s905d-p230.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-baylibre/baseline-meson-gxl-s905d-p230.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d581331246cbee81ef674a
new failure (last pass: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-gxl-s905x-libretech-cc | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56e6c22be5142cdef6753
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-gxl-s905x-libretech-cc.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-gxl-s905x-libretech-cc.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56e6c22be5142cdef6754
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-gxl-s905x-libretech-cc | arm64 | lab-clabbe | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56edb038bb3f132ef673e
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-clabbe/baseline-meson-gxl-s905x-libretech-cc.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-clabbe/baseline-meson-gxl-s905x-libretech-cc.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56edb038bb3f132ef673f
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-gxm-khadas-vim2 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d575a24aa7345abcef6769
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-gxm-khadas-vim2.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-gxm-khadas-vim2.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d575a24aa7345abcef676a
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-sm1-khadas-vim3l | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56e4793ac6aeec9ef675b
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-sm1-khadas-vim3l.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-sm1-khadas-vim3l.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56e4793ac6aeec9ef675c
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
meson-sm1-sei610 | arm64 | lab-baylibre | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56f08562f240ab6ef674d
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-sm1-sei610.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-baylibre/baseline-meson-sm1-sei610.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f08562f240ab6ef674e
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
minnowboard-turbot-E3826 | x86_64 | lab-collabora | gcc-10 | x86_64_defconfig+debug | 1
Details: https://kernelci.org/test/plan/id/61d57d0c05ca1cb5c4ef674a
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: x86_64_defconfig+debug
Compiler: gcc-10 (gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/x86_64/x86_64_defconfig+debug/gcc-10/lab-collabora/baseline-minnowboard-turbot-E3826.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/x86_64/x86_64_defconfig+debug/gcc-10/lab-collabora/baseline-minnowboard-turbot-E3826.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/x86/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d57d0c05ca1cb5c4ef674b
new failure (last pass: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
qemu_arm64-virt-gicv2-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+debug | 1
Details: https://kernelci.org/test/plan/id/61d56f0cd3d584e5dbef676d
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+debug
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-baylibre/baseline-qemu_arm64-virt-gicv2-uefi.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-baylibre/baseline-qemu_arm64-virt-gicv2-uefi.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f0cd3d584e5dbef676e
failing since 22 days (last pass: v5.16-rc4-6579-gea922272cbe5, first fail: v5.16-rc5-6644-gbcd5ddb85fad)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
qemu_arm64-virt-gicv2-uefi | arm64 | lab-cip | gcc-10 | defconfig+debug | 1
Details: https://kernelci.org/test/plan/id/61d56f1efc8cf1e96bef6782
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+debug
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-cip/baseline-qemu_arm64-virt-gicv2-uefi.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-cip/baseline-qemu_arm64-virt-gicv2-uefi.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f1efc8cf1e96bef6783
failing since 22 days (last pass: v5.16-rc4-6579-gea922272cbe5, first fail: v5.16-rc5-6644-gbcd5ddb85fad)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+debug | 1
Details: https://kernelci.org/test/plan/id/61d56f0bd3d584e5dbef676a
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+debug
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv2-uefi.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv2-uefi.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f0bd3d584e5dbef676b
failing since 22 days (last pass: v5.16-rc4-6579-gea922272cbe5, first fail: v5.16-rc5-6644-gbcd5ddb85fad)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
qemu_arm64-virt-gicv2-uefi | arm64 | lab-collabora | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56f6b9dc053632aef676d
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv2-uefi.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv2-uefi.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f6b9dc053632aef676e
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
qemu_arm64-virt-gicv2-uefi | arm64 | lab-linaro-lkft | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d57fe0f32fb124ccef674e
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-linaro-lkft/baseline-qemu_arm64-virt-gicv2-uefi.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-linaro-lkft/baseline-qemu_arm64-virt-gicv2-uefi.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d57fe0f32fb124ccef674f
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
qemu_arm64-virt-gicv2-uefi | arm64 | lab-linaro-lkft | gcc-10 | defconfig+debug | 1
Details: https://kernelci.org/test/plan/id/61d57ff1f32fb124ccef6753
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+debug
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-linaro-lkft/baseline-qemu_arm64-virt-gicv2-uefi.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-linaro-lkft/baseline-qemu_arm64-virt-gicv2-uefi.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d57ff1f32fb124ccef6754
failing since 22 days (last pass: v5.16-rc4-6579-gea922272cbe5, first fail: v5.16-rc5-6644-gbcd5ddb85fad)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
qemu_arm64-virt-gicv3-uefi | arm64 | lab-baylibre | gcc-10 | defconfig+debug | 1
Details: https://kernelci.org/test/plan/id/61d56f11f088f3ab85ef6745
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+debug
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-baylibre/baseline-qemu_arm64-virt-gicv3-uefi.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-baylibre/baseline-qemu_arm64-virt-gicv3-uefi.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f11f088f3ab85ef6746
failing since 21 days (last pass: v5.16-rc5-6644-gbcd5ddb85fad, first fail: next-20211214)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+debug | 1
Details: https://kernelci.org/test/plan/id/61d56f3e7128f8fb6fef676c
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+debug
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3-uefi.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3-uefi.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f3e7128f8fb6fef676d
failing since 21 days (last pass: v5.16-rc5-6644-gbcd5ddb85fad, first fail: next-20211214)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
qemu_arm64-virt-gicv3-uefi | arm64 | lab-collabora | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56f9ae373426368ef6752
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3-uefi.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-collabora/baseline-qemu_arm64-virt-gicv3-uefi.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f9ae373426368ef6753
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
qemu_arm64-virt-gicv3-uefi | arm64 | lab-linaro-lkft | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d5800969bece193aef674a
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-linaro-lkft/baseline-qemu_arm64-virt-gicv3-uefi.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-linaro-lkft/baseline-qemu_arm64-virt-gicv3-uefi.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d5800969bece193aef674b
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
qemu_arm64-virt-gicv3-uefi | arm64 | lab-linaro-lkft | gcc-10 | defconfig+debug | 1
Details: https://kernelci.org/test/plan/id/61d58056c39a6d24d4ef6771
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+debug
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-linaro-lkft/baseline-qemu_arm64-virt-gicv3-uefi.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-linaro-lkft/baseline-qemu_arm64-virt-gicv3-uefi.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d58056c39a6d24d4ef6772
failing since 21 days (last pass: v5.16-rc5-6644-gbcd5ddb85fad, first fail: next-20211214)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d575cca03c8937abef674e
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-cip/baseline-r8a774c0-ek874.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-cip/baseline-r8a774c0-ek874.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d575cca03c8937abef674f
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig | 2
Details: https://kernelci.org/test/plan/id/61d577acf7d96af5f6ef676c
Results: 4 PASS, 2 FAIL, 0 SKIP
Full config: defconfig
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-cip/baseline-r8a774c0-ek874.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-cip/baseline-r8a774c0-ek874.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.dmesg.emerg: https://kernelci.org/test/case/id/61d577acf7d96af5f6ef676f
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
2 lines
2022-01-05T10:48:47.825149 kern :alert : Data abort info:
2022-01-05T10:48:47.867279 kern :alert : ISV = 0, ISS = 0x00000006
2022-01-05T10:48:47.867462 kern :alert : CM = 0, WnR = 0
2022-01-05T10:48:47.867554 kern :alert : user pgtable: 4<8>[ 17.638706] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=emerg RESULT=fail UNITS=lines MEASUREMENT=2>
2022-01-05T10:48:47.867641 k pages, 48-bit VAs, pgdp=000000007fa920<8>[ 17.650785] <LAVA_SIGNAL_ENDRUN 0_dmesg 589955_1.5.2.4.1>
2022-01-05T10:48:47.867724 00
2022-01-05T10:48:47.867805 kern :alert : [0000000000000000] pgd=080000007fa93003, p4d=080000007fa93003, pud=080000007fa94003, pmd=0000000000000000
2022-01-05T10:48:47.867884 kern :emerg : Internal error: Oops: 96000006 [#1] PREEMPT SMP
* baseline.dmesg.alert: https://kernelci.org/test/case/id/61d577acf7d96af5f6ef6770
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
12 lines
2022-01-05T10:48:47.775023 <8>[ 17.559047] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=crit RESULT=pass UNITS=lines MEASUREMENT=0>
2022-01-05T10:48:47.823810 kern :alert : Unable to handle kernel NULL pointer dereference at virtual address 0000000000000000
2022-01-05T10:48:47.823959 kern :alert : Mem abort info:
2022-01-05T10:48:47.824050 ker<8>[ 17.598235] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=alert RESULT=fail UNITS=lines MEASUREMENT=12>
2022-01-05T10:48:47.824151 n :alert : ESR = 0x96000006
2022-01-05T10:48:47.824237 kern :alert : EC = 0x25: DABT (current EL), IL = 32 bits
2022-01-05T10:48:47.824327 kern :alert : SET = 0, FnV = 0
2022-01-05T10:48:47.824405 kern :alert : EA = 0, S1PTW = 0
2022-01-05T10:48:47.824482 kern :alert : FSC = 0x06: level 2 translation fault
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig+arm64-chromebook | 2
Details: https://kernelci.org/test/plan/id/61d57b32ace920b8aaef673d
Results: 4 PASS, 2 FAIL, 0 SKIP
Full config: defconfig+arm64-chromebook
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+arm64-chromebook/gcc-10/lab-cip/baseline-r8a774c0-ek874.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+arm64-chromebook/gcc-10/lab-cip/baseline-r8a774c0-ek874.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.dmesg.emerg: https://kernelci.org/test/case/id/61d57b32ace920b8aaef6740
failing since 0 day (last pass: next-20211223, first fail: next-20220104)
2 lines
2022-01-05T11:03:45.578043 kern :alert : ISV = 0, ISS = 0x00000006
2022-01-05T11:03:45.578235 kern :alert : CM = 0, WnR = 0
2022-01-05T11:03:45.578348 kern :alert : user pgtable: <8>[ 16.297831] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=emerg RESULT=fail UNITS=lines MEASUREMENT=2>
2022-01-05T11:03:45.578434 4k pages, 48-bit VAs, pgdp=000000007f99d<8>[ 16.309894] <LAVA_SIGNAL_ENDRUN 0_dmesg 590005_1.5.2.4.1>
2022-01-05T11:03:45.578519 000
2022-01-05T11:03:45.578601 kern :alert : [0000000000000000] pgd=080000007f99e003, p4d=080000007f99e003, pud=080000007f99a003, pmd=0000000000000000
2022-01-05T11:03:45.578680 kern :emerg : Internal error: Oops: 96000006 [#1] PREEMPT SMP
* baseline.dmesg.alert: https://kernelci.org/test/case/id/61d57b32ace920b8aaef6741
failing since 0 day (last pass: next-20211223, first fail: next-20220104)
12 lines
2022-01-05T11:03:45.486357 <8>[ 16.218695] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=crit RESULT=pass UNITS=lines MEASUREMENT=0>
2022-01-05T11:03:45.534990 kern :alert : Unable to handle kernel NULL pointer dereference at virtual address 0000000000000000
2022-01-05T11:03:45.535208 kern :alert : Mem abort info:
2022-01-05T11:03:45.535305 ker<8>[ 16.257810] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=alert RESULT=fail UNITS=lines MEASUREMENT=12>
2022-01-05T11:03:45.535399 n :alert : ESR = 0x96000006
2022-01-05T11:03:45.535485 kern :alert : EC = 0x25: DABT (current EL), IL = 32 bits
2022-01-05T11:03:45.535568 kern :alert : SET = 0, FnV = 0
2022-01-05T11:03:45.535648 kern :alert : EA = 0, S1PTW = 0
2022-01-05T11:03:45.535727 kern :alert : FSC = 0x06: level 2 translation fault
2022-01-05T11:03:45.535807 kern :alert : Data abort info:
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig+crypto | 2
Details: https://kernelci.org/test/plan/id/61d57cc0cee61e97e2ef673e
Results: 4 PASS, 2 FAIL, 0 SKIP
Full config: defconfig+crypto
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-cip/baseline-r8a774c0-ek874.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-cip/baseline-r8a774c0-ek874.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.dmesg.emerg: https://kernelci.org/test/case/id/61d57cc0cee61e97e2ef6741
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
2 lines
2022-01-05T11:10:40.348553 kern :alert : ISV = 0, ISS = 0x00000006
2022-01-05T11:10:40.348755 kern :alert : CM = 0, WnR = 0
2022-01-05T11:10:40.348852 kern :alert : user pgtable: 4k pages<8>[ 16.323418] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=emerg RESULT=fail UNITS=lines MEASUREMENT=2>
2022-01-05T11:10:40.348942 , 48-bit VAs, pgdp=000000007f953000
2022-01-05T11:10:40.349028 ker<8>[ 16.335772] <LAVA_SIGNAL_ENDRUN 0_dmesg 590031_1.5.2.4.1>
2022-01-05T11:10:40.349111 n :alert : [0000000000000000] pgd=080000007f94f003, p4d=080000007f94f003, pud=080000007f950003, pmd=0000000000000000
2022-01-05T11:10:40.349206 kern :emerg : Internal error: Oops: 96000006 [#1] PREEMPT SMP
* baseline.dmesg.alert: https://kernelci.org/test/case/id/61d57cc0cee61e97e2ef6742
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
12 lines
2022-01-05T11:10:40.256255 <8>[ 16.243627] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=crit RESULT=pass UNITS=lines MEASUREMENT=0>
2022-01-05T11:10:40.304870 kern :alert : Unable to handle kernel NULL pointer dereference at virtual address 0000000000000000
2022-01-05T11:10:40.305070 kern :alert : Mem abort info:
2022-01-05T11:10:40.305180 ker<8>[ 16.282794] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=alert RESULT=fail UNITS=lines MEASUREMENT=12>
2022-01-05T11:10:40.305271 n :alert : ESR = 0x96000006
2022-01-05T11:10:40.305358 kern :alert : EC = 0x25: DABT (current EL), IL = 32 bits
2022-01-05T11:10:40.305443 kern :alert : SET = 0, FnV = 0
2022-01-05T11:10:40.305525 kern :alert : EA = 0, S1PTW = 0
2022-01-05T11:10:40.305606 kern :alert : FSC = 0x06: level 2 translation fault
2022-01-05T11:10:40.305686 kern :alert : Data abort info:
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig+CON...OMIZE_BASE=y | 2
Details: https://kernelci.org/test/plan/id/61d57fb872661bd1e2ef6756
Results: 4 PASS, 2 FAIL, 0 SKIP
Full config: defconfig+CONFIG_RANDOMIZE_BASE=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-cip/baseline-r8a774c0-ek874.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-cip/baseline-r8a774c0-ek874.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.dmesg.emerg: https://kernelci.org/test/case/id/61d57fb872661bd1e2ef6759
failing since 0 day (last pass: next-20211223, first fail: next-20220104)
2 lines
2022-01-05T11:23:22.152335 kern :alert : ISV = 0, ISS = 0x00000006
2022-01-05T11:23:22.152450 kern :alert : CM = 0, WnR = 0
2022-01-05T11:23:22.152550 kern :alert : user pgtable: 4k pages<8>[ 15.734920] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=emerg RESULT=fail UNITS=lines MEASUREMENT=2>
2022-01-05T11:23:22.152645 , 48-bit VAs, pgdp=000000007f932000
2022-01-05T11:23:22.152726 ker<8>[ 15.747521] <LAVA_SIGNAL_ENDRUN 0_dmesg 590090_1.5.2.4.1>
2022-01-05T11:23:22.152805 n :alert : [0000000000000000] pgd=080000007f933003, p4d=080000007f933003, pud=080000007f938003, pmd=0000000000000000
2022-01-05T11:23:22.152885 kern :emerg : Internal error: Oops: 96000006 [#1] PREEMPT SMP
* baseline.dmesg.alert: https://kernelci.org/test/case/id/61d57fb872661bd1e2ef675a
failing since 0 day (last pass: next-20211223, first fail: next-20220104)
12 lines
2022-01-05T11:23:22.109116 kern :alert : Unable to handle kernel NULL pointer dereference at virtual address 0000000000000000
2022-01-05T11:23:22.109254 kern :alert : Mem abort info:
2022-01-05T11:23:22.109344 ker<8>[ 15.694391] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=alert RESULT=fail UNITS=lines MEASUREMENT=12>
2022-01-05T11:23:22.109439 n :alert : ESR = 0x96000006
2022-01-05T11:23:22.109530 kern :alert : EC = 0x25: DABT (current EL), IL = 32 bits
2022-01-05T11:23:22.109609 kern :alert : SET = 0, FnV = 0
2022-01-05T11:23:22.109685 kern :alert : EA = 0, S1PTW = 0
2022-01-05T11:23:22.109760 kern :alert : FSC = 0x06: level 2 translation fault
2022-01-05T11:23:22.109834 kern :alert : Data abort info:
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
r8a774c0-ek874 | arm64 | lab-cip | gcc-10 | defconfig+ima | 2
Details: https://kernelci.org/test/plan/id/61d581341246cbee81ef674c
Results: 4 PASS, 2 FAIL, 0 SKIP
Full config: defconfig+ima
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-cip/baseline-r8a774c0-ek874.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-cip/baseline-r8a774c0-ek874.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.dmesg.emerg: https://kernelci.org/test/case/id/61d581341246cbee81ef674f
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
2 lines
2022-01-05T11:29:37.513716 ker<8>[ 16.317332] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=alert RESULT=fail UNITS=lines MEASUREMENT=12>
2022-01-05T11:29:37.513819 n :alert : ESR = 0x96000006
2022-01-05T11:29:37.513901 kern :alert : EC = 0x25: DABT (current EL), IL = 32 bits
2022-01-05T11:29:37.513980 kern :alert : SET = 0, FnV = 0
2022-01-05T11:29:37.514057 kern :alert : EA = 0, S1PTW = 0
2022-01-05T11:29:37.514132 kern :alert : FSC = 0x06: level 2 translation fault
2022-01-05T11:29:37.514207 kern :alert : Data abort info:
2022-01-05T11:29:37.556101 kern :alert : ISV = 0, ISS = 0x00000006
2022-01-05T11:29:37.556245 kern :alert : CM = 0, WnR = 0
2022-01-05T11:29:37.556358 kern :alert : user pgtable: 4k pages<8>[ 16.357907] <LAVA_SIGNAL_TESTCASE TEST_CASE_ID=emerg RESULT=fail UNITS=lines MEASUREMENT=2>
... (2 line(s) more)
* baseline.dmesg.alert: https://kernelci.org/test/case/id/61d581341246cbee81ef6750
failing since 0 day (last pass: next-20211224, first fail: next-20220104)
12 lines
2022-01-05T11:29:37.512979 kern :alert : Unable to handle kernel NULL pointer dereference at virtual address 0000000000000000
2022-01-05T11:29:37.513101 kern :alert : Mem abort info:
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
r8a77950-salvator-x | arm64 | lab-baylibre | gcc-10 | defconfig+CON...BIG_ENDIAN=y | 1
Details: https://kernelci.org/test/plan/id/61d56ee8533bcb7720ef674c
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_CPU_BIG_ENDIAN=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_cpu_big_endian=y/gcc-10/lab-baylibre/baseline-r8a77950-salvator-x.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_cpu_big_endian=y/gcc-10/lab-baylibre/baseline-r8a77950-salvator-x.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64be/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56ee8533bcb7720ef674d
new failure (last pass: next-20211224)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
sun50i-a64-bananapi-m64 | arm64 | lab-clabbe | gcc-10 | defconfig | 1
Details: https://kernelci.org/test/plan/id/61d571fbac80f892e8ef675a
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-clabbe/baseline-sun50i-a64-bananapi-m64.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-clabbe/baseline-sun50i-a64-bananapi-m64.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d571fbac80f892e8ef675b
new failure (last pass: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
sun50i-a64-bananapi-m64 | arm64 | lab-clabbe | gcc-10 | defconfig+crypto | 1
Details: https://kernelci.org/test/plan/id/61d574a33fde695c85ef6772
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+crypto
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-clabbe/baseline-sun50i-a64-bananapi-m64.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-clabbe/baseline-sun50i-a64-bananapi-m64.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d574a33fde695c85ef6773
new failure (last pass: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
sun50i-a64-bananapi-m64 | arm64 | lab-clabbe | gcc-10 | defconfig+CON...OMIZE_BASE=y | 1
Details: https://kernelci.org/test/plan/id/61d577d7f5edc9c202ef6755
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_RANDOMIZE_BASE=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-clabbe/baseline-sun50i-a64-bananapi-m64.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-clabbe/baseline-sun50i-a64-bananapi-m64.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d577d7f5edc9c202ef6756
new failure (last pass: next-20220104)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig+debug | 1
Details: https://kernelci.org/test/plan/id/61d56f0a562f240ab6ef6756
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+debug
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-cip/baseline-zynqmp-zcu102.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+debug/gcc-10/lab-cip/baseline-zynqmp-zcu102.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f0a562f240ab6ef6757
failing since 43 days (last pass: next-20211118, first fail: next-20211123)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig+CON..._64K_PAGES=y | 1
Details: https://kernelci.org/test/plan/id/61d56f4622c7e0cf23ef6754
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_ARM64_64K_PAGES=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-cip/baseline-zynqmp-zcu102.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_arm64_64k_pages=y/gcc-10/lab-cip/baseline-zynqmp-zcu102.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d56f4622c7e0cf23ef6755
failing since 43 days (last pass: next-20211118, first fail: next-20211123)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig | 1
Details: https://kernelci.org/test/plan/id/61d5705e0721459760ef6768
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-cip/baseline-zynqmp-zcu102.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig/gcc-10/lab-cip/baseline-zynqmp-zcu102.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d5705e0721459760ef6769
failing since 43 days (last pass: next-20211118, first fail: next-20211123)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig+crypto | 1
Details: https://kernelci.org/test/plan/id/61d574beeea383d909ef6752
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+crypto
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-cip/baseline-zynqmp-zcu102.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+crypto/gcc-10/lab-cip/baseline-zynqmp-zcu102.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d574beeea383d909ef6753
failing since 43 days (last pass: next-20211118, first fail: next-20211123)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig+CON...OMIZE_BASE=y | 1
Details: https://kernelci.org/test/plan/id/61d576127cfe91d5e3ef67b4
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+CONFIG_RANDOMIZE_BASE=y
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-cip/baseline-zynqmp-zcu102.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+config_randomize_base=y/gcc-10/lab-cip/baseline-zynqmp-zcu102.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d576127cfe91d5e3ef67b5
failing since 43 days (last pass: next-20211118, first fail: next-20211123)
platform | arch | lab | compiler | defconfig | regressions
-----------------------------+--------+-----------------+----------+------------------------------+------------
zynqmp-zcu102 | arm64 | lab-cip | gcc-10 | defconfig+ima | 1
Details: https://kernelci.org/test/plan/id/61d57753c8c64dc345ef6745
Results: 0 PASS, 1 FAIL, 0 SKIP
Full config: defconfig+ima
Compiler: gcc-10 (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110)
Plain log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-cip/baseline-zynqmp-zcu102.txt
HTML log: https://storage.kernelci.org//next/master/next-20220105/arm64/defconfig+ima/gcc-10/lab-cip/baseline-zynqmp-zcu102.html
Rootfs: http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20211210.0/arm64/rootfs.cpio.gz
* baseline.login: https://kernelci.org/test/case/id/61d57753c8c64dc345ef6746
failing since 43 days (last pass: next-20211118, first fail: next-20211123)
^ permalink raw reply
* Re: [PATCH 1/4] RDMA/core: Calculate UDP source port based on flow label or lqpn/rqpn
From: Yanjun Zhu @ 2022-01-05 14:11 UTC (permalink / raw)
To: Mark Zhang, liangwenpeng, liweihang, jgg, mustafa.ismail,
shiraz.saleem, zyjzyj2000, linux-rdma
In-Reply-To: <dee99588-0710-c2b2-17b0-ba9d2f959a79@nvidia.com>
在 2022/1/5 21:51, Mark Zhang 写道:
> On 1/5/2022 4:07 PM, yanjun.zhu@linux.dev wrote:
>> From: Zhu Yanjun <yanjun.zhu@linux.dev>
>>
>> Calculate and set UDP source port based on the flow label. If flow label
>> is not defined in GRH then calculate it based on lqpn/rqpn.
>>
>> Signed-off-by: Zhu Yanjun <yanjun.zhu@linux.dev>
>> ---
>> include/rdma/ib_verbs.h | 17 +++++++++++++++++
>> 1 file changed, 17 insertions(+)
>>
>> diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h
>> index 6e9ad656ecb7..2f122aa81f0f 100644
>> --- a/include/rdma/ib_verbs.h
>> +++ b/include/rdma/ib_verbs.h
>> @@ -4749,6 +4749,23 @@ static inline u32 rdma_calc_flow_label(u32
>> lqpn, u32 rqpn)
>> return (u32)(v & IB_GRH_FLOWLABEL_MASK);
>> }
>> +/**
>> + * rdma_get_udp_sport - Calculate and set UDP source port based on
>> the flow
>> + * label. If flow label is not defined in GRH then
>> + * calculate it based on lqpn/rqpn.
>> + *
>> + * @fl: flow label from GRH
>
> Indent:
> + * @fl: flow label from GRH
Thanks. In V2, this problem is fixed.
>
>> + * @lqpn: local qp number
>> + * @rqpn: remote qp number
>> + */
>> +static inline u16 rdma_get_udp_sport(u32 fl, u32 lqpn, u32 rqpn)
>> +{
>> + if (!fl)
>> + fl = rdma_calc_flow_label(lqpn, rqpn);
>> +
>> + return rdma_flow_label_to_udp_sport(fl);
>> +}
>> + > const struct ib_port_immutable*
>> ib_port_immutable_read(struct ib_device *dev, unsigned int port);
>> #endif /* IB_VERBS_H */
>
> Maybe this and next patch can be squashed into one?
Why do you think this commit and next commit should be squashed into one?
Best Regards,
Zhu Yanjun
^ permalink raw reply
* [PATCH v1 32/34] gitlab-ci: Enable docs in the centos job
From: Alex Bennée @ 2022-01-05 13:50 UTC (permalink / raw)
To: qemu-devel
Cc: fam, Thomas Huth, berrange, Beraldo Leal, f4bug,
Wainer dos Santos Moschetta, Marc-André Lureau, stefanha,
crosa, pbonzini, Alex Bennée, aurelien
In-Reply-To: <20220105135009.1584676-1-alex.bennee@linaro.org>
From: Thomas Huth <thuth@redhat.com>
We just ran into a problem that the docs don't build on RHEL8 / CentOS 8
anymore. Seems like these distros are using one of the oldest Sphinx
versions that we still have to support. Thus enable the docs build in
the CI on CentOS so that such bugs don't slip in so easily again.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20220104091240.160867-1-thuth@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
.gitlab-ci.d/buildtest.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.gitlab-ci.d/buildtest.yml b/.gitlab-ci.d/buildtest.yml
index e77aec873e..8f2a3c8f5b 100644
--- a/.gitlab-ci.d/buildtest.yml
+++ b/.gitlab-ci.d/buildtest.yml
@@ -164,7 +164,7 @@ build-system-centos:
variables:
IMAGE: centos8
CONFIGURE_ARGS: --disable-nettle --enable-gcrypt --enable-fdt=system
- --enable-modules --enable-trace-backends=dtrace
+ --enable-modules --enable-trace-backends=dtrace --enable-docs
TARGETS: ppc64-softmmu or1k-softmmu s390x-softmmu
x86_64-softmmu rx-softmmu sh4-softmmu nios2-softmmu
MAKE_CHECK_ARGS: check-build
--
2.30.2
^ permalink raw reply related
* Re: [PATCH 02/12] ceph: handle idmapped mounts in create_request_message()
From: Christian Brauner @ 2022-01-05 14:11 UTC (permalink / raw)
To: Gregory Farnum
Cc: Jeff Layton, Christian Brauner, ceph-devel, Ilya Dryomov,
Christoph Hellwig
In-Reply-To: <CAJ4mKGbKVcvoYGi3go3-VtMhjXES5iMyof9qMfL+8AyHiPKBNA@mail.gmail.com>
On Tue, Jan 04, 2022 at 11:33:33AM -0800, Gregory Farnum wrote:
> On Tue, Jan 4, 2022 at 9:41 AM Jeff Layton <jlayton@kernel.org> wrote:
> >
> > On Tue, 2022-01-04 at 15:04 +0100, Christian Brauner wrote:
> > > From: Christian Brauner <christian.brauner@ubuntu.com>
> > >
> > > Inode operations that create a new filesystem object such as ->mknod,
> > > ->create, ->mkdir() and others don't take a {g,u}id argument explicitly.
> > > Instead the caller's fs{g,u}id is used for the {g,u}id of the new
> > > filesystem object.
> > >
> > > Cephfs mds creation request argument structures mirror this filesystem
> > > behavior. They don't encode a {g,u}id explicitly. Instead the caller's
> > > fs{g,u}id that is always sent as part of any mds request is used by the
> > > servers to set the {g,u}id of the new filesystem object.
> > >
> > > In order to ensure that the correct {g,u}id is used map the caller's
> > > fs{g,u}id for creation requests. This doesn't require complex changes.
> > > It suffices to pass in the relevant idmapping recorded in the request
> > > message. If this request message was triggered from an inode operation
> > > that creates filesystem objects it will have passed down the relevant
> > > idmaping. If this is a request message that was triggered from an inode
> > > operation that doens't need to take idmappings into account the initial
> > > idmapping is passed down which is an identity mapping and thus is
> > > guaranteed to leave the caller's fs{g,u}id unchanged.,u}id is sent.
> > >
> > > The last few weeks before Christmas 2021 I have spent time not just
> > > reading and poking the cephfs kernel code but also took a look at the
> > > ceph mds server userspace to ensure I didn't miss some subtlety.
> > >
> > > This made me aware of one complication to solve. All requests send the
> > > caller's fs{g,u}id over the wire. The caller's fs{g,u}id matters for the
> > > server in exactly two cases:
> > >
> > > 1. to set the ownership for creation requests
> > > 2. to determine whether this client is allowed access on this server
> > >
> > > Case 1. we already covered and explained. Case 2. is only relevant for
> > > servers where an explicit uid access restriction has been set. That is
> > > to say the mds server restricts access to requests coming from a
> > > specific uid. Servers without uid restrictions will grant access to
> > > requests from any uid by setting MDS_AUTH_UID_ANY.
> > >
> > > Case 2. introduces the complication because the caller's fs{g,u}id is
> > > not just used to record ownership but also serves as the {g,u}id used
> > > when checking access to the server.
> > >
> > > Consider a user mounting a cephfs client and creating an idmapped mount
> > > from it that maps files owned by uid 1000 to be owned uid 0:
> > >
> > > mount -t cephfs -o [...] /unmapped
> > > mount-idmapped --map-mount 1000:0:1 /idmapped
> > >
> > > That is to say if the mounted cephfs filesystem contains a file "file1"
> > > which is owned by uid 1000:
> > >
> > > - looking at it via /unmapped/file1 will report it as owned by uid 1000
> > > (One can think of this as the on-disk value.)
> > > - looking at it via /idmapped/file1 will report it as owned by uid 0
> > >
> > > Now, consider creating new files via the idmapped mount at /idmapped.
> > > When a caller with fs{g,u}id 1000 creates a file "file2" by going
> > > through the idmapped mount mounted at /idmapped it will create a file
> > > that is owned by uid 1000 on-disk, i.e.:
> > >
> > > - looking at it via /unmapped/file2 will report it as owned by uid 1000
> > > - looking at it via /idmapped/file2 will report it as owned by uid 0
> > >
> > > Now consider an mds server that has a uid access restriction set and
> > > only grants access to requests from uid 0.
> > >
> > > If the client sends a creation request for a file e.g. /idmapped/file2
> > > it will send the caller's fs{g,u}id idmapped according to the idmapped
> > > mount. So if the caller has fs{g,u}id 1000 it will be mapped to {g,u}id
> > > 0 in the idmapped mount and will be sent over the wire allowing the
> > > caller access to the mds server.
> > >
> > > However, if the caller is not issuing a creation request the caller's
> > > fs{g,u}id will be send without the mount's idmapping applied. So if the
> > > caller that just successfully created a new file on the restricted mds
> > > server sends a request as fs{g,u}id 1000 access will be refused. This
> > > however is inconsistent.
> > >
> >
> > IDGI, why would you send the fs{g,u}id without the mount's idmapping
> > applied in this case? ISTM that idmapping is wholly a client-side
> > feature, and that you should always map id's regardless of whether
> > you're creating or not.
>
> Yeah, I'm confused. We want the fs {g,u}id to be consistent throughout
> the request pipeline and to reflect the actual Ceph user all the way
> through the server-side pipeline. What if client.greg is only
> authorized to work as uid 12345 and access /users/greg/; why would you
> send in a bunch of requests as root just because I mounted that way
> inside my own space?
>
> This might be more obvious in the userspace Client, which is already
> set up to be friendlier to mapped users for Ganesha etc:
> mknod (https://github.com/ceph/ceph/blob/master/src/client/Client.cc#L7297)
> and similar calls receive a "UserPerm" from the caller specifying who
> the call should be performed as, and they pass that in to the generic
> make_requst() function
> (https://github.com/ceph/ceph/blob/master/src/client/Client.cc#L1778)
> which uses it to set the uid and gid fields you found in the message.
Thank you for those links. I think I read through this code before and
I'll give it another read.
^ permalink raw reply
* [PATCH] ethtool: use phydev variable
From: trix @ 2022-01-05 14:10 UTC (permalink / raw)
To: davem, kuba, leon, arnd, danieller, gustavoars, hkallweit1,
andrew
Cc: netdev, linux-kernel, Tom Rix
From: Tom Rix <trix@redhat.com>
In ethtool_get_phy_stats(), the phydev varaible is set to
dev->phydev but dev->phydev is still used. Replace
dev->phydev uses with phydev.
Signed-off-by: Tom Rix <trix@redhat.com>
---
net/ethtool/ioctl.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/net/ethtool/ioctl.c b/net/ethtool/ioctl.c
index b2cdba1b4aaec..326e14ee05dbf 100644
--- a/net/ethtool/ioctl.c
+++ b/net/ethtool/ioctl.c
@@ -2096,9 +2096,9 @@ static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr)
if (!phydev && (!ops->get_ethtool_phy_stats || !ops->get_sset_count))
return -EOPNOTSUPP;
- if (dev->phydev && !ops->get_ethtool_phy_stats &&
+ if (phydev && !ops->get_ethtool_phy_stats &&
phy_ops && phy_ops->get_sset_count)
- n_stats = phy_ops->get_sset_count(dev->phydev);
+ n_stats = phy_ops->get_sset_count(phydev);
else
n_stats = ops->get_sset_count(dev, ETH_SS_PHY_STATS);
if (n_stats < 0)
@@ -2117,9 +2117,9 @@ static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr)
if (!data)
return -ENOMEM;
- if (dev->phydev && !ops->get_ethtool_phy_stats &&
+ if (phydev && !ops->get_ethtool_phy_stats &&
phy_ops && phy_ops->get_stats) {
- ret = phy_ops->get_stats(dev->phydev, &stats, data);
+ ret = phy_ops->get_stats(phydev, &stats, data);
if (ret < 0)
goto out;
} else {
--
2.26.3
^ permalink raw reply related
* Re: [PATCH 02/12] ceph: handle idmapped mounts in create_request_message()
From: Christian Brauner @ 2022-01-05 14:10 UTC (permalink / raw)
To: Jeff Layton
Cc: Christian Brauner, ceph-devel, Ilya Dryomov, Christoph Hellwig
In-Reply-To: <cdd3f83fd64cc308a7694875c1e4a35f0d052429.camel@kernel.org>
On Tue, Jan 04, 2022 at 12:40:51PM -0500, Jeff Layton wrote:
> On Tue, 2022-01-04 at 15:04 +0100, Christian Brauner wrote:
> > From: Christian Brauner <christian.brauner@ubuntu.com>
> >
> > Inode operations that create a new filesystem object such as ->mknod,
> > ->create, ->mkdir() and others don't take a {g,u}id argument explicitly.
> > Instead the caller's fs{g,u}id is used for the {g,u}id of the new
> > filesystem object.
> >
> > Cephfs mds creation request argument structures mirror this filesystem
> > behavior. They don't encode a {g,u}id explicitly. Instead the caller's
> > fs{g,u}id that is always sent as part of any mds request is used by the
> > servers to set the {g,u}id of the new filesystem object.
> >
> > In order to ensure that the correct {g,u}id is used map the caller's
> > fs{g,u}id for creation requests. This doesn't require complex changes.
> > It suffices to pass in the relevant idmapping recorded in the request
> > message. If this request message was triggered from an inode operation
> > that creates filesystem objects it will have passed down the relevant
> > idmaping. If this is a request message that was triggered from an inode
> > operation that doens't need to take idmappings into account the initial
> > idmapping is passed down which is an identity mapping and thus is
> > guaranteed to leave the caller's fs{g,u}id unchanged.,u}id is sent.
> >
> > The last few weeks before Christmas 2021 I have spent time not just
> > reading and poking the cephfs kernel code but also took a look at the
> > ceph mds server userspace to ensure I didn't miss some subtlety.
> >
> > This made me aware of one complication to solve. All requests send the
> > caller's fs{g,u}id over the wire. The caller's fs{g,u}id matters for the
> > server in exactly two cases:
> >
> > 1. to set the ownership for creation requests
> > 2. to determine whether this client is allowed access on this server
> >
> > Case 1. we already covered and explained. Case 2. is only relevant for
> > servers where an explicit uid access restriction has been set. That is
> > to say the mds server restricts access to requests coming from a
> > specific uid. Servers without uid restrictions will grant access to
> > requests from any uid by setting MDS_AUTH_UID_ANY.
> >
> > Case 2. introduces the complication because the caller's fs{g,u}id is
> > not just used to record ownership but also serves as the {g,u}id used
> > when checking access to the server.
> >
> > Consider a user mounting a cephfs client and creating an idmapped mount
> > from it that maps files owned by uid 1000 to be owned uid 0:
> >
> > mount -t cephfs -o [...] /unmapped
> > mount-idmapped --map-mount 1000:0:1 /idmapped
> >
> > That is to say if the mounted cephfs filesystem contains a file "file1"
> > which is owned by uid 1000:
> >
> > - looking at it via /unmapped/file1 will report it as owned by uid 1000
> > (One can think of this as the on-disk value.)
> > - looking at it via /idmapped/file1 will report it as owned by uid 0
> >
> > Now, consider creating new files via the idmapped mount at /idmapped.
> > When a caller with fs{g,u}id 1000 creates a file "file2" by going
> > through the idmapped mount mounted at /idmapped it will create a file
> > that is owned by uid 1000 on-disk, i.e.:
> >
> > - looking at it via /unmapped/file2 will report it as owned by uid 1000
> > - looking at it via /idmapped/file2 will report it as owned by uid 0
> >
> > Now consider an mds server that has a uid access restriction set and
> > only grants access to requests from uid 0.
> >
> > If the client sends a creation request for a file e.g. /idmapped/file2
> > it will send the caller's fs{g,u}id idmapped according to the idmapped
> > mount. So if the caller has fs{g,u}id 1000 it will be mapped to {g,u}id
> > 0 in the idmapped mount and will be sent over the wire allowing the
> > caller access to the mds server.
> >
> > However, if the caller is not issuing a creation request the caller's
> > fs{g,u}id will be send without the mount's idmapping applied. So if the
> > caller that just successfully created a new file on the restricted mds
> > server sends a request as fs{g,u}id 1000 access will be refused. This
> > however is inconsistent.
> >
>
> IDGI, why would you send the fs{g,u}id without the mount's idmapping
> applied in this case? ISTM that idmapping is wholly a client-side
> feature, and that you should always map id's regardless of whether
> you're creating or not.
Since the idmapping is a property of the mount and not a property of the
caller the caller's fs{g,u}id aren't mapped. What is mapped are the
inode's i{g,u}id when accessed from a particular mount.
The fs{g,u}id are only ever mapped when a new filesystem object is
created. So if I have an idmapped mount that makes it so that files
owned by 1000 on-disk appear to be owned by uid 0 then a user with uid 0
creating a new file will create files with uid 1000 on-disk when going
through that mount. For cephfs that'd be the uid we would be sending
with creation requests as I've currently written it.
So then when the user looks at the file it created it will see it as
being owned by uid 0 from that idmapped mount (whereas on-disk it's
1000). But the user's fs{g,u}id isn't per se changed when going through
that mount. So in my opinion I was thinking that the server with access
permissions set would want to always check permissions on the users
"raw" fs{g,u}id. That would mean I'd have to change the patch obviously.
My suggestion was to send the {g,u}id the file will be created with
separately. The alternative would be to not just pass the idmapping into
the creation iop's but into all iops so that we can always map it for
cephfs. But this would mean a lot of vfs changes for one filesystem. So
if we could first explore alternatives approaches I'd be grateful.
(I'll be traveling for the latter half of this week starting today at
CET afternoon so apologies but I'll probably take some time to respond.)
^ permalink raw reply
* [PATCH] ALSA: hda/realtek: Add quirk for Legion Y9000X 2020
From: Baole Fang @ 2022-01-05 14:08 UTC (permalink / raw)
To: Jaroslav Kysela, Takashi Iwai, Jeremy Szu, Werner Sembach,
Hui Wang, Cameron Berkenpas, Kailang Yang, Sami Loone,
Elia Devito, moderated list:SOUND, open list
Cc: gregkh, Baole Fang
Legion Y9000X 2020 has a speaker, but the speaker doesn't work.
This can be fixed by applying alc285_fixup_ideapad_s740_coef
to fix the speaker's coefficients.
Besides, to support the transition between the speaker and the headphone,
alc287_fixup_legion_15imhg05_speakers needs to be run.
Signed-off-by: Baole Fang <fbl718@163.com>
---
sound/pci/hda/patch_realtek.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 28255e752c4a..c7232f9be690 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -6784,6 +6784,8 @@ enum {
ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
ALC233_FIXUP_NO_AUDIO_JACK,
ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME,
+ ALC285_FIXUP_LEGION_Y9000X_SPEAKERS,
+ ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
};
static const struct hda_fixup alc269_fixups[] = {
@@ -8380,6 +8382,18 @@ static const struct hda_fixup alc269_fixups[] = {
.chained = true,
.chain_id = ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
},
+ [ALC285_FIXUP_LEGION_Y9000X_SPEAKERS] = {
+ .type = HDA_FIXUP_FUNC,
+ .v.func = alc285_fixup_ideapad_s740_coef,
+ .chained = true,
+ .chain_id = ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
+ },
+ [ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE] = {
+ .type = HDA_FIXUP_FUNC,
+ .v.func = alc287_fixup_legion_15imhg05_speakers,
+ .chained = true,
+ .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
+ },
[ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS] = {
.type = HDA_FIXUP_VERBS,
//.v.verbs = legion_15imhg05_coefs,
@@ -8923,6 +8937,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x17aa, 0x31af, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940", ALC298_FIXUP_LENOVO_SPK_VOLUME),
SND_PCI_QUIRK(0x17aa, 0x3827, "Ideapad S740", ALC285_FIXUP_IDEAPAD_S740_COEF),
+ SND_PCI_QUIRK(0x17aa, 0x3824, "Legion Y9000X 2020", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
SND_PCI_QUIRK(0x17aa, 0x3843, "Yoga 9i", ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP),
SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
SND_PCI_QUIRK(0x17aa, 0x3852, "Lenovo Yoga 7 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
--
2.25.1
^ permalink raw reply related
* Re: [yocto] [PATCH yocto-autobuilder2] Run oe-selftest-arm jobs on the Arm workers only
From: Richard Purdie @ 2022-01-05 14:09 UTC (permalink / raw)
To: Ross Burton, yocto
In-Reply-To: <20220105122306.1041198-1-ross.burton@arm.com>
On Wed, 2022-01-05 at 12:23 +0000, Ross Burton wrote:
> Signed-off-by: Ross Burton <ross.burton@arm.com>
> ---
> config.py | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/config.py b/config.py
> index ea042c6..5e3e7a5 100644
> --- a/config.py
> +++ b/config.py
> @@ -172,6 +172,7 @@ builder_to_workers = {
> "oe-selftest-fedora": workers_fedora,
> "oe-selftest-opensuse": workers_opensuse,
> "oe-selftest-centos": workers_centos,
> + "oe-selftest-arm": workers_arm,
> "reproducible-ubuntu": workers_ubuntu,
> "reproducible-debian": workers_debian,
> "reproducible-fedora": workers_fedora,
I think you also need to add oe-selftest-arm to builders_others at the same time
or that won't do anything.
Cheers,
Richard
^ permalink raw reply
* Re: [RFC Patch v2] binman: add support for creating dummy files for external blobs
From: Heiko Thiery @ 2022-01-05 14:09 UTC (permalink / raw)
To: Simon Glass
Cc: U-Boot Mailing List, Stefano Babic, Fabio Estevam, Michael Walle,
Tom Rini, Wolfgang Denk
In-Reply-To: <CAPnjgZ3Y0s3n654mYJkc5RgTWX55UseCRt1mLzBVf5bE7-XWjA@mail.gmail.com>
Hi Simon,
Am Mi., 5. Jan. 2022 um 15:05 Uhr schrieb Simon Glass <sjg@chromium.org>:
>
> Hi Heiko,
>
> On Tue, 4 Jan 2022 at 07:22, Heiko Thiery <heiko.thiery@gmail.com> wrote:
> >
> > Hi Simon,
> >
> >
> > Am So., 2. Jan. 2022 um 18:15 Uhr schrieb Simon Glass <sjg@chromium.org>:
> > >
> > > Hi Heiko,
> > >
> > > On Thu, 2 Dec 2021 at 19:53, Simon Glass <sjg@chromium.org> wrote:
> > > >
> > > > Hi Heiko,
> > > >
> > > > On Mon, 29 Nov 2021 at 02:48, Heiko Thiery <heiko.thiery@gmail.com> wrote:
> > > > >
> > > > > While converting to binman for an imx8mq board, it has been found that
> > > > > building in the u-boot CI fails. This is because an imx8mq requires an
> > > > > external binary (signed_hdmi_imx8m.bin). If this file cannot be found
> > > > > mkimage fails.
> > > > > To be able to build this board in the u-boot CI a binman option
> > > > > (--fake-ext-blobs) is introduced that can be switched on via the u-boot
> > > > > makefile option BINMAN_FAKE_EXT_BLOBS. With that the needed dummy files are
> > > > > created.
> > > > >
> > > > > Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com>
> > > > > ---
> > > > > v2:
> > > > > - pass allow_fake_blobs to ProcessImage()
> > > > > - set AllowAllowFakeBlob() to images/entries
> > > > > - create fake blob in Entry_blot.ObtainContents() when file is missing and
> > > > > creation is allowed
> > > > >
> > > > > still missing:
> > > > > - unittest
> > > > > - option to set BINMAN_FAKE_EXT_BLOBS in Makefile via environment
> > > > > variable. With that we could simply set this env variable in the CI
> > > > > (gitlab-ci.yml) with adding support to buildman.
> > > > >
> > > > > Makefile | 1 +
> > > > > tools/binman/cmdline.py | 2 ++
> > > > > tools/binman/control.py | 9 +++++++--
> > > > > tools/binman/entry.py | 11 +++++++++++
> > > > > tools/binman/etype/blob.py | 7 +++++++
> > > > > tools/binman/etype/blob_ext.py | 8 ++++++++
> > > > > tools/binman/etype/mkimage.py | 9 +++++++++
> > > > > tools/binman/etype/section.py | 9 +++++++++
> > > > > 8 files changed, 54 insertions(+), 2 deletions(-)
> > > >
> > > > This looks good to me! The only thing is that instead of the warning
> > > > you should just print a single line at the end saying which blobs were
> > > > faked. See missing_list in ProcessImage() for how that could work. You
> > > > can set self.fake_blob in your blob.ObtainContents() and then have a
> > > > similar thing to CheckMissing() to actually collect the list of
> > > > entries which were faked.
> > > >
> > > > Also, for the real version can you please add a test (so 'binman test
> > > > -T' stays at 100% test coverage) and some docs in binman.rst ? You can
> > > > use testMissingBlob() as a template.
> > >
> > > Any word on this? I'd like to get this feature in and take a look at
> > > missing vendor tools, too.
> >
> > I have a new version available with your comments included. But the
> > tests are still missing. In the past days I had no motivation to work
> > on that. I will try to do this in the next days.
>
> OK thanks. If you need help with the test-coverage part, let me know.
I sent a new version about an hour ago with unittest included.
--
Heiko
^ permalink raw reply
* Re: [PATCH rdma-next] RDMA/mad: Delete duplicated init_query_mad functions
From: Haakon Bugge @ 2022-01-05 14:09 UTC (permalink / raw)
To: Leon Romanovsky
Cc: Jason Gunthorpe, Leon Romanovsky, linux-kernel@vger.kernel.org,
OFED mailing list
In-Reply-To: <af6f35c590ff5ef56d0137351b8b295af0f7c13c.1641369858.git.leonro@nvidia.com>
> On 5 Jan 2022, at 09:04, Leon Romanovsky <leon@kernel.org> wrote:
>
> From: Leon Romanovsky <leonro@nvidia.com>
>
> Several drivers used same function to initialize query MAD,
> so move that function to global header file.
>
> Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
LGTM,
Reviewed-by: Håkon Bugge <haakon.bugge@oracle.com>
Thxs, Håkon
> ---
> drivers/infiniband/hw/mlx4/main.c | 24 +++++++-------------
> drivers/infiniband/hw/mlx5/mad.c | 18 +++++++--------
> drivers/infiniband/hw/mlx5/mlx5_ib.h | 8 -------
> drivers/infiniband/hw/mthca/mthca_provider.c | 20 +++++-----------
> include/rdma/ib_smi.h | 12 +++++++++-
> 5 files changed, 34 insertions(+), 48 deletions(-)
>
> diff --git a/drivers/infiniband/hw/mlx4/main.c b/drivers/infiniband/hw/mlx4/main.c
> index d66ce7694bbe..1c3d97229988 100644
> --- a/drivers/infiniband/hw/mlx4/main.c
> +++ b/drivers/infiniband/hw/mlx4/main.c
> @@ -85,14 +85,6 @@ static enum rdma_link_layer mlx4_ib_port_link_layer(struct ib_device *device,
>
> static struct workqueue_struct *wq;
>
> -static void init_query_mad(struct ib_smp *mad)
> -{
> - mad->base_version = 1;
> - mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
> - mad->class_version = 1;
> - mad->method = IB_MGMT_METHOD_GET;
> -}
> -
> static int check_flow_steering_support(struct mlx4_dev *dev)
> {
> int eth_num_ports = 0;
> @@ -471,7 +463,7 @@ static int mlx4_ib_query_device(struct ib_device *ibdev,
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
>
> err = mlx4_MAD_IFC(to_mdev(ibdev), MLX4_MAD_IFC_IGNORE_KEYS,
> @@ -669,7 +661,7 @@ static int ib_link_query_port(struct ib_device *ibdev, u32 port,
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
> in_mad->attr_mod = cpu_to_be32(port);
>
> @@ -721,7 +713,7 @@ static int ib_link_query_port(struct ib_device *ibdev, u32 port,
>
> /* If reported active speed is QDR, check if is FDR-10 */
> if (props->active_speed == IB_SPEED_QDR) {
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = MLX4_ATTR_EXTENDED_PORT_INFO;
> in_mad->attr_mod = cpu_to_be32(port);
>
> @@ -848,7 +840,7 @@ int __mlx4_ib_query_gid(struct ib_device *ibdev, u32 port, int index,
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
> in_mad->attr_mod = cpu_to_be32(port);
>
> @@ -870,7 +862,7 @@ int __mlx4_ib_query_gid(struct ib_device *ibdev, u32 port, int index,
> }
> }
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_GUID_INFO;
> in_mad->attr_mod = cpu_to_be32(index / 8);
>
> @@ -917,7 +909,7 @@ static int mlx4_ib_query_sl2vl(struct ib_device *ibdev, u32 port,
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_SL_TO_VL_TABLE;
> in_mad->attr_mod = 0;
>
> @@ -971,7 +963,7 @@ int __mlx4_ib_query_pkey(struct ib_device *ibdev, u32 port, u16 index,
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_PKEY_TABLE;
> in_mad->attr_mod = cpu_to_be32(index / 32);
>
> @@ -1990,7 +1982,7 @@ static int init_node_data(struct mlx4_ib_dev *dev)
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_NODE_DESC;
> if (mlx4_is_master(dev->dev))
> mad_ifc_flags |= MLX4_MAD_IFC_NET_VIEW;
> diff --git a/drivers/infiniband/hw/mlx5/mad.c b/drivers/infiniband/hw/mlx5/mad.c
> index 29a888b22789..293ed709e5ed 100644
> --- a/drivers/infiniband/hw/mlx5/mad.c
> +++ b/drivers/infiniband/hw/mlx5/mad.c
> @@ -291,7 +291,7 @@ int mlx5_query_ext_port_caps(struct mlx5_ib_dev *dev, unsigned int port)
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = MLX5_ATTR_EXTENDED_PORT_INFO;
> in_mad->attr_mod = cpu_to_be32(port);
>
> @@ -318,7 +318,7 @@ static int mlx5_query_mad_ifc_smp_attr_node_info(struct ib_device *ibdev,
> if (!in_mad)
> return -ENOMEM;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
>
> err = mlx5_MAD_IFC(to_mdev(ibdev), 1, 1, 1, NULL, NULL, in_mad,
> @@ -405,7 +405,7 @@ int mlx5_query_mad_ifc_node_desc(struct mlx5_ib_dev *dev, char *node_desc)
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_NODE_DESC;
>
> err = mlx5_MAD_IFC(dev, 1, 1, 1, NULL, NULL, in_mad, out_mad);
> @@ -430,7 +430,7 @@ int mlx5_query_mad_ifc_node_guid(struct mlx5_ib_dev *dev, __be64 *node_guid)
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
>
> err = mlx5_MAD_IFC(dev, 1, 1, 1, NULL, NULL, in_mad, out_mad);
> @@ -456,7 +456,7 @@ int mlx5_query_mad_ifc_pkey(struct ib_device *ibdev, u32 port, u16 index,
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_PKEY_TABLE;
> in_mad->attr_mod = cpu_to_be32(index / 32);
>
> @@ -485,7 +485,7 @@ int mlx5_query_mad_ifc_gids(struct ib_device *ibdev, u32 port, int index,
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
> in_mad->attr_mod = cpu_to_be32(port);
>
> @@ -496,7 +496,7 @@ int mlx5_query_mad_ifc_gids(struct ib_device *ibdev, u32 port, int index,
>
> memcpy(gid->raw, out_mad->data + 8, 8);
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_GUID_INFO;
> in_mad->attr_mod = cpu_to_be32(index / 8);
>
> @@ -530,7 +530,7 @@ int mlx5_query_mad_ifc_port(struct ib_device *ibdev, u32 port,
>
> /* props being zeroed by the caller, avoid zeroing it here */
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
> in_mad->attr_mod = cpu_to_be32(port);
>
> @@ -596,7 +596,7 @@ int mlx5_query_mad_ifc_port(struct ib_device *ibdev, u32 port,
> if (props->active_speed == 4) {
> if (dev->port_caps[port - 1].ext_port_cap &
> MLX_EXT_PORT_CAP_FLAG_EXTENDED_PORT_INFO) {
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = MLX5_ATTR_EXTENDED_PORT_INFO;
> in_mad->attr_mod = cpu_to_be32(port);
>
> diff --git a/drivers/infiniband/hw/mlx5/mlx5_ib.h b/drivers/infiniband/hw/mlx5/mlx5_ib.h
> index 93065492dcb8..8c6cbf7ec7ec 100644
> --- a/drivers/infiniband/hw/mlx5/mlx5_ib.h
> +++ b/drivers/infiniband/hw/mlx5/mlx5_ib.h
> @@ -1456,14 +1456,6 @@ extern const struct uapi_definition mlx5_ib_flow_defs[];
> extern const struct uapi_definition mlx5_ib_qos_defs[];
> extern const struct uapi_definition mlx5_ib_std_types_defs[];
>
> -static inline void init_query_mad(struct ib_smp *mad)
> -{
> - mad->base_version = 1;
> - mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
> - mad->class_version = 1;
> - mad->method = IB_MGMT_METHOD_GET;
> -}
> -
> static inline int is_qp1(enum ib_qp_type qp_type)
> {
> return qp_type == MLX5_IB_QPT_HW_GSI || qp_type == IB_QPT_GSI;
> diff --git a/drivers/infiniband/hw/mthca/mthca_provider.c b/drivers/infiniband/hw/mthca/mthca_provider.c
> index ceee23ebc0f2..c46df53f26cf 100644
> --- a/drivers/infiniband/hw/mthca/mthca_provider.c
> +++ b/drivers/infiniband/hw/mthca/mthca_provider.c
> @@ -50,14 +50,6 @@
> #include <rdma/mthca-abi.h>
> #include "mthca_memfree.h"
>
> -static void init_query_mad(struct ib_smp *mad)
> -{
> - mad->base_version = 1;
> - mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
> - mad->class_version = 1;
> - mad->method = IB_MGMT_METHOD_GET;
> -}
> -
> static int mthca_query_device(struct ib_device *ibdev, struct ib_device_attr *props,
> struct ib_udata *uhw)
> {
> @@ -78,7 +70,7 @@ static int mthca_query_device(struct ib_device *ibdev, struct ib_device_attr *pr
>
> props->fw_ver = mdev->fw_ver;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_NODE_INFO;
>
> err = mthca_MAD_IFC(mdev, 1, 1,
> @@ -140,7 +132,7 @@ static int mthca_query_port(struct ib_device *ibdev,
>
> /* props being zeroed by the caller, avoid zeroing it here */
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
> in_mad->attr_mod = cpu_to_be32(port);
>
> @@ -234,7 +226,7 @@ static int mthca_query_pkey(struct ib_device *ibdev,
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_PKEY_TABLE;
> in_mad->attr_mod = cpu_to_be32(index / 32);
>
> @@ -263,7 +255,7 @@ static int mthca_query_gid(struct ib_device *ibdev, u32 port,
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_PORT_INFO;
> in_mad->attr_mod = cpu_to_be32(port);
>
> @@ -274,7 +266,7 @@ static int mthca_query_gid(struct ib_device *ibdev, u32 port,
>
> memcpy(gid->raw, out_mad->data + 8, 8);
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_GUID_INFO;
> in_mad->attr_mod = cpu_to_be32(index / 8);
>
> @@ -1006,7 +998,7 @@ static int mthca_init_node_data(struct mthca_dev *dev)
> if (!in_mad || !out_mad)
> goto out;
>
> - init_query_mad(in_mad);
> + ib_init_query_mad(in_mad);
> in_mad->attr_id = IB_SMP_ATTR_NODE_DESC;
>
> err = mthca_MAD_IFC(dev, 1, 1,
> diff --git a/include/rdma/ib_smi.h b/include/rdma/ib_smi.h
> index fdb8633cbaff..fc16b826b2c1 100644
> --- a/include/rdma/ib_smi.h
> +++ b/include/rdma/ib_smi.h
> @@ -144,5 +144,15 @@ ib_get_smp_direction(struct ib_smp *smp)
> #define IB_NOTICE_TRAP_DR_NOTICE 0x80
> #define IB_NOTICE_TRAP_DR_TRUNC 0x40
>
> -
> +/**
> + * ib_init_query_mad - Initialize query MAD.
> + * @mad: MAD to initialize.
> + */
> +static inline void ib_init_query_mad(struct ib_smp *mad)
> +{
> + mad->base_version = IB_MGMT_BASE_VERSION;
> + mad->mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
> + mad->class_version = 1;
> + mad->method = IB_MGMT_METHOD_GET;
> +}
> #endif /* IB_SMI_H */
> --
> 2.33.1
>
^ permalink raw reply
* [PATCH v1 33/34] docker: include bison in debian-tricore-cross
From: Alex Bennée @ 2022-01-05 13:50 UTC (permalink / raw)
To: qemu-devel
Cc: fam, Thomas Huth, berrange, Beraldo Leal, Alex Bennée,
Richard Henderson, f4bug, Wainer dos Santos Moschetta, stefanha,
crosa, pbonzini, Philippe Mathieu-Daudé, aurelien
In-Reply-To: <20220105135009.1584676-1-alex.bennee@linaro.org>
From: Paolo Bonzini <pbonzini@redhat.com>
Binutils sometimes fail to build if bison is not installed:
/bin/sh ./ylwrap `test -f arparse.y || echo ./`arparse.y y.tab.c arparse.c y.tab.h arparse.h y.output arparse.output -- -d
./ylwrap: 109: ./ylwrap: -d: not found
(the correct invocation of ylwrap would have "bison -d" after the double
dash). Work around by installing it in the container.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/596
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20211221111624.352804-1-pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
tests/docker/dockerfiles/debian-tricore-cross.docker | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/docker/dockerfiles/debian-tricore-cross.docker b/tests/docker/dockerfiles/debian-tricore-cross.docker
index d8df2c6117..3f6b55562c 100644
--- a/tests/docker/dockerfiles/debian-tricore-cross.docker
+++ b/tests/docker/dockerfiles/debian-tricore-cross.docker
@@ -16,6 +16,7 @@ MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
RUN apt update && \
DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \
DEBIAN_FRONTEND=noninteractive eatmydata apt install -yy \
+ bison \
bzip2 \
ca-certificates \
ccache \
--
2.30.2
^ permalink raw reply related
* Re: [PATCH 0/8] Add low power hibernation support to cs35l41
From: Takashi Iwai @ 2022-01-05 14:07 UTC (permalink / raw)
To: Charles Keepax
Cc: alsa-devel, patches, tiwai, lgirdwood, david.rhodes, broonie
In-Reply-To: <20220105130512.GE18506@ediswmail.ad.cirrus.com>
On Wed, 05 Jan 2022 14:05:12 +0100,
Charles Keepax wrote:
>
> On Wed, Jan 05, 2022 at 01:03:45PM +0100, Takashi Iwai wrote:
> > On Wed, 05 Jan 2022 12:30:18 +0100,
> > Charles Keepax wrote:
> > > Patches 7,8 specifically will cause some very minor conflicts with
> > > Lucas's currently outstanding work on the HDA version of cs35l41.
> > > Whilst things will still build, this patch adds a test key function
> > > his code will now have to call. If his patches are getting merged
> > > first I will respin this series to update his code, he is currently on
> > > holiday until the 12th of Jan, so if we want to wait for another spin
> > > of those patches I can work with him to update them at that time. Or
> > > alternatively we could just merge them all and I will do a quick fixup
> > > patch at the end, since there is no build breakage.
> >
> > FWIW, the ASoC part of Lucas's patch set has been already merged in
> > Mark's asoc tree. (HD-audio part isn't merged yet though).
> >
>
> Yeah its the HDA part that would require a small change after
> those last two patches to call the additional function. The
> series is already based on top of the merged ASoC changes.
Ah, OK, that's what you commented in Lukas's v6 patchset, right?
We can fix it up later after the merge, too.
Right now I'm waiting for the PR from Mark, then will merge v6 patches
(modulo the ACPI one).
thanks,
Takashi
^ permalink raw reply
* [PATCH v1 12/34] tests/docker: auto-generate opensuse-leap.docker with lcitool
From: Alex Bennée @ 2022-01-05 13:49 UTC (permalink / raw)
To: qemu-devel
Cc: fam, Thomas Huth, berrange, Beraldo Leal, Alex Bennée, f4bug,
Wainer dos Santos Moschetta, stefanha, crosa, pbonzini,
Philippe Mathieu-Daudé, aurelien
In-Reply-To: <20220105135009.1584676-1-alex.bennee@linaro.org>
From: Daniel P. Berrangé <berrange@redhat.com>
This commit is best examined using the "-b" option to diff.
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20211215141949.3512719-13-berrange@redhat.com>
---
tests/docker/dockerfiles/opensuse-leap.docker | 245 ++++++++++--------
tests/lcitool/refresh | 1 +
2 files changed, 135 insertions(+), 111 deletions(-)
diff --git a/tests/docker/dockerfiles/opensuse-leap.docker b/tests/docker/dockerfiles/opensuse-leap.docker
index 3bbdb67f4f..5510bdf19c 100644
--- a/tests/docker/dockerfiles/opensuse-leap.docker
+++ b/tests/docker/dockerfiles/opensuse-leap.docker
@@ -1,114 +1,137 @@
+# THIS FILE WAS AUTO-GENERATED
+#
+# $ lcitool dockerfile opensuse-leap-152 qemu
+#
+# https://gitlab.com/libvirt/libvirt-ci
+
FROM registry.opensuse.org/opensuse/leap:15.2
-# Please keep this list sorted alphabetically
-ENV PACKAGES \
- Mesa-devel \
- alsa-lib-devel \
- bc \
- brlapi-devel \
- bzip2 \
- ca-certificates \
- ccache \
- clang \
- ctags \
- cyrus-sasl-devel \
- dbus-1 \
- diffutils \
- findutils \
- gcc \
- gcc-c++ \
- gcovr \
- gettext-runtime \
- git \
- glib2-devel \
- glibc-locale \
- glibc-static \
- glusterfs-devel \
- gtk3-devel \
- hostname \
- jemalloc-devel \
- libSDL2-devel \
- libSDL2_image-devel \
- libaio-devel \
- libasan6 \
- libattr-devel \
- libbpf-devel \
- libbz2-devel \
- libcacard-devel \
- libcap-ng-devel \
- libcurl-devel \
- libdrm-devel \
- libepoxy-devel \
- libfdt-devel \
- libffi-devel \
- libgcrypt-devel \
- libgnutls-devel \
- libiscsi-devel \
- libjpeg8-devel \
- libndctl-devel \
- libnettle-devel \
- libnfs-devel \
- libnuma-devel \
- libpixman-1-0-devel \
- libpmem-devel \
- libpng16-devel \
- libpulse-devel \
- librbd-devel \
- libseccomp-devel \
- libselinux-devel \
- libspice-server-devel \
- libssh-devel \
- libtasn1-devel \
- libubsan1 \
- libudev-devel \
- libusb-1_0-devel \
- libxml2-devel \
- libzstd-devel \
- llvm \
- lttng-ust-devel \
- lzo-devel \
- make \
- mkisofs \
- ncat \
- ncurses-devel \
- ninja \
- openssh \
- pam-devel \
- perl-Test-Harness \
- perl-base \
- pkgconfig \
- python3-Pillow \
- python3-PyYAML \
- python3-Sphinx \
- python3-base \
- python3-numpy \
- python3-opencv \
- python3-pip \
- python3-setuptools \
- python3-sphinx_rtd_theme \
- python3-virtualenv \
- python3-wheel \
- rdma-core-devel \
- rpm \
- sed \
- snappy-devel \
- sparse \
- spice-protocol-devel \
- systemd-devel \
- systemtap-sdt-devel \
- tar \
- tesseract-ocr \
- tesseract-ocr-traineddata-english \
- texinfo \
- usbredir-devel \
- util-linux \
- virglrenderer-devel \
- vte-devel \
- which \
- xen-devel \
- xfsprogs-devel \
- zlib-devel
-ENV QEMU_CONFIGURE_OPTS --python=/usr/bin/python3.6
+RUN zypper update -y && \
+ zypper install -y \
+ Mesa-devel \
+ alsa-lib-devel \
+ bash \
+ bc \
+ brlapi-devel \
+ bzip2 \
+ ca-certificates \
+ ccache \
+ clang \
+ ctags \
+ cyrus-sasl-devel \
+ dbus-1 \
+ diffutils \
+ findutils \
+ gcc \
+ gcc-c++ \
+ gcovr \
+ gettext-runtime \
+ git \
+ glib2-devel \
+ glibc-locale \
+ glibc-static \
+ glusterfs-devel \
+ gtk3-devel \
+ hostname \
+ jemalloc-devel \
+ libSDL2-devel \
+ libSDL2_image-devel \
+ libaio-devel \
+ libasan6 \
+ libattr-devel \
+ libbpf-devel \
+ libbz2-devel \
+ libcacard-devel \
+ libcap-ng-devel \
+ libcurl-devel \
+ libdrm-devel \
+ libepoxy-devel \
+ libfdt-devel \
+ libffi-devel \
+ libgcrypt-devel \
+ libgnutls-devel \
+ libiscsi-devel \
+ libjpeg8-devel \
+ libndctl-devel \
+ libnettle-devel \
+ libnfs-devel \
+ libnuma-devel \
+ libpixman-1-0-devel \
+ libpmem-devel \
+ libpng16-devel \
+ libpulse-devel \
+ librbd-devel \
+ libseccomp-devel \
+ libselinux-devel \
+ libspice-server-devel \
+ libssh-devel \
+ libtasn1-devel \
+ libubsan1 \
+ libudev-devel \
+ liburing-devel \
+ libusb-1_0-devel \
+ libxml2-devel \
+ libzstd-devel \
+ llvm \
+ lttng-ust-devel \
+ lzo-devel \
+ make \
+ mkisofs \
+ ncat \
+ ncurses-devel \
+ ninja \
+ openssh \
+ pam-devel \
+ pcre-devel-static \
+ perl-Test-Harness \
+ perl-base \
+ pkgconfig \
+ python3-Pillow \
+ python3-PyYAML \
+ python3-Sphinx \
+ python3-base \
+ python3-numpy \
+ python3-opencv \
+ python3-pip \
+ python3-setuptools \
+ python3-sphinx_rtd_theme \
+ python3-virtualenv \
+ python3-wheel \
+ rdma-core-devel \
+ rpm \
+ sed \
+ snappy-devel \
+ sparse \
+ spice-protocol-devel \
+ systemd-devel \
+ systemtap-sdt-devel \
+ tar \
+ tesseract-ocr \
+ tesseract-ocr-traineddata-english \
+ texinfo \
+ usbredir-devel \
+ util-linux \
+ virglrenderer-devel \
+ vte-devel \
+ which \
+ xen-devel \
+ xfsprogs-devel \
+ zlib-devel \
+ zlib-devel-static && \
+ zypper clean --all && \
+ rpm -qa | sort > /packages.txt && \
+ mkdir -p /usr/libexec/ccache-wrappers && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/c++ && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/clang && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/g++ && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc
+
+RUN pip3 install \
+ meson==0.56.0
-RUN zypper update -y && zypper --non-interactive install -y $PACKAGES
-RUN rpm -q $PACKAGES | sort > /packages.txt
+ENV LANG "en_US.UTF-8"
+ENV MAKE "/usr/bin/make"
+ENV NINJA "/usr/bin/ninja"
+ENV PYTHON "/usr/bin/python3"
+ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
diff --git a/tests/lcitool/refresh b/tests/lcitool/refresh
index 310bad1315..b8a69cee59 100755
--- a/tests/lcitool/refresh
+++ b/tests/lcitool/refresh
@@ -78,6 +78,7 @@ try:
trailer="".join(ubuntu1804_skipssh))
generate_dockerfile("ubuntu2004", "ubuntu-2004",
trailer="".join(ubuntu2004_tsanhack))
+ generate_dockerfile("opensuse-leap", "opensuse-leap-152")
sys.exit(0)
except Exception as ex:
print(str(ex), file=sys.stderr)
--
2.30.2
^ permalink raw reply related
* [PATCH] git-p4: don't allow cloning into non-empty directories
From: Joel Holdsworth @ 2022-01-05 14:06 UTC (permalink / raw)
To: git, Luke Diamand, Junio C Hamano
Cc: Tzadik Vanderhoof, Dorgon Chang, Joachim Kuebart, Daniel Levin,
Johannes Schindelin, Ben Keene, Andrew Oakley, Joel Holdsworth
Previously, git-p4 would allow users to clone a Perforce repository into
a pre-existing git repository. When attempting this, git-p4 would
download the Perforce commits (a time consuming process), and would fail
at the end during the final git fast-import with a cryptic error
message.
This was easy to do inadvertently when running the same git-p4 clone
command more than once.
This patch changes the behaviour of git-p4.py so that it matches that
of git itself: disallowing all clones into non-empty directories.
Signed-off-by: Joel Holdsworth <jholdsworth@nvidia.com>
---
git-p4.py | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/git-p4.py b/git-p4.py
index cb37545455..e15fbe1486 100755
--- a/git-p4.py
+++ b/git-p4.py
@@ -4099,12 +4099,19 @@ def run(self, args):
if not self.cloneDestination:
self.cloneDestination = self.defaultDestination(args)
- print("Importing from %s into %s" % (', '.join(depotPaths), self.cloneDestination))
-
- if not os.path.exists(self.cloneDestination):
+ if os.path.exists(self.cloneDestination):
+ if (not os.path.isdir(self.cloneDestination) or
+ os.listdir(self.cloneDestination)):
+ die(
+ "fatal: destination path '{}' already exists and is not "
+ "an empty directory.".format(self.cloneDestination))
+ else:
os.makedirs(self.cloneDestination)
chdir(self.cloneDestination)
+ print("Importing from {} into {}".format(
+ ', '.join(depotPaths), self.cloneDestination))
+
init_cmd = [ "git", "init" ]
if self.cloneBare:
init_cmd.append("--bare")
--
2.34.1
^ permalink raw reply related
* stable/linux-4.9.y build: 188 builds: 3 failed, 185 passed, 2 errors, 34 warnings (v4.9.296)
From: kernelci.org bot @ 2022-01-05 14:07 UTC (permalink / raw)
To: stable, kernel-build-reports, kernelci-results
stable/linux-4.9.y build: 188 builds: 3 failed, 185 passed, 2 errors, 34 warnings (v4.9.296)
Full Build Summary: https://kernelci.org/build/stable/branch/linux-4.9.y/kernel/v4.9.296/
Tree: stable
Branch: linux-4.9.y
Git Describe: v4.9.296
Git Commit: 710bf39c7aec32641ea63f6593db1df8c3e4a4d7
Git URL: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
Built: 6 unique architectures
Build Failures Detected:
arm:
rpc_defconfig: (gcc-10) FAIL
mips:
ip27_defconfig: (gcc-10) FAIL
ip28_defconfig: (gcc-10) FAIL
Errors and Warnings Detected:
arc:
arm64:
arm:
mini2440_defconfig (gcc-10): 1 warning
omap1_defconfig (gcc-10): 1 warning
rpc_defconfig (gcc-10): 2 errors
s3c2410_defconfig (gcc-10): 1 warning
i386:
allnoconfig (gcc-10): 3 warnings
i386_defconfig (gcc-10): 3 warnings
tinyconfig (gcc-10): 3 warnings
mips:
mtx1_defconfig (gcc-10): 3 warnings
x86_64:
allnoconfig (gcc-10): 5 warnings
tinyconfig (gcc-10): 4 warnings
x86_64_defconfig (gcc-10): 5 warnings
x86_64_defconfig+x86-chromebook (gcc-10): 5 warnings
Errors summary:
1 arm-linux-gnueabihf-gcc: error: unrecognized -march target: armv3
1 arm-linux-gnueabihf-gcc: error: missing argument to ‘-march=’
Warnings summary:
7 ld: warning: creating DT_TEXTREL in a PIE
7 arch/x86/kernel/process.c:460: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr'
4 ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text'
4 arch/x86/entry/entry_64.S:1565: Warning: no instruction mnemonic suffix given and no register operands; using default for `sysret'
3 ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text'
3 arch/x86/entry/entry_32.S:452: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr'
2 sound/pci/echoaudio/echoaudio_dsp.c:647:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations]
2 drivers/tty/serial/samsung.c:1786:34: warning: array ‘s3c24xx_uart_dt_match’ assumed to have one element
1 sound/pci/echoaudio/echoaudio_dsp.c:658:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations]
1 drivers/gpio/gpio-omap.c:1135:34: warning: array ‘omap_gpio_match’ assumed to have one element
Section mismatches summary:
2 WARNING: modpost: Found 1 section mismatch(es).
================================================================================
Detailed per-defconfig build reports:
--------------------------------------------------------------------------------
acs5k_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
acs5k_tiny_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (i386, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches
Warnings:
arch/x86/entry/entry_32.S:452: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr'
ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text'
ld: warning: creating DT_TEXTREL in a PIE
--------------------------------------------------------------------------------
allnoconfig (x86_64, gcc-10) — PASS, 0 errors, 5 warnings, 0 section mismatches
Warnings:
arch/x86/entry/entry_64.S:1565: Warning: no instruction mnemonic suffix given and no register operands; using default for `sysret'
arch/x86/kernel/process.c:460: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr'
arch/x86/kernel/process.c:460: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr'
ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text'
ld: warning: creating DT_TEXTREL in a PIE
--------------------------------------------------------------------------------
allnoconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
allnoconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
am200epdkit_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ar7_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
aspeed_g4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
aspeed_g5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
assabet_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
at91_dt_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ath25_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ath79_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
axm55xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
axs103_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
axs103_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
badge4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bcm2835_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bcm47xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bcm63xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bigsur_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
bmips_be_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
Section mismatches:
WARNING: modpost: Found 1 section mismatch(es).
--------------------------------------------------------------------------------
bmips_stb_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
Section mismatches:
WARNING: modpost: Found 1 section mismatch(es).
--------------------------------------------------------------------------------
capcella_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cavium_octeon_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cerfcube_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ci20_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cm_x2xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cm_x300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
cobalt_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
colibri_pxa270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
colibri_pxa300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
collie_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
corgi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
davinci_all_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
db1xxx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
decstation_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
defconfig (arm64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
defconfig+arm64-chromebook (arm64, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
dove_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
e55_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ebsa110_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
efm32_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
em_x270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ep93xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
eseries_pxa_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
exynos_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ezx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
footbridge_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
fuloong2e_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
gpr_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
h3600_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
h5000_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
hackkit_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
hisi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
i386_defconfig (i386, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches
Warnings:
arch/x86/entry/entry_32.S:452: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr'
ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text'
ld: warning: creating DT_TEXTREL in a PIE
--------------------------------------------------------------------------------
imote2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
imx_v4_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
imx_v6_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
integrator_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
iop13xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
iop32x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
iop33x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ip22_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ip27_defconfig (mips, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ip28_defconfig (mips, gcc-10) — FAIL, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ip32_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ixp4xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
jazz_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
jmr3927_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
jornada720_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
keystone_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
ks8695_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lart_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lasat_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lemote2f_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
loongson1b_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
loongson1c_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
loongson3_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lpc18xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lpc32xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lpd270_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
lubbock_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
magician_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mainstone_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
malta_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
malta_kvm_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
malta_kvm_guest_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
malta_qemu_32r6_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
maltaaprp_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
maltasmvp_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
maltasmvp_eva_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
maltaup_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
maltaup_xpa_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
markeins_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mini2440_defconfig (arm, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
drivers/tty/serial/samsung.c:1786:34: warning: array ‘s3c24xx_uart_dt_match’ assumed to have one element
--------------------------------------------------------------------------------
mips_paravirt_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mmp2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mpc30x_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mps2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
msp71xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mtx1_defconfig (mips, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches
Warnings:
sound/pci/echoaudio/echoaudio_dsp.c:647:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations]
sound/pci/echoaudio/echoaudio_dsp.c:658:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations]
sound/pci/echoaudio/echoaudio_dsp.c:647:9: warning: iteration 1073741824 invokes undefined behavior [-Waggressive-loop-optimizations]
--------------------------------------------------------------------------------
multi_v4t_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
multi_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
multi_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mvebu_v5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mvebu_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
mxs_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
neponset_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
netwinder_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
netx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nhk8815_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nlm_xlp_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nlm_xlr_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nsim_hs_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nsim_hs_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nsimosci_hs_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nsimosci_hs_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc910_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc950_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
nuc960_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
omap1_defconfig (arm, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
drivers/gpio/gpio-omap.c:1135:34: warning: array ‘omap_gpio_match’ assumed to have one element
--------------------------------------------------------------------------------
omap2plus_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
orion5x_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
palmz72_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pcm027_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pic32mzda_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pleb_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pnx8335_stb225_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
prima2_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa168_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa255-idp_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa3xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa910_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
pxa_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
qcom_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
qi_lb60_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
raumfeld_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rb532_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rbtx49xx_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
realview_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rm200_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
rpc_defconfig (arm, gcc-10) — FAIL, 2 errors, 0 warnings, 0 section mismatches
Errors:
arm-linux-gnueabihf-gcc: error: unrecognized -march target: armv3
arm-linux-gnueabihf-gcc: error: missing argument to ‘-march=’
--------------------------------------------------------------------------------
rt305x_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
s3c2410_defconfig (arm, gcc-10) — PASS, 0 errors, 1 warning, 0 section mismatches
Warnings:
drivers/tty/serial/samsung.c:1786:34: warning: array ‘s3c24xx_uart_dt_match’ assumed to have one element
--------------------------------------------------------------------------------
s3c6400_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
s5pv210_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sama5_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sb1250_swarm_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
shannon_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
shmobile_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
simpad_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
socfpga_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spear13xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spear3xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spear6xx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
spitz_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
stm32_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
sunxi_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tb0219_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tb0226_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tb0287_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tct_hammer_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tegra_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (i386, gcc-10) — PASS, 0 errors, 3 warnings, 0 section mismatches
Warnings:
arch/x86/entry/entry_32.S:452: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr'
ld: arch/x86/boot/compressed/head_32.o: warning: relocation in read-only section `.head.text'
ld: warning: creating DT_TEXTREL in a PIE
--------------------------------------------------------------------------------
tinyconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
tinyconfig (x86_64, gcc-10) — PASS, 0 errors, 4 warnings, 0 section mismatches
Warnings:
arch/x86/entry/entry_64.S:1565: Warning: no instruction mnemonic suffix given and no register operands; using default for `sysret'
arch/x86/kernel/process.c:460: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr'
ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text'
ld: warning: creating DT_TEXTREL in a PIE
--------------------------------------------------------------------------------
tinyconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
trizeps4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
u300_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
u8500_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vdk_hs38_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vdk_hs38_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
versatile_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vexpress_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vf610m4_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
viper_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
vt8500_v6_v7_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
workpad_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
x86_64_defconfig (x86_64, gcc-10) — PASS, 0 errors, 5 warnings, 0 section mismatches
Warnings:
arch/x86/entry/entry_64.S:1565: Warning: no instruction mnemonic suffix given and no register operands; using default for `sysret'
arch/x86/kernel/process.c:460: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr'
arch/x86/kernel/process.c:460: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr'
ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text'
ld: warning: creating DT_TEXTREL in a PIE
--------------------------------------------------------------------------------
x86_64_defconfig+x86-chromebook (x86_64, gcc-10) — PASS, 0 errors, 5 warnings, 0 section mismatches
Warnings:
arch/x86/entry/entry_64.S:1565: Warning: no instruction mnemonic suffix given and no register operands; using default for `sysret'
arch/x86/kernel/process.c:460: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr'
arch/x86/kernel/process.c:460: Warning: no instruction mnemonic suffix given and no register operands; using default for `btr'
ld: arch/x86/boot/compressed/head_64.o: warning: relocation in read-only section `.head.text'
ld: warning: creating DT_TEXTREL in a PIE
--------------------------------------------------------------------------------
xcep_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
xilfpga_defconfig (mips, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
zebu_hs_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
zebu_hs_smp_defconfig (arc, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
zeus_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
--------------------------------------------------------------------------------
zx_defconfig (arm, gcc-10) — PASS, 0 errors, 0 warnings, 0 section mismatches
---
For more info write to <info@kernelci.org>
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
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.