[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [xen-unstable-smoke test] 78449: regressions - FAIL
flight 78449 xen-unstable-smoke real [real] http://logs.test-lab.xenproject.org/osstest/logs/78449/ Regressions :-( Tests which did not succeed and are blocking, including tests which could not be run: test-armhf-armhf-xl 6 xen-boot fail REGR. vs. 78441 Tests which did not succeed, but are not blocking: test-amd64-amd64-libvirt 12 migrate-support-check fail never pass version targeted for testing: xen 9fe43a2664cb6a36888220ae67732deafaa3f82b baseline version: xen 0fc47845fa66597a4dab195820a0a3c829c196fa Last test of basis 78441 2016-01-18 16:01:34 Z 0 days Testing same since 78449 2016-01-18 19:01:08 Z 0 days 1 attempts ------------------------------------------------------------ People who touched revisions under test: Daniel De Graaf <dgdegra@xxxxxxxxxxxxx> Doug Goldstein <cardoe@xxxxxxxxxx> Ian Campbell <ian.campbell@xxxxxxxxxx> Ian Jackson <ian.jackson@xxxxxxxxxxxxx> Juergen Gross <jgross@xxxxxxxx> jobs: build-amd64 pass build-armhf pass build-amd64-libvirt pass test-armhf-armhf-xl fail test-amd64-amd64-xl-qemuu-debianhvm-i386 pass test-amd64-amd64-libvirt pass ------------------------------------------------------------ sg-report-flight on osstest.test-lab.xenproject.org logs: /home/logs/logs images: /home/logs/images Logs, config files, etc. are available at http://logs.test-lab.xenproject.org/osstest/logs Explanation of these reports, and of osstest in general, is at http://xenbits.xen.org/gitweb/?p=osstest.git;a=blob;f=README.email;hb=master http://xenbits.xen.org/gitweb/?p=osstest.git;a=blob;f=README;hb=master Test harness code can be found at http://xenbits.xen.org/gitweb?p=osstest.git;a=summary Not pushing. ------------------------------------------------------------ commit 9fe43a2664cb6a36888220ae67732deafaa3f82b Author: Doug Goldstein <cardoe@xxxxxxxxxx> Date: Wed Dec 16 08:41:56 2015 -0600 MAINTAINERS: add myself for kconfig Added myself as the maintainer of kconfig. CC: Ian Campbell <ian.campbell@xxxxxxxxxx> CC: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> CC: Jan Beulich <jbeulich@xxxxxxxx> CC: Keir Fraser <keir@xxxxxxx> CC: Tim Deegan <tim@xxxxxxx> Signed-off-by: Doug Goldstein <cardoe@xxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> commit 1f58f295f39fcbab71174c5abbe7e1f66040bda9 Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:04:04 2016 +0100 docs: document xenstore domain xenstore paths Add the xenstore domain specific xenstore paths to docs/misc/xenstore-paths.markdown Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> commit c5df1c4b5474e1c2197aa1cf96a721a6e113893b Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:04:03 2016 +0100 tools: don't stop xenstore domain when stopping dom0 When restarting or shutting down dom0 the xendomains script tries to stop all other domains. Don't do this for the xenstore domain, as it might survive a dom0 reboot in the future. The same applies to xl shutdown --all. Here the xenstore domain is flagged as "never stop". Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> commit 1367af1cca57e051d6f7b723056a422cc9d4fd46 Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:04:02 2016 +0100 xenstore: write xenstore domain data to xenstore After starting the xenstore domain write the basic data (domid, name and memory values) to the xenstore. This makes the domain appear correctly in xl list. Create a stub json object in order to make e.g. xl list -l happy. Add a new option to init-xenstore-domain to be able to specify the domain's name. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> commit 1a25da88a7c04e511bcd2601a3a4b35fd2c61e52 Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:04:01 2016 +0100 tools: split up xen-init-dom0.c Split up tools/helpers/xen-init-dom0.c in order to prepare reusing generation of the json configuration by init-xenstore-domain.c. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> commit 83c365e6395f39c7ff91785b400682173d5e5d04 Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:04:00 2016 +0100 xenstore: add init-xenstore-domain parameter to specify cmdline Add a parameter to init-xenstore-domain for support of arbitrary parameters for the xenstore domain. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Acked-by: Daniel De Graaf <dgdegra@xxxxxxxxxxxxx> commit 4a30094c0630cbce06ca8b0d1bc58c90bb384497 Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:03:59 2016 +0100 xenstore: make use of the "xenstore domain" flag Create the xenstore domain with the xenstore flag specified. This enables us to test whether such a domain is already running before we create it. As there ought to be only one xenstore in the system we don't need to start another one. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> commit d873eeb39949ec69fa92b10752226f2309c74157 Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:03:58 2016 +0100 xenstore: modify init-xenstore-domain parameter syntax init-xenstore-domain takes only positional parameters today. Change this to a more flexible parameter syntax allowing to specify additional options or to omit some. Today the supported usage is: init-xenstore-domain <xenstore-kernel> <memory_mb> <flask-label> [<ramdisk-file>] Modify this to: init-xenstore-domain --kernel <xenstore-kernel> --memory <memory_mb> [--flask <flask-label>] [--ramdisk <ramdisk-file>] The flask label is made optional in order to support xenstore domains without the need of a flask enabled hypervisor. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> commit befd991a360da2b18226a96c2a1c3c09e0a6577f Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:03:57 2016 +0100 xenstore: add error messages to init-xenstore-domain Additional add some diagnostic messages to the program to have an idea why it failed. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Acked-by: Daniel De Graaf <dgdegra@xxxxxxxxxxxxx> commit 80a6904bdb8644c17963e709d6093190511127ac Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:03:56 2016 +0100 xenstore: destroy xenstore domain in case of error after creating it When creating a xenstore domain via init-xenstore-domain destroy it in case of an error occurred after calling xc_domain_create(). Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Daniel De Graaf <dgdegra@xxxxxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> commit 175f00bcedee5901213fe2e348a3e41edb641146 Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:03:55 2016 +0100 libxl: move xen-init-dom0 to tools/helpers Move xen-init-dom0 from tools/libxl to tools/helpers, as it is just a helper program. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> commit b69191172116fe092cc5d7bc5a77cb5f1d823888 Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:03:54 2016 +0100 xenstore: adjust coding style of init-xenstore-domain.c Adjust the coding style of init-xenstore-domain.c to the general Xen coding style. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> commit 89bf86d1eb4a4f899c3c3ece758991f9bd361448 Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:03:53 2016 +0100 xenstore: move init-xenstore-domain to tools/helpers The program init-xenstore-domain to start a xenstore domain instead of the xenstored daemon is built, but not installed. Change that. Move the program to a new tools subdirectory "helpers" to be able to use libxl in a later patch. Otherwise a dependency loop will be created. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> commit 15a66f1119938c92752589c79eff9ded2c95128a Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:03:52 2016 +0100 libxl: provide a flag in dominfo to avoid stopping it Add a "never_stop" flag to dominfo as indicator for the toolstack that this domain is to be kept running. For now it is being set for xenstore domain, but there might be other domains in the future. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> commit b84357cdafb2d3cfbe2a646c4069fef5959b93e6 Author: Juergen Gross <jgross@xxxxxxxx> Date: Mon Jan 18 09:03:51 2016 +0100 libxc: support new xenstore domain flag in libxc Support the xenstore domain flag for obtaining domain info. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> (qemu changes not included) _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |