From: Platform Team regression test user <citrix-osstest@xenproject.org>
To: xen-devel@lists.xensource.com, osstest-admin@xenproject.org
Subject: [seabios baseline-only test] 38319: tolerable FAIL
Date: Sat, 21 Nov 2015 06:02:30 +0000 [thread overview]
Message-ID: <osstest-38319-mainreport@xen.org> (raw)
This run is configured for baseline tests only.
flight 38319 seabios real [real]
http://osstest.xs.citrite.net/~osstest/testlogs/logs/38319/
Failures :-/ but no regressions.
Regressions which are regarded as allowable (not blocking):
test-amd64-amd64-xl-qemuu-winxpsp3 9 windows-install fail like 38306
Tests which did not succeed, but are not blocking:
test-amd64-amd64-qemuu-nested 16 debian-hvm-install/l1/l2 fail never pass
test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm 10 migrate-support-check fail never pass
test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm 10 migrate-support-check fail never pass
test-amd64-i386-xl-qemuu-win7-amd64 17 guest-stop fail never pass
test-amd64-amd64-xl-qemuu-win7-amd64 17 guest-stop fail never pass
version targeted for testing:
seabios dc8eb671325599f9222b48a3297e584c84d7c3ba
baseline version:
seabios 01a84bea2d28a19d2405c1ecac4bdef17683cc0c
Last test of basis 38306 2015-11-19 00:50:56 Z 2 days
Testing same since 38319 2015-11-21 00:24:05 Z 0 days 1 attempts
------------------------------------------------------------
People who touched revisions under test:
Kevin O'Connor <kevin@koconnor.net>
Stefan Berger <stefanb@linux.vnet.ibm.com>
Stefan Berger <stefanb@us.ibm.com>
jobs:
build-amd64-xsm pass
build-i386-xsm pass
build-amd64 pass
build-i386 pass
build-amd64-libvirt pass
build-i386-libvirt pass
build-amd64-pvops pass
build-i386-pvops pass
test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm pass
test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm pass
test-amd64-amd64-xl-qemuu-debianhvm-amd64-xsm pass
test-amd64-i386-xl-qemuu-debianhvm-amd64-xsm pass
test-amd64-i386-qemuu-rhel6hvm-amd pass
test-amd64-amd64-xl-qemuu-debianhvm-amd64 pass
test-amd64-i386-xl-qemuu-debianhvm-amd64 pass
test-amd64-amd64-xl-qemuu-ovmf-amd64 pass
test-amd64-i386-xl-qemuu-ovmf-amd64 pass
test-amd64-amd64-xl-qemuu-win7-amd64 fail
test-amd64-i386-xl-qemuu-win7-amd64 fail
test-amd64-i386-qemuu-rhel6hvm-intel pass
test-amd64-amd64-qemuu-nested fail
test-amd64-i386-xl-qemuu-winxpsp3-vcpus1 pass
test-amd64-amd64-xl-qemuu-winxpsp3 fail
test-amd64-i386-xl-qemuu-winxpsp3 pass
------------------------------------------------------------
sg-report-flight on osstest.xs.citrite.net
logs: /home/osstest/logs
images: /home/osstest/images
Logs, config files, etc. are available at
http://osstest.xs.citrite.net/~osstest/testlogs/logs
Test harness code can be found at
http://xenbits.xensource.com/gitweb?p=osstest.git;a=summary
Push not applicable.
------------------------------------------------------------
commit dc8eb671325599f9222b48a3297e584c84d7c3ba
Author: Stefan Berger <stefanb@us.ibm.com>
Date: Tue Nov 17 10:55:40 2015 -0500
tpm: fix compiler warning with older gcc versions
gcc v3.4 shows a warning due to "comparison is always false due to
limited range of data type". This patch fixes it.
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
commit 6c376b4688c6ca980adf3b81670e591a3de57902
Author: Stefan Berger <stefanb@linux.vnet.ibm.com>
Date: Thu Nov 12 10:14:49 2015 -0500
tpm: Refactor hash_log_extend_event
Refactor the signature of the hash_log_extend_event to take individual
pointers as parameters and introduce hash_log_extend_event_int as a
function to be called with the parameters passed from the BIOS interrupt.
Refactor existing callers to hash_log_extend_event that now do not
have to build up the data structure expected by the BIOS interface.
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
commit 129c04b79700591a31d80a3708c987c0beb9bee0
Author: Stefan Berger <stefanb@linux.vnet.ibm.com>
Date: Thu Nov 12 10:14:48 2015 -0500
tpm: Refactor hash_log_event BIOS interface function
Refactor the signature of hash_log_event to take individual pointers
as parameters and introduce hash_log_event_int as an function to
be called with the parameters passed from the BIOS interrupt.
Refactor existing callers to hash_log_event that now do not
have to build up the data structures expected by the BIOS interface.
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
commit e3cc632c37857e355317ffe19c2535ed2260a324
Author: Stefan Berger <stefanb@linux.vnet.ibm.com>
Date: Thu Nov 12 10:14:47 2015 -0500
tpm: Refactor the parameters being passed to tpm_extend_acpi_log
Refactor the parameters being passed to tpm_extend_acpi_log in such
a way that the header of the logged event is passed in separate
from the 'body'.
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
commit ece25610aa69c0a3bc0b17cb934b7a9d95add060
Author: Stefan Berger <stefanb@linux.vnet.ibm.com>
Date: Thu Nov 12 10:14:46 2015 -0500
tpm: Refactor function building TPM commands
Refactor the function building TPM commands to get rid of one of
the buffers it uses for building a command. To do that, have it use
the iovec also for the 'append' array that's being passed to the
function.
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
commit 7fce1d9661b29e3dab05b862e95c6cd35d822536
Author: Stefan Berger <stefanb@linux.vnet.ibm.com>
Date: Thu Nov 12 10:14:45 2015 -0500
tpm: Temporarily deactivate the TPM in case of failure
Temporarily deactivate the TPM in case of failure of TPM commands
and failure to log measurements. Introduce the tpm_set_failure()
function replacing occurrences of 'tpm_state.tpm_working = 0' and
invoke it in error paths.
Temporarily deactivating the TPM means that it will be active again
upon reboot.
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
commit 964c77462b5ab7acd1d4c123c1c13f633ab24b1a
Author: Kevin O'Connor <kevin@koconnor.net>
Date: Tue Nov 17 18:52:05 2015 -0500
acpi: Remove build check for iasl
The iasl program is no longer used on a default build. Do not require
it to be installed.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
commit 4373afaef34a76733638edc4e98f355b13c52f10
Author: Kevin O'Connor <kevin@koconnor.net>
Date: Tue Nov 17 18:45:41 2015 -0500
acpi: Don't build SSDT files on every build; store them in git
The SSDT files are rarely modified - recent QEMU versions don't use
them at all and adding features to them in SeaBIOS has been
deprecated. It no longer makes sense to generate them on every build.
The content will remain (for use on old machine types in QEMU) in
static files committed to the SeaBIOS git repo. If the contents do
need to be generated a new build target (make iasl) is available.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
commit b0d3cc36667b68e41ac816caa22802922400e5af
Author: Kevin O'Connor <kevin@koconnor.net>
Date: Tue Nov 17 18:39:17 2015 -0500
acpi_extract: Don't generate unused (and empty) q35-acpi-dsdt.hex file
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
commit 7fdd2fda3fc3ff46b0919e9fd47fcd19561bbb37
Author: Kevin O'Connor <kevin@koconnor.net>
Date: Tue Nov 17 18:36:17 2015 -0500
acpi_extract: Make the generated .hex files more human readable
Add a comment to the top of the generated file indicating that is is
an automatically generated file. Compress output so that up to eight
hex values are placed on a single line.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
commit 1e7d2edab4bd24452fb45c60e8821569ff29c8fa
Author: Kevin O'Connor <kevin@koconnor.net>
Date: Tue Nov 17 18:24:24 2015 -0500
acpi_extract: Move main code to new function main()
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
commit fc0ac95e6e81388b7be79a6d3a77b5831b6f663f
Author: Kevin O'Connor <kevin@koconnor.net>
Date: Tue Nov 17 14:56:04 2015 -0500
sdcard: Enable extra debugging on sdcard_waitw() timeout
On a timeout, report what register failed to update.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
commit 8f7dc5ab820beac980f0d40f3934a5ae04771349
Author: Kevin O'Connor <kevin@koconnor.net>
Date: Tue Nov 17 14:54:11 2015 -0500
sdcard: fix typo causing 32bit write to 16bit block_size field
The block_size field is 16bits and only 16bit writes should be used
with it.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
commit 460e9aac4e1ef88b14a7d44876c43ecfc94f8848
Author: Kevin O'Connor <kevin@koconnor.net>
Date: Tue Nov 17 14:52:23 2015 -0500
sdcard: Only enable error_irq_enable for bits defined in SDHCI v1 spec
The SDHCI v1 spec only defines the first 9 error_irq_enable bits and
reserves other bits in the field. Don't enable the 10th bit (which
was defined in the v2 spec) as it's not needed anyway.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
commit aa34e4e52fb65abb4ef8539660f05b4d52fb1f6f
Author: Kevin O'Connor <kevin@koconnor.net>
Date: Tue Nov 10 08:50:52 2015 -0500
xhci: Check for device disconnects during USB2 reset polling
Some XHCI controllers register super-speed devices on high-speed ports
and then disconnect them when the super-speed detection completes.
Make sure to recognize these disconnect events during the reset
process.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
commit 45b594ab1d0d05903482e818e7c6b2c81b850e54
Author: Kevin O'Connor <kevin@koconnor.net>
Date: Mon Nov 9 12:00:52 2015 -0500
usb: Allow configuration of sigatt time (in etc/usb-time-sigatt)
Several users have reported devices that take more than 100ms to
announce their presence on a USB port. Allow the sigatt timeout to be
specified at runtime as a way to extend the default timeout.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
reply other threads:[~2015-11-21 6:02 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=osstest-38319-mainreport@xen.org \
--to=citrix-osstest@xenproject.org \
--cc=osstest-admin@xenproject.org \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.