From stse at fsing.rootsland.net Wed Jul 1 11:09:00 2015 From: stse at fsing.rootsland.net (Stephan Seitz) Date: Wed, 1 Jul 2015 13:09:00 +0200 Subject: [Pkg-xen-devel] Bug#785187: Bug#785187: xen-hypervisor-4.5-amd64: Option ucode=scan is not working In-Reply-To: <1432036071.12989.89.camel@debian.org> References: <20150513T101737.GA.80186.stse@fsing.rootsland.net> <1431524470.8263.276.camel@debian.org> <20150513155755.GC15812@l.oracle.com> <20150514T224249.GA.bb576.stse@fsing.rootsland.net> <1431674802.5748.39.camel@debian.org> <20150519T132815.GA.6f97a.stse@fsing.rootsland.net> <1432036071.12989.89.camel@debian.org> Message-ID: <20150701T130614.GA.8d32b.stse@fsing.rootsland.net> Hi Ian & Co! Any new ideas about this bug? I?m not sure if this is a bug in the hypervisor or in the tools generating the initrd. The manual steps provided by Ian generate a working initrd. Many greetings, Stephan -- | Stephan Seitz E-Mail: stse at fsing.rootsland.net | | Public Keys: http://fsing.rootsland.net/~stse/keys.html | -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3735 bytes Desc: not available URL: From ian.campbell at citrix.com Wed Jul 1 14:43:07 2015 From: ian.campbell at citrix.com (Ian Campbell) Date: Wed, 1 Jul 2015 15:43:07 +0100 Subject: [Pkg-xen-devel] Bug#785187: [PATCH] xen: earlycpio: Pull in latest linux earlycpio.[ch] In-Reply-To: <20150527T223106.GA.0c286.stse@fsing.rootsland.net> References: <20150527T223106.GA.0c286.stse@fsing.rootsland.net> Message-ID: <1435761787-5176-1-git-send-email-ian.campbell@citrix.com> AFAICT our current version does not correspond to any version in the Linux history. This commit resynchronised to the state in Linux commit 598bae70c2a8e35c8d39b610cca2b32afcf047af. Differences from upstream: find_cpio_data is __init, printk instead of pr_*. This appears to fix Debian bug #785187. "Appears" because my test box happens to be AMD and the issue is that the (valid) cpio generated by the Intel ucode is not liked by the old Xen code. I've tested by hacking the hypervisor to look for the Intel path. Reported-by: Stephan Seitz Signed-off-by: Ian Campbell Cc: Konrad Rzeszutek Wilk Cc: Jan Beulich Cc: Stephan Seitz Cc: 785187 at bugs.debian.org --- This should be backported. --- xen/common/earlycpio.c | 39 ++++++++++++++++++++------------------- xen/include/xen/earlycpio.h | 1 + 2 files changed, 21 insertions(+), 19 deletions(-) diff --git a/xen/common/earlycpio.c b/xen/common/earlycpio.c index 5e54142..f6b1a9e 100644 --- a/xen/common/earlycpio.c +++ b/xen/common/earlycpio.c @@ -54,25 +54,26 @@ enum cpio_fields { /** * cpio_data find_cpio_data - Search for files in an uncompressed cpio - * @path: The directory to search for, including a slash at the end - * @data: Pointer to the the cpio archive or a header inside - * @len: Remaining length of the cpio based on data pointer - * @offset: When a matching file is found, this is the offset to the - * beginning of the cpio. It can be used to iterate through - * the cpio to find all files inside of a directory path + * @path: The directory to search for, including a slash at the end + * @data: Pointer to the the cpio archive or a header inside + * @len: Remaining length of the cpio based on data pointer + * @nextoff: When a matching file is found, this is the offset from the + * beginning of the cpio to the beginning of the next file, not the + * matching file itself. It can be used to iterate through the cpio + * to find all files inside of a directory path. * - * @return: struct cpio_data containing the address, length and - * filename (with the directory path cut off) of the found file. - * If you search for a filename and not for files in a directory, - * pass the absolute path of the filename in the cpio and make sure - * the match returned an empty filename string. + * @return: struct cpio_data containing the address, length and + * filename (with the directory path cut off) of the found file. + * If you search for a filename and not for files in a directory, + * pass the absolute path of the filename in the cpio and make sure + * the match returned an empty filename string. */ struct cpio_data __init find_cpio_data(const char *path, void *data, - size_t len, long *offset) + size_t len, long *nextoff) { const size_t cpio_header_len = 8*C_NFIELDS - 2; - struct cpio_data cd = { NULL, 0 }; + struct cpio_data cd = { NULL, 0, "" }; const char *p, *dptr, *nptr; unsigned int ch[C_NFIELDS], *chp, v; unsigned char c, x; @@ -129,17 +130,17 @@ struct cpio_data __init find_cpio_data(const char *path, void *data, if ((ch[C_MODE] & 0170000) == 0100000 && ch[C_NAMESIZE] >= mypathsize && !memcmp(p, path, mypathsize)) { - *offset = (long)nptr - (long)data; + *nextoff = (long)nptr - (long)data; if (ch[C_NAMESIZE] - mypathsize >= MAX_CPIO_FILE_NAME) { printk( "File %s exceeding MAX_CPIO_FILE_NAME [%d]\n", p, MAX_CPIO_FILE_NAME); } - if (ch[C_NAMESIZE] - 1 /* includes \0 */ == mypathsize) { - cd.data = (void *)dptr; - cd.size = ch[C_FILESIZE]; - return cd; /* Found it! */ - } + strlcpy(cd.name, p + mypathsize, MAX_CPIO_FILE_NAME); + + cd.data = (void *)dptr; + cd.size = ch[C_FILESIZE]; + return cd; /* Found it! */ } len -= (nptr - p); p = nptr; diff --git a/xen/include/xen/earlycpio.h b/xen/include/xen/earlycpio.h index 85d144a..16d9404 100644 --- a/xen/include/xen/earlycpio.h +++ b/xen/include/xen/earlycpio.h @@ -6,6 +6,7 @@ struct cpio_data { void *data; size_t size; + char name[MAX_CPIO_FILE_NAME]; }; struct cpio_data find_cpio_data(const char *path, void *data, size_t len, -- 1.7.10.4 From websites at web.websitesforsaleworld.net Thu Jul 2 06:54:53 2015 From: websites at web.websitesforsaleworld.net (websites at web.websitesforsaleworld.net) Date: Thu, 02 Jul 2015 02:54:53 -0400 Subject: [Pkg-xen-devel] Fraud Protection Alert Message-ID: <1435820092.18157.qmail@welcome.com> From: "American Express" Content-Type: text/html

Valued Member,

Your online security is important to us. That is why we are committed to safeguarding your personal information to keep it secure and confidential.

We detected irregular activity on your Account on 02/07/2015. For your protection, online banking has been locked because the number of attempts to sign in exceeded the number allowed.
We are sorry to inform you that your online account has been temporarily locked after too many unsuccessful login attempts was made.

To strengthen the security measures protecting your account,we have added additional security.Will review and verify the activity on your account with you and take necessary steps to protect your account from fraud.

Please click the link below to activate your account:

Activate your account
IMPORTANT INFORMATION
Please update your American Express on our secured server.
(If you cannot click on the link, please move the message into the Inbox)

Thank you for your continued Card Membership.

Sincerely,
The American Express Customer Service Team Message-ID: From ftpmaster at ftp-master.debian.org Sun Jul 5 10:07:23 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Sun, 05 Jul 2015 10:07:23 +0000 Subject: [Pkg-xen-devel] Processing of blktap_2.0.90-4_source.changes Message-ID: blktap_2.0.90-4_source.changes uploaded successfully to localhost along with the files: blktap_2.0.90-4.dsc blktap_2.0.90.orig.tar.gz blktap_2.0.90-4.debian.tar.xz Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Sun Jul 5 10:18:58 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Sun, 05 Jul 2015 10:18:58 +0000 Subject: [Pkg-xen-devel] blktap_2.0.90-4_source.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Format: 1.8 Date: Tue, 30 Jun 2015 12:28:20 +0300 Source: blktap Binary: blktap-dev blktap-utils libvhd0 libvhdio-2.0.90 libblktapctl0 Architecture: source Version: 2.0.90-4 Distribution: unstable Urgency: medium Maintainer: PKG Xen Devel Changed-By: Chrysostomos Nanakos Description: blktap-dev - Xen API blktap shared library (development files) blktap-utils - utilities to work with VHD disk images files libblktapctl0 - Xen API blktapctl shared library (shared library) libvhd0 - VHD file format access library libvhdio-2.0.90 - Xen API blktap shared library (shared library) Closes: 777801 Changes: blktap (2.0.90-4) unstable; urgency=medium . * Fix FTBFS with GCC-5 (Closes: Bug#777801). Thanks to Matthias Klose for reporting. * Lintian cleaning. Checksums-Sha1: 5a6c4dbdb342caa1b23b9029681bda55c781b680 2243 blktap_2.0.90-4.dsc f5c1e09e7ece3a9698827170c5155b54c04c91ce 235286 blktap_2.0.90.orig.tar.gz a0ecdcda10e4717ed1090f36fba21538fd566699 6724 blktap_2.0.90-4.debian.tar.xz Checksums-Sha256: ca3f14e3a5dd17aa9d3e93c94348ebf5a653fb719ce6309279de19d7f0285537 2243 blktap_2.0.90-4.dsc a2a46a6c114ad4041802fd805a97cb66856003f6e3c1f157907b934fdf4c40ee 235286 blktap_2.0.90.orig.tar.gz e4c4cd4b0e76e79df0b4fbdf7a2d7e51072e27a6d23b44c750e70ddd79fba66f 6724 blktap_2.0.90-4.debian.tar.xz Files: b368fe0923e0857aa812caeb82ea0f27 2243 libs extra blktap_2.0.90-4.dsc 6fd456d0ab7ec1210bf64c5a0d6bde33 235286 libs extra blktap_2.0.90.orig.tar.gz 33a854cae0145a202897087370e99cbf 6724 libs extra blktap_2.0.90-4.debian.tar.xz -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJVmPpLAAoJEIc96jCdE4B/4eYP/1senmHFjhC28rp3NbYFQzdc F8UauNC7BoWO+D6/0NTh4e4vVOPDhN54PShyuY9gaA78kxDb1viSj1OY1PoJqIr+ GDlFnptEvDhNKe4et0qh+D8KRyTr6PXlRNKRLDDQ9r02Al7SszitcrSvqKKmgxbD aFdp4nyZm8x9ScHIMzR6YZwrjSBpvzZJ9HiYbFPJipmA8JnDGLR/mYAmVXcPNmin XEygvUOuimq9SawtPt2NielMUPT9OjPb25XwcERqwuluq4f9KlB4guo7nTApBwfJ 2uUm0ZlfRy1/ot+Q3J08vw/Cybmc/W1sddMxLW7V2Ktl9S3lKgCTbmPrBwHlknA/ 14UTwxjOGE3RhucDWdxdQ3sRc41Ae0nG/aPs2uPg6Gv/ATH7SfzMydgqfKbE7Uew dbplX3LWZKvgQy3wi/9YfxqxguEEH0sgADjzvjMa2ZrJXp8vl9E+fY/7hOPbMux7 LzhCi7ZEbizwJXlOy86j8DTFvpZ8C5gcdjqG2GT1V1/edC1bAUAGt11ReVydPUGB 26XG9TVtRAHXRvhZBmToxpc0aAwV4D7ThSn/lqeX3bBuJUUlkqfjIHr25+gx2hOD zg3FA5APgiz6svCiR/LYY9JIN11XM96GfUGadhioCRRYGA8iY3vjtgGyINS1KuWT 7A5DwZLzY/fqmC2BaXEa =8Oq9 -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From owner at bugs.debian.org Sun Jul 5 10:21:04 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 05 Jul 2015 10:21:04 +0000 Subject: [Pkg-xen-devel] Bug#777801: marked as done (blktap: ftbfs with GCC-5) References: Message-ID: Your message dated Sun, 05 Jul 2015 10:18:58 +0000 with message-id and subject line Bug#777801: fixed in blktap 2.0.90-4 has caused the Debian Bug report #777801, regarding blktap: ftbfs with GCC-5 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 777801: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=777801 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Matthias Klose Subject: blktap: ftbfs with GCC-5 Date: Thu, 12 Feb 2015 10:30:20 +0000 Size: 7500 URL: -------------- next part -------------- An embedded message was scrubbed... From: Chrysostomos Nanakos Subject: Bug#777801: fixed in blktap 2.0.90-4 Date: Sun, 05 Jul 2015 10:18:58 +0000 Size: 5399 URL: From langqing at outmkt.abweey.com Sun Jul 5 13:21:32 2015 From: langqing at outmkt.abweey.com (=?utf-8?B?5rWq55C05omL6KGo?=) Date: Sun, 5 Jul 2015 21:21:32 +0800 (CST) Subject: [Pkg-xen-devel] =?utf-8?b?TE9OR0lORVPmtarnkLTlkI3ljKDns7vliJc=?= =?utf-8?b?77yM5YWo5Zu95YyF6YKu77yM5LiA5oqY56eS5p2A?= Message-ID: <20150705132159.DC616227275D@apex.min74.elifez.com> An HTML attachment was scrubbed... URL: From JBeulich at suse.com Mon Jul 6 16:00:25 2015 From: JBeulich at suse.com (Jan Beulich) Date: Mon, 06 Jul 2015 17:00:25 +0100 Subject: [Pkg-xen-devel] Bug#785187: [PATCH] xen: earlycpio: Pull in latest linux earlycpio.[ch] In-Reply-To: <1435761787-5176-1-git-send-email-ian.campbell@citrix.com> References: <20150527T223106.GA.0c286.stse@fsing.rootsland.net> <1435761787-5176-1-git-send-email-ian.campbell@citrix.com> Message-ID: <559AC239020000780008CE2A@mail.emea.novell.com> >>> On 01.07.15 at 16:43, wrote: > AFAICT our current version does not correspond to any version in the > Linux history. This commit resynchronised to the state in Linux > commit 598bae70c2a8e35c8d39b610cca2b32afcf047af. > > Differences from upstream: find_cpio_data is __init, printk instead of > pr_*. > > This appears to fix Debian bug #785187. "Appears" because my test box > happens to be AMD and the issue is that the (valid) cpio generated by > the Intel ucode is not liked by the old Xen code. I've tested by > hacking the hypervisor to look for the Intel path. > > Reported-by: Stephan Seitz > Signed-off-by: Ian Campbell Not that it really matters for a Linux import refresh, but anyway: Acked-by: Jan Beulich From ian.campbell at citrix.com Tue Jul 7 15:18:35 2015 From: ian.campbell at citrix.com (Ian Campbell) Date: Tue, 7 Jul 2015 16:18:35 +0100 Subject: [Pkg-xen-devel] Bug#785187: [Xen-devel] [PATCH] xen: earlycpio: Pull in latest linux earlycpio.[ch] In-Reply-To: <559AC239020000780008CE2A@mail.emea.novell.com> References: <20150527T223106.GA.0c286.stse@fsing.rootsland.net> <1435761787-5176-1-git-send-email-ian.campbell@citrix.com> <559AC239020000780008CE2A@mail.emea.novell.com> Message-ID: <1436282315.25646.244.camel@citrix.com> On Mon, 2015-07-06 at 17:00 +0100, Jan Beulich wrote: > >>> On 01.07.15 at 16:43, wrote: > > AFAICT our current version does not correspond to any version in the > > Linux history. This commit resynchronised to the state in Linux > > commit 598bae70c2a8e35c8d39b610cca2b32afcf047af. > > > > Differences from upstream: find_cpio_data is __init, printk instead of > > pr_*. > > > > This appears to fix Debian bug #785187. "Appears" because my test box > > happens to be AMD and the issue is that the (valid) cpio generated by > > the Intel ucode is not liked by the old Xen code. I've tested by > > hacking the hypervisor to look for the Intel path. > > > > Reported-by: Stephan Seitz > > Signed-off-by: Ian Campbell > > Not that it really matters for a Linux import refresh, but anyway: > Acked-by: Jan Beulich Applied, thanks. Please could you also queue this for the next appropriate stable release(s). Ian. From owner at bugs.debian.org Tue Jul 7 15:39:04 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Tue, 07 Jul 2015 15:39:04 +0000 Subject: [Pkg-xen-devel] Processed: tagging 785187 References: <1436283353-4096-bts-ijc@debian.org> Message-ID: Processing commands for control at bugs.debian.org: > tags 785187 + fixed-upstream Bug #785187 [xen-hypervisor-4.5-amd64] xen-hypervisor-4.5-amd64: Option ucode=scan is not working Added tag(s) fixed-upstream. > thanks Stopping processing here. Please contact me if you need assistance. -- 785187: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785187 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From noreply at release.debian.org Sat Jul 11 16:39:13 2015 From: noreply at release.debian.org (Debian testing watch) Date: Sat, 11 Jul 2015 16:39:13 +0000 Subject: [Pkg-xen-devel] blktap 2.0.90-4 MIGRATED to testing Message-ID: FYI: The status of the blktap source package in Debian's testing distribution has changed. Previous version: 2.0.90-3 Current version: 2.0.90-4 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See https://release.debian.org/testing-watch/ for more information. From ian.campbell at citrix.com Mon Jul 13 12:31:23 2015 From: ian.campbell at citrix.com (Ian Campbell) Date: Mon, 13 Jul 2015 13:31:23 +0100 Subject: [Pkg-xen-devel] Bug#784880: [PATCH for-4.6] tools: libxl: Handle failure to create qemu dm logfile Message-ID: <1436790683-14599-1-git-send-email-ian.campbell@citrix.com> If libxl_create_logfile fails for some reason then libxl__create_qemu_logfile previously just carried on and dereferenced the uninitialised logfile. Check for the error from libxl_create_logfile, which has already logged for us. This was reported as Debian bug #784880. Reported-by: Russell Coker Signed-off-by: Ian Campbell Cc: 784880 at bugs.debian.org --- Should be backported. --- tools/libxl/libxl_dm.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c index ad434f0..8ed2d2e 100644 --- a/tools/libxl/libxl_dm.c +++ b/tools/libxl/libxl_dm.c @@ -46,9 +46,11 @@ static const char *qemu_xen_path(libxl__gc *gc) static int libxl__create_qemu_logfile(libxl__gc *gc, char *name) { char *logfile; - int logfile_w; + int rc, logfile_w; + + rc = libxl_create_logfile(CTX, name, &logfile); + if (rc) return rc; - libxl_create_logfile(CTX, name, &logfile); logfile_w = open(logfile, O_WRONLY|O_CREAT|O_APPEND, 0644); free(logfile); -- 2.1.4 From wei.liu2 at citrix.com Mon Jul 13 13:07:53 2015 From: wei.liu2 at citrix.com (Wei Liu) Date: Mon, 13 Jul 2015 14:07:53 +0100 Subject: [Pkg-xen-devel] Bug#784880: [PATCH for-4.6] tools: libxl: Handle failure to create qemu dm logfile In-Reply-To: <1436790683-14599-1-git-send-email-ian.campbell@citrix.com> References: <1436790683-14599-1-git-send-email-ian.campbell@citrix.com> Message-ID: <20150713130753.GG4108@zion.uk.xensource.com> On Mon, Jul 13, 2015 at 01:31:23PM +0100, Ian Campbell wrote: > If libxl_create_logfile fails for some reason then > libxl__create_qemu_logfile previously just carried on and dereferenced > the uninitialised logfile. > > Check for the error from libxl_create_logfile, which has already > logged for us. > > This was reported as Debian bug #784880. > > Reported-by: Russell Coker > Signed-off-by: Ian Campbell > Cc: 784880 at bugs.debian.org Acked-by: Wei Liu > --- > Should be backported. > --- > tools/libxl/libxl_dm.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c > index ad434f0..8ed2d2e 100644 > --- a/tools/libxl/libxl_dm.c > +++ b/tools/libxl/libxl_dm.c > @@ -46,9 +46,11 @@ static const char *qemu_xen_path(libxl__gc *gc) > static int libxl__create_qemu_logfile(libxl__gc *gc, char *name) > { > char *logfile; > - int logfile_w; > + int rc, logfile_w; > + > + rc = libxl_create_logfile(CTX, name, &logfile); > + if (rc) return rc; > > - libxl_create_logfile(CTX, name, &logfile); > logfile_w = open(logfile, O_WRONLY|O_CREAT|O_APPEND, 0644); > free(logfile); > > -- > 2.1.4 From dameon.wagner at it.ox.ac.uk Mon Jul 13 16:06:56 2015 From: dameon.wagner at it.ox.ac.uk (Dameon Wagner) Date: Mon, 13 Jul 2015 17:06:56 +0100 Subject: [Pkg-xen-devel] Bug#783346: Bug#783346: Bug#783346: patch for booting Jessie domU with wheezy dom0 In-Reply-To: <20150426093316.GB4825@mail.waldi.eu.org> Message-ID: <20150713160656.GB10262@maia.oucs.ox.ac.uk> On Sun, 26 Apr 2015 11:33:17 +0200 Bastian Blank wrote: > On Sun, Apr 26, 2015 at 10:50:16AM +0200, Daniel Pocock wrote: > > On 26/04/15 10:45, Bastian Blank wrote: > > > Well, if you can pursuade the release team. We have grub2 for > > > Xen in Jessie now and it can be used on Wheezy as well. > > Can you be more specific? If somebody is running a wheezy dom0 > > and they install grub2 in their domU before rebooting it the first > > time, they will not have this problem? > > You install grub-xen-host on the dom0 and point the domains to grub > as kernel. For 64bit guests (kernel wise): > | kernel = '/usr/lib/grub-xen/grub-x86_64-xen.bin' > For 32bit guests: > | kernel = '/usr/lib/grub-xen/grub-i386-xen.bin' > > Bastian Package: xen-utils-4.1 Version: 4.1.4-3+deb7u8 Tags: patch Hi, I've just hit a similar bug with using pygrub to boot jessie VMs on a wheezy Dom0, and stumbled on this bug after fixing things with a (very similar to Daniel's) patch backported from xen-utils-4.4, which should be attached. I've tested it and it works like a treat. I appreciate that we could install "grub-xen-host" as suggested, but I'd rather not install anything additional when it could be fixed simply with a small backport, especially with "grub-xen-host" not actually being available in the wheezy repositories. The issue we're seeing is slightly different to what Daniel originally reported -- though the fix is basically the same -- so please let me know if you'd rather I report it as a new bug. What we're seeing is the following error: #---8<----------------------------------------------------------------- # xm create -c /etc/xen/domains/normal/$VM Using config file "/etc/xen/domains/normal/$VM". Error: Boot loader didn't return any data! #---8<----------------------------------------------------------------- Manually editing grub.cfg to remove the `if [ "${next_entry}" ]; then` clause and replacing it with a simple `set default="0"` is a kludgy workaround, but it falls down as soon as something invokes `update-grub`. This is with 4.1.4-3+deb7u8, but please let me know if you need any additional info, and I'll see what I can dig up. Cheers. Dameon. -- ><> ><> ><> ><> ><> ><> ooOoo <>< <>< <>< <>< <>< <>< Dr. Dameon Wagner, Systems Development and Support IT Services, University of Oxford ><> ><> ><> ><> ><> ><> ooOoo <>< <>< <>< <>< <>< <>< -------------- next part -------------- A non-text attachment was scrubbed... Name: pygrub-jessie-on-wheezy-dom0-fix.patch Type: text/x-diff Size: 526 bytes Desc: not available URL: From owner at bugs.debian.org Tue Jul 14 13:27:16 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Tue, 14 Jul 2015 13:27:16 +0000 Subject: [Pkg-xen-devel] Processed: reassign 399073 to src:xen, reassign 407142 to src:xen, reassign 414040 to src:xen ... References: <1436880271-3420-bts-anbe@debian.org> Message-ID: Processing commands for control at bugs.debian.org: > # reassigning all open bugs reported against versioned xen packages that are no longer in the archive to src:xen > reassign 399073 src:xen 3.0.3-0-2 Bug #399073 [xen-hypervisor-3.0.3-1-i386] xen-hypervisor-3.0.3-1-i386: dom0 crashes with a domU that define more than 6 vdb Warning: Unknown package 'xen-hypervisor-3.0.3-1-i386' Bug reassigned from package 'xen-hypervisor-3.0.3-1-i386' to 'src:xen'. No longer marked as found in versions xen-3.0/3.0.3-0-2. Ignoring request to alter fixed versions of bug #399073 to the same values previously set Bug #399073 [src:xen] xen-hypervisor-3.0.3-1-i386: dom0 crashes with a domU that define more than 6 vdb The source 'xen' and version '3.0.3-0-2' do not appear to match any binary packages Marked as found in versions xen/3.0.3-0-2. > reassign 407142 src:xen 3.0.3-0-2 Bug #407142 [xen-utils-3.0.3-1] Missing shared lib path in xen-utils-wrapper? Warning: Unknown package 'xen-utils-3.0.3-1' Bug reassigned from package 'xen-utils-3.0.3-1' to 'src:xen'. Ignoring request to alter found versions of bug #407142 to the same values previously set Ignoring request to alter fixed versions of bug #407142 to the same values previously set Bug #407142 [src:xen] Missing shared lib path in xen-utils-wrapper? The source 'xen' and version '3.0.3-0-2' do not appear to match any binary packages Marked as found in versions xen/3.0.3-0-2. > reassign 414040 src:xen 3.0.3-0-2 Bug #414040 [xen-hypervisor-3.0.3-1-amd64] kernel: xen_net: Memory squeeze in netback driver. Warning: Unknown package 'xen-hypervisor-3.0.3-1-amd64' Bug reassigned from package 'xen-hypervisor-3.0.3-1-amd64' to 'src:xen'. No longer marked as found in versions xen-3.0/3.0.3-0-2. Ignoring request to alter fixed versions of bug #414040 to the same values previously set Bug #414040 [src:xen] kernel: xen_net: Memory squeeze in netback driver. The source 'xen' and version '3.0.3-0-2' do not appear to match any binary packages Marked as found in versions xen/3.0.3-0-2. > reassign 439156 src:xen 3.0.3-0-2 Bug #439156 [xen-hypervisor-3.0.3-1-amd64] xen-hypervisor-3.0.3-1-amd64: large memory not detected Warning: Unknown package 'xen-hypervisor-3.0.3-1-amd64' Bug reassigned from package 'xen-hypervisor-3.0.3-1-amd64' to 'src:xen'. No longer marked as found in versions xen-3.0/3.0.3-0-2. Ignoring request to alter fixed versions of bug #439156 to the same values previously set Bug #439156 [src:xen] xen-hypervisor-3.0.3-1-amd64: large memory not detected The source 'xen' and version '3.0.3-0-2' do not appear to match any binary packages Marked as found in versions xen/3.0.3-0-2. > reassign 441539 src:xen 3.0.3-0-2 Bug #441539 [xen-hypervisor-3.0.3-1-amd64] xen-hypervisor-3.0.3-1-amd64: Xen failing to boot with FATAL TRAP error Warning: Unknown package 'xen-hypervisor-3.0.3-1-amd64' Bug reassigned from package 'xen-hypervisor-3.0.3-1-amd64' to 'src:xen'. No longer marked as found in versions xen-3.0/3.0.3-0-2. Ignoring request to alter fixed versions of bug #441539 to the same values previously set Bug #441539 [src:xen] xen-hypervisor-3.0.3-1-amd64: Xen failing to boot with FATAL TRAP error The source 'xen' and version '3.0.3-0-2' do not appear to match any binary packages Marked as found in versions xen/3.0.3-0-2. > reassign 477525 src:xen 3.2.0-5 Bug #477525 [xen-utils-3.2-1] xend with network-route fails to start, missing $vifnum Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.0-5 and xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #477525 to the same values previously set Bug #477525 [src:xen] xend with network-route fails to start, missing $vifnum The source 'xen' and version '3.2.0-5' do not appear to match any binary packages Marked as found in versions xen/3.2.0-5. > found 477525 3.2.1-2 Bug #477525 [src:xen] xend with network-route fails to start, missing $vifnum The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 512337 src:xen 3.0.3-0-4 Bug #512337 [xen-hypervisor-3.0.3-1-i386-pae] xen-hypervisor: One GNU libc test fails in a Xen environment Warning: Unknown package 'xen-hypervisor-3.0.3-1-i386-pae' Bug reassigned from package 'xen-hypervisor-3.0.3-1-i386-pae' to 'src:xen'. No longer marked as found in versions xen-3.0/3.0.3-0-4. Ignoring request to alter fixed versions of bug #512337 to the same values previously set Bug #512337 [src:xen] xen-hypervisor: One GNU libc test fails in a Xen environment The source 'xen' and version '3.0.3-0-4' do not appear to match any binary packages Marked as found in versions xen/3.0.3-0-4. > thanks Stopping processing here. Please contact me if you need assistance. -- 399073: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=399073 407142: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=407142 414040: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=414040 439156: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=439156 441539: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=441539 477525: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477525 512337: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=512337 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From owner at bugs.debian.org Tue Jul 14 13:58:06 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Tue, 14 Jul 2015 13:58:06 +0000 Subject: [Pkg-xen-devel] Processed: reassign 514918 to src:xen, reassign 516610 to src:xen, reassign 517007 to src:xen ... References: <1436881997-3185-bts-anbe@debian.org> Message-ID: Processing commands for control at bugs.debian.org: > # reassigning all open bugs reported against versioned xen packages that are no longer in the archive to src:xen > reassign 514918 src:xen 3.3-unstable+hg17961-1 Bug #514918 [xen-utils-unstable] xen-utils-unstable: xend starts with errors Warning: Unknown package 'xen-utils-unstable' Bug reassigned from package 'xen-utils-unstable' to 'src:xen'. No longer marked as found in versions xen-unstable/3.3-unstable+hg17961-1. Ignoring request to alter fixed versions of bug #514918 to the same values previously set Bug #514918 [src:xen] xen-utils-unstable: xend starts with errors The source 'xen' and version '3.3-unstable+hg17961-1' do not appear to match any binary packages Marked as found in versions xen/3.3-unstable+hg17961-1. > reassign 516610 src:xen 3.2.1-2 Bug #516610 [xen-hypervisor-3.2-1-amd64] xen-hypervisor-3.2-1-amd64: Xen hypervisor does not boot on Core2 Duo CPU P8600 Warning: Unknown package 'xen-hypervisor-3.2-1-amd64' Bug reassigned from package 'xen-hypervisor-3.2-1-amd64' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #516610 to the same values previously set Bug #516610 [src:xen] xen-hypervisor-3.2-1-amd64: Xen hypervisor does not boot on Core2 Duo CPU P8600 The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 517007 src:xen 3.2.1-2 Bug #517007 [xen-utils-3.2-1] xen-utils-3.2-1: tap:aio on disk image files is not usable Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #517007 to the same values previously set Bug #517007 [src:xen] xen-utils-3.2-1: tap:aio on disk image files is not usable The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 525169 src:xen 3.2.1-2 Bug #525169 [xen-utils-3.2-1] xen-utils-3.2-1: FreeBSD (possbly others) do not work in Xen 3.2-1 due to real mode emulation bugs Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #525169 to the same values previously set Bug #525169 [src:xen] xen-utils-3.2-1: FreeBSD (possbly others) do not work in Xen 3.2-1 due to real mode emulation bugs The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 535150 src:xen 3.2.1-2 Bug #535150 [xen-hypervisor-3.2-1-i386] xen-hypervisor-3.2-1-i386: xen hvm Windows Bluescreen Warning: Unknown package 'xen-hypervisor-3.2-1-i386' Bug reassigned from package 'xen-hypervisor-3.2-1-i386' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #535150 to the same values previously set Bug #535150 [src:xen] xen-hypervisor-3.2-1-i386: xen hvm Windows Bluescreen The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 536720 src:xen Bug #536720 [xen-utils-3.2-1] xen-utils-3.2-1: Missing import statement / Syntax Errors in XendPBD.py Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. Ignoring request to alter found versions of bug #536720 to the same values previously set Ignoring request to alter fixed versions of bug #536720 to the same values previously set > reassign 545224 src:xen Bug #545224 [xen-hypervisor] grub-pc: Makes xen-hypervisor-3.2-1-amd64 hang with "early fatal page fault" on boot Warning: Unknown package 'xen-hypervisor' Bug reassigned from package 'xen-hypervisor' to 'src:xen'. Ignoring request to alter found versions of bug #545224 to the same values previously set Ignoring request to alter fixed versions of bug #545224 to the same values previously set > reassign 566012 src:xen 3.2.1-2 Bug #566012 [xen-hypervisor-3.2-1-i386] xen-hypervisor-3.2-1-i386: Hypervisor crash Warning: Unknown package 'xen-hypervisor-3.2-1-i386' Bug reassigned from package 'xen-hypervisor-3.2-1-i386' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #566012 to the same values previously set Bug #566012 [src:xen] xen-hypervisor-3.2-1-i386: Hypervisor crash The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 582363 src:xen 3.4.3~rc6-1 Bug #582363 [xen-utils-3.4] xen-utils-3.4: blktapctrl not started by default Warning: Unknown package 'xen-utils-3.4' Bug reassigned from package 'xen-utils-3.4' to 'src:xen'. No longer marked as found in versions xen-3/3.4.3~rc6-1. Ignoring request to alter fixed versions of bug #582363 to the same values previously set Bug #582363 [src:xen] xen-utils-3.4: blktapctrl not started by default The source 'xen' and version '3.4.3~rc6-1' do not appear to match any binary packages Marked as found in versions xen/3.4.3~rc6-1. > reassign 582364 src:xen 3.4.3~rc6-1 Bug #582364 [xen-utils-3.4] xen-utils-3.4: blktapctrl doesn't start Warning: Unknown package 'xen-utils-3.4' Bug reassigned from package 'xen-utils-3.4' to 'src:xen'. No longer marked as found in versions xen-3/3.4.3~rc6-1. Ignoring request to alter fixed versions of bug #582364 to the same values previously set Bug #582364 [src:xen] xen-utils-3.4: blktapctrl doesn't start The source 'xen' and version '3.4.3~rc6-1' do not appear to match any binary packages Marked as found in versions xen/3.4.3~rc6-1. > reassign 586670 src:xen 3.4.3-1 Bug #586670 [xen-hypervisor-3.4-i386] xen-hypervisor-3.4-i386: xserver does not work on i386 system in dom0, while works on amd64 system Warning: Unknown package 'xen-hypervisor-3.4-i386' Bug reassigned from package 'xen-hypervisor-3.4-i386' to 'src:xen'. No longer marked as found in versions xen-3/3.4.3-1. Ignoring request to alter fixed versions of bug #586670 to the same values previously set Bug #586670 [src:xen] xen-hypervisor-3.4-i386: xserver does not work on i386 system in dom0, while works on amd64 system The source 'xen' and version '3.4.3-1' do not appear to match any binary packages Marked as found in versions xen/3.4.3-1. > reassign 605778 src:xen 3.2.1-2 Bug #605778 [xen-utils-3.2-1] xen-utils-3.2-1: python-xml dependency isn't satified Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #605778 to the same values previously set Bug #605778 [src:xen] xen-utils-3.2-1: python-xml dependency isn't satified The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 618576 src:xen 3.2.1-2 Bug #618576 [xen-hypervisor-3.2-1-amd64] xen-3.2-1: VNC display over HVM XEN 3/Lenny AMD64, displays a blank screen when Debian-Installer Squeeze AMD64 is running on it Warning: Unknown package 'xen-hypervisor-3.2-1-amd64' Bug reassigned from package 'xen-hypervisor-3.2-1-amd64' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #618576 to the same values previously set Bug #618576 [src:xen] xen-3.2-1: VNC display over HVM XEN 3/Lenny AMD64, displays a blank screen when Debian-Installer Squeeze AMD64 is running on it The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 509890 src:xen 3.2.1-2 Bug #509890 [xen-utils-3.2-1] xen-utils-3.2-1: qemu-dm is on amd64 not built for xenfv and xenpv Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #509890 to the same values previously set Bug #509890 [src:xen] xen-utils-3.2-1: qemu-dm is on amd64 not built for xenfv and xenpv The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 502123 src:xen 3.3-unstable+hg17961-1 Bug #502123 [xen-utils-unstable] xen-utils-unstable: Debian patch breaks paravirtualized guest initrd Warning: Unknown package 'xen-utils-unstable' Bug reassigned from package 'xen-utils-unstable' to 'src:xen'. No longer marked as found in versions xen-unstable/3.3-unstable+hg17961-1. Ignoring request to alter fixed versions of bug #502123 to the same values previously set Bug #502123 [src:xen] xen-utils-unstable: Debian patch breaks paravirtualized guest initrd The source 'xen' and version '3.3-unstable+hg17961-1' do not appear to match any binary packages Marked as found in versions xen/3.3-unstable+hg17961-1. > reassign 554805 src:xen 3.2.1-2 Bug #554805 [xen-utils-3.2-1] xen-utils-3.2-1: ioemu routed networking on HVM guests fails Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #554805 to the same values previously set Bug #554805 [src:xen] xen-utils-3.2-1: ioemu routed networking on HVM guests fails The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 609517 src:xen 3.2.1-2 Bug #609517 [xen-utils-3.2-1] xen-utils-3.2-1: Pygrub can't find grub.conf in a reiserfs partion on amd64 arch Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #609517 to the same values previously set Bug #609517 [src:xen] xen-utils-3.2-1: Pygrub can't find grub.conf in a reiserfs partion on amd64 arch The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 403105 src:xen 3.0.3-0-2 Bug #403105 [xen-utils-3.0.3-1] lomount not in path - lot of xen utils in /usr/lib/.../bin dir and therefore not accessible Warning: Unknown package 'xen-utils-3.0.3-1' Bug reassigned from package 'xen-utils-3.0.3-1' to 'src:xen'. No longer marked as found in versions xen-3.0/3.0.3-0-2. Ignoring request to alter fixed versions of bug #403105 to the same values previously set Bug #403105 [src:xen] lomount not in path - lot of xen utils in /usr/lib/.../bin dir and therefore not accessible The source 'xen' and version '3.0.3-0-2' do not appear to match any binary packages Marked as found in versions xen/3.0.3-0-2. > reassign 418244 src:xen 3.0.3-0-2 Bug #418244 [xen-utils-3.0.3-1] xentrace fails - can't load libxenctrl.so Warning: Unknown package 'xen-utils-3.0.3-1' Bug reassigned from package 'xen-utils-3.0.3-1' to 'src:xen'. No longer marked as found in versions xen-3.0/3.0.3-0-2. Ignoring request to alter fixed versions of bug #418244 to the same values previously set Bug #418244 [src:xen] xentrace fails - can't load libxenctrl.so The source 'xen' and version '3.0.3-0-2' do not appear to match any binary packages Marked as found in versions xen/3.0.3-0-2. > reassign 421825 src:xen 3.0.3-0-2 Bug #421825 [xen-utils-3.0.3-1] xen-utils-3.0.3-1: blktap is missing Warning: Unknown package 'xen-utils-3.0.3-1' Bug reassigned from package 'xen-utils-3.0.3-1' to 'src:xen'. No longer marked as found in versions xen-3.0/3.0.3-0-2. Ignoring request to alter fixed versions of bug #421825 to the same values previously set Bug #421825 [src:xen] xen-utils-3.0.3-1: blktap is missing The source 'xen' and version '3.0.3-0-2' do not appear to match any binary packages Marked as found in versions xen/3.0.3-0-2. > reassign 442380 src:xen 3.1.0-2 Bug #442380 [xen-utils-3.2-1] xen-utils-3.1-1: reenabled blktap support unusable Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. Ignoring request to alter found versions of bug #442380 to the same values previously set Ignoring request to alter fixed versions of bug #442380 to the same values previously set Bug #442380 [src:xen] xen-utils-3.1-1: reenabled blktap support unusable The source 'xen' and version '3.1.0-2' do not appear to match any binary packages Marked as found in versions xen/3.1.0-2. > reassign 445965 src:xen 3.1.0-2 Bug #445965 [xen-utils-3.2-1] xen-utils-3.1-1: qemu-dm.debug looks for qemu-dm at wrong place Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. Ignoring request to alter found versions of bug #445965 to the same values previously set Ignoring request to alter fixed versions of bug #445965 to the same values previously set Bug #445965 [src:xen] xen-utils-3.1-1: qemu-dm.debug looks for qemu-dm at wrong place The source 'xen' and version '3.1.0-2' do not appear to match any binary packages Marked as found in versions xen/3.1.0-2. > reassign 446114 src:xen 3.1.0-2 Bug #446114 [xen-utils-3.2-1] xen-utils-3.1-1: build gdbserver Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. Ignoring request to alter found versions of bug #446114 to the same values previously set Ignoring request to alter fixed versions of bug #446114 to the same values previously set Bug #446114 [src:xen] xen-utils-3.1-1: build gdbserver The source 'xen' and version '3.1.0-2' do not appear to match any binary packages Marked as found in versions xen/3.1.0-2. > reassign 494727 src:xen 3.2.1-2 Bug #494727 [xen-utils-3.2-1] xen-utils-3.2-1: Fail to define a new domain. Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #494727 to the same values previously set Bug #494727 [src:xen] xen-utils-3.2-1: Fail to define a new domain. The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 500047 src:xen 3.0.3-0-4 Bug #500047 [xen-utils-3.0.3-1] xen-utils-3.0.3-1: domU reboot fails when using DRBD as vbd Warning: Unknown package 'xen-utils-3.0.3-1' Bug reassigned from package 'xen-utils-3.0.3-1' to 'src:xen'. No longer marked as found in versions xen-3.0/3.0.3-0-4. Ignoring request to alter fixed versions of bug #500047 to the same values previously set Bug #500047 [src:xen] xen-utils-3.0.3-1: domU reboot fails when using DRBD as vbd The source 'xen' and version '3.0.3-0-4' do not appear to match any binary packages Marked as found in versions xen/3.0.3-0-4. > reassign 500557 src:xen 3.0.3-0-4 Bug #500557 [xen-utils-3.0.3-1] xen-utils-3.0.3-1: pygrub boot not working Warning: Unknown package 'xen-utils-3.0.3-1' Bug reassigned from package 'xen-utils-3.0.3-1' to 'src:xen'. No longer marked as found in versions xen-3.0/3.0.3-0-4. Ignoring request to alter fixed versions of bug #500557 to the same values previously set Bug #500557 [src:xen] xen-utils-3.0.3-1: pygrub boot not working The source 'xen' and version '3.0.3-0-4' do not appear to match any binary packages Marked as found in versions xen/3.0.3-0-4. > reassign 503046 src:xen 3.2.1-2 Bug #503046 [xen-utils-3.2-1] xen-utils-3.2-1: inadequate error handling for the case of a failure to use a loopback device Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #503046 to the same values previously set Bug #503046 [src:xen] xen-utils-3.2-1: inadequate error handling for the case of a failure to use a loopback device The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 507020 src:xen 3.2.1-2 Bug #507020 [xen-utils-3.2-1] xen-utils-3.2-1: Pygrub says "Error: Boot loader didn't return any data!" Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #507020 to the same values previously set Bug #507020 [src:xen] xen-utils-3.2-1: Pygrub says "Error: Boot loader didn't return any data!" The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 508139 src:xen 3.2.1-2 Bug #508139 [xen-utils-3.2-1] HVM guests can't be used because there is no /usr/lib/xen folder Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #508139 to the same values previously set Bug #508139 [src:xen] HVM guests can't be used because there is no /usr/lib/xen folder The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 512491 src:xen 3.2.1-2 Bug #512491 [xen-utils-3.2-1] xen-utils-3.2-1: xc_save segfaults during migration Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #512491 to the same values previously set Bug #512491 [src:xen] xen-utils-3.2-1: xc_save segfaults during migration The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 520629 src:xen 3.2.1-2 Bug #520629 [xen-hypervisor-3.2-1-amd64] xen-hypervisor-3.2-1-amd64: Intel e1000 network card emulation Warning: Unknown package 'xen-hypervisor-3.2-1-amd64' Bug reassigned from package 'xen-hypervisor-3.2-1-amd64' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #520629 to the same values previously set Bug #520629 [src:xen] xen-hypervisor-3.2-1-amd64: Intel e1000 network card emulation The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 520641 src:xen 3.2.1-2 Bug #520641 [xen-utils-3.2-1] Cannot create HVM domain Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #520641 to the same values previously set Bug #520641 [src:xen] Cannot create HVM domain The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 532603 src:xen 3.2.1-2 Bug #532603 [xen-utils-3.2-1] xen-utils-3.2-1: incorrectly calls network-script Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #532603 to the same values previously set Bug #532603 [src:xen] xen-utils-3.2-1: incorrectly calls network-script The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 562703 src:xen 3.4.2-2 Bug #562703 [xen-utils-3.4] qemu-dm missing from xen-utils-3.4 Warning: Unknown package 'xen-utils-3.4' Bug reassigned from package 'xen-utils-3.4' to 'src:xen'. No longer marked as found in versions xen-3/3.4.2-2. Ignoring request to alter fixed versions of bug #562703 to the same values previously set Bug #562703 [src:xen] qemu-dm missing from xen-utils-3.4 The source 'xen' and version '3.4.2-2' do not appear to match any binary packages Marked as found in versions xen/3.4.2-2. > reassign 573574 src:xen 3.4.3~rc3-1 Bug #573574 [xen-hypervisor-3.4-i386] xen-hypervisor-3.4-i386: xen-hypervisor does not boot inside KVM machine Warning: Unknown package 'xen-hypervisor-3.4-i386' Bug reassigned from package 'xen-hypervisor-3.4-i386' to 'src:xen'. No longer marked as found in versions xen-3/3.4.3~rc3-1. Ignoring request to alter fixed versions of bug #573574 to the same values previously set Bug #573574 [src:xen] xen-hypervisor-3.4-i386: xen-hypervisor does not boot inside KVM machine The source 'xen' and version '3.4.3~rc3-1' do not appear to match any binary packages Marked as found in versions xen/3.4.3~rc3-1. > reassign 629489 src:xen 4.0.1-2 Bug #629489 [xen-hypervisor] Xen system hang and can't boot with xen-hypervisor-4.0-i386 Warning: Unknown package 'xen-hypervisor' Bug reassigned from package 'xen-hypervisor' to 'src:xen'. No longer marked as found in versions 4.0.1-2. Ignoring request to alter fixed versions of bug #629489 to the same values previously set Bug #629489 [src:xen] Xen system hang and can't boot with xen-hypervisor-4.0-i386 Marked as found in versions xen/4.0.1-2. > reassign 578173 src:xen Bug #578173 [xen-utils-3.2-1] virtinst or libvirt loses contact with console during installation Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. Ignoring request to alter found versions of bug #578173 to the same values previously set Ignoring request to alter fixed versions of bug #578173 to the same values previously set > reassign 369042 src:xen Bug #369042 [xen-utils-3.0.3-1] xen-utils-3.0: does not work with 32.bit userspace and 64-bit kernel Warning: Unknown package 'xen-utils-3.0.3-1' Bug reassigned from package 'xen-utils-3.0.3-1' to 'src:xen'. Ignoring request to alter found versions of bug #369042 to the same values previously set Ignoring request to alter fixed versions of bug #369042 to the same values previously set > reassign 506407 src:xen 3.2.1-2 Bug #506407 [xen-utils-3.2-1] /etc/init.d/xend doesn't terminate all processes Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #506407 to the same values previously set Bug #506407 [src:xen] /etc/init.d/xend doesn't terminate all processes The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 366216 src:xen 3.0.2+hg9656-1 Bug #366216 [xen-utils-3.0.3-1] vif-bridge: offlining the interface fails because interface already offline Warning: Unknown package 'xen-utils-3.0.3-1' Bug reassigned from package 'xen-utils-3.0.3-1' to 'src:xen'. Ignoring request to alter found versions of bug #366216 to the same values previously set Ignoring request to alter fixed versions of bug #366216 to the same values previously set Bug #366216 [src:xen] vif-bridge: offlining the interface fails because interface already offline The source 'xen' and version '3.0.2+hg9656-1' do not appear to match any binary packages Marked as found in versions xen/3.0.2+hg9656-1. > reassign 414471 src:xen 3.0.3-0-2 Bug #414471 [xen-hypervisor-3.0.3-1-i386-pae] xen-hypervisor-3.0.3-1-i386-pae: small bug in package description Warning: Unknown package 'xen-hypervisor-3.0.3-1-i386-pae' Bug reassigned from package 'xen-hypervisor-3.0.3-1-i386-pae' to 'src:xen'. No longer marked as found in versions xen-3.0/3.0.3-0-2. Ignoring request to alter fixed versions of bug #414471 to the same values previously set Bug #414471 [src:xen] xen-hypervisor-3.0.3-1-i386-pae: small bug in package description The source 'xen' and version '3.0.3-0-2' do not appear to match any binary packages Marked as found in versions xen/3.0.3-0-2. > reassign 491793 src:xen 3.2.1-2 Bug #491793 [xen-hypervisor-3.2-1-i386] xen-hypervisor-3.2-1-i386: should update GRUB with a trigger Warning: Unknown package 'xen-hypervisor-3.2-1-i386' Bug reassigned from package 'xen-hypervisor-3.2-1-i386' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #491793 to the same values previously set Bug #491793 [src:xen] xen-hypervisor-3.2-1-i386: should update GRUB with a trigger The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 585371 src:xen 3.4.3-1 Bug #585371 [xen-utils-3.4] xen-utils-3.4: Python string exceptions no more allowed in Python 2.6 Warning: Unknown package 'xen-utils-3.4' Bug reassigned from package 'xen-utils-3.4' to 'src:xen'. No longer marked as found in versions xen-3/3.4.3-1. Ignoring request to alter fixed versions of bug #585371 to the same values previously set Bug #585371 [src:xen] xen-utils-3.4: Python string exceptions no more allowed in Python 2.6 The source 'xen' and version '3.4.3-1' do not appear to match any binary packages Marked as found in versions xen/3.4.3-1. > reassign 507186 src:xen 3.2.1-2 Bug #507186 [xen-utils-3.2-1] xen-utils-3.2-1 doesn't package the xen python library correctly Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. No longer marked as found in versions xen-3/3.2.1-2. Ignoring request to alter fixed versions of bug #507186 to the same values previously set Bug #507186 [src:xen] xen-utils-3.2-1 doesn't package the xen python library correctly The source 'xen' and version '3.2.1-2' do not appear to match any binary packages Marked as found in versions xen/3.2.1-2. > reassign 385308 src:xen 3.0.2+hg9697-2 Bug #385308 [xen-utils-3.0.3-1] Please provide way to run xend in the foreground, without daemonizing Warning: Unknown package 'xen-utils-3.0.3-1' Bug reassigned from package 'xen-utils-3.0.3-1' to 'src:xen'. Ignoring request to alter found versions of bug #385308 to the same values previously set Ignoring request to alter fixed versions of bug #385308 to the same values previously set Bug #385308 [src:xen] Please provide way to run xend in the foreground, without daemonizing The source 'xen' and version '3.0.2+hg9697-2' do not appear to match any binary packages Marked as found in versions xen/3.0.2+hg9697-2. > reassign 396556 src:xen 3.0-unstable+hg11561-1 Bug #396556 [xen-utils-3.2-1] Please build gdbserver-xen in the xen-utils package Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. Ignoring request to alter found versions of bug #396556 to the same values previously set Ignoring request to alter fixed versions of bug #396556 to the same values previously set Bug #396556 [src:xen] Please build gdbserver-xen in the xen-utils package The source 'xen' and version '3.0-unstable+hg11561-1' do not appear to match any binary packages Marked as found in versions xen/3.0-unstable+hg11561-1. > reassign 445243 src:xen 3.1.0-2 Bug #445243 [xen-utils-3.2-1] xen-utils-3.1: qemu-dm should be built with alsa support to avoid device locking Warning: Unknown package 'xen-utils-3.2-1' Bug reassigned from package 'xen-utils-3.2-1' to 'src:xen'. Ignoring request to alter found versions of bug #445243 to the same values previously set Ignoring request to alter fixed versions of bug #445243 to the same values previously set Bug #445243 [src:xen] xen-utils-3.1: qemu-dm should be built with alsa support to avoid device locking The source 'xen' and version '3.1.0-2' do not appear to match any binary packages Marked as found in versions xen/3.1.0-2. > thanks Stopping processing here. Please contact me if you need assistance. -- 366216: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=366216 369042: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=369042 385308: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=385308 396556: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=396556 403105: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403105 414471: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=414471 418244: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=418244 421825: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=421825 442380: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=442380 445243: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=445243 445965: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=445965 446114: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=446114 491793: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=491793 494727: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=494727 500047: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=500047 500557: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=500557 502123: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=502123 503046: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=503046 506407: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=506407 507020: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507020 507186: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507186 508139: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508139 509890: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=509890 512491: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=512491 514918: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=514918 516610: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=516610 517007: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=517007 520629: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=520629 520641: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=520641 525169: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525169 532603: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=532603 535150: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=535150 536720: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=536720 545224: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=545224 554805: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=554805 562703: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=562703 566012: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=566012 573574: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=573574 578173: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=578173 582363: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582363 582364: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582364 585371: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=585371 586670: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=586670 605778: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605778 609517: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609517 618576: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=618576 629489: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=629489 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From ian.campbell at citrix.com Wed Jul 15 10:22:41 2015 From: ian.campbell at citrix.com (Ian Campbell) Date: Wed, 15 Jul 2015 11:22:41 +0100 Subject: [Pkg-xen-devel] Bug#784880: [PATCH for-4.6] tools: libxl: Handle failure to create qemu dm logfile In-Reply-To: <20150713130753.GG4108@zion.uk.xensource.com> References: <1436790683-14599-1-git-send-email-ian.campbell@citrix.com> <20150713130753.GG4108@zion.uk.xensource.com> Message-ID: <1436955761.11153.52.camel@citrix.com> On Mon, 2015-07-13 at 14:07 +0100, Wei Liu wrote: > On Mon, Jul 13, 2015 at 01:31:23PM +0100, Ian Campbell wrote: > > If libxl_create_logfile fails for some reason then > > libxl__create_qemu_logfile previously just carried on and dereferenced > > the uninitialised logfile. > > > > Check for the error from libxl_create_logfile, which has already > > logged for us. > > > > This was reported as Debian bug #784880. > > > > Reported-by: Russell Coker > > Signed-off-by: Ian Campbell > > Cc: 784880 at bugs.debian.org > > Acked-by: Wei Liu Applied, thanks. Ian, please: > > Should be backported. > > --- > > tools/libxl/libxl_dm.c | 6 ++++-- > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c > > index ad434f0..8ed2d2e 100644 > > --- a/tools/libxl/libxl_dm.c > > +++ b/tools/libxl/libxl_dm.c > > @@ -46,9 +46,11 @@ static const char *qemu_xen_path(libxl__gc *gc) > > static int libxl__create_qemu_logfile(libxl__gc *gc, char *name) > > { > > char *logfile; > > - int logfile_w; > > + int rc, logfile_w; > > + > > + rc = libxl_create_logfile(CTX, name, &logfile); > > + if (rc) return rc; > > > > - libxl_create_logfile(CTX, name, &logfile); > > logfile_w = open(logfile, O_WRONLY|O_CREAT|O_APPEND, 0644); > > free(logfile); > > > > -- > > 2.1.4 From spam at unlieb.de Fri Jul 17 07:49:36 2015 From: spam at unlieb.de (Andreas Haase) Date: Fri, 17 Jul 2015 09:49:36 +0200 Subject: [Pkg-xen-devel] Bug#782383: Panic: "System without CMOS RTC must be booted from EFI" i.c.w. HP servers Message-ID: Hello, HP offers BIOS firmware updates. After applying these to an affected server, Xen Hypervisor starts normally. -- Regards, Andreas Haase [zu unserer Webseite] Unsere Top-Produkte: ? evolverOAS ? evolverCMS ? evolverSSO ? Themenportale ? evolverGUI Unsere Top-Dienstleistungen: ? Administration & IT ? Service-Center ? garantierte Ressourcen ? Manntage-Pakete ? evolverCLOUD NEU! frag-evolver.de frag-evolver.de ist ein besonderer Service f?r Kunden und Interessenten der evolver group. Hier erfahren Sie mehr. Terminvereinbarung f?r Pr?sentationen und Workshops Sie haben die Wahl, wie wir Ihnen unsere Produkte und Dienstleistungen vorstellen d?rfen. Vereinbaren Sie einen Termin: www.evolver.de/termin. From dschepler at gmail.com Tue Jul 21 15:38:37 2015 From: dschepler at gmail.com (Daniel Schepler) Date: Tue, 21 Jul 2015 08:38:37 -0700 Subject: [Pkg-xen-devel] Bug#793132: xen: FTBFS with glibc 2.21 and gcc-5 Message-ID: <2209166.xJTqq1UTff@frobozz> Source: xen Version: 4.4.1-9 Severity: normal >From my pbuilder build log, using a setup preferring glibc and gcc-defaults from experimental: ... gcc -O2 -fomit-frame-pointer -m64 -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs -DNDEBUG -I/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include -I/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include/asm-x86/mach-generic -I/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include/asm-x86/mach-default -msoft-float -fno-stack-protector -fno-exceptions -Wnested-externs -DHAVE_GAS_VMX -DHAVE_GAS_EPT -DHAVE_GAS_FSGSBASE -mno-red-zone -mno-sse -fpic -fno-asynchronous-unwind-tables -DGCC_HAS_VISIBILITY_ATTRIBUTE -fno-builtin -fno-common -Werror -Wredundant-decls -Wno-pointer-arith -pipe -g -D__XEN__ -include /tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include/xen/config.h -nostdinc -DHAS_ACPI -DHAS_GDBSX -DHAS_PASSTHROUGH -DHAS_PCI -DHAS_IOPORTS -MMD -MF .string.o.d -c string.c -o string.o gcc -O2 -fomit-frame-pointer -m64 -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs -DNDEBUG -I/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include -I/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include/asm-x86/mach-generic -I/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include/asm-x86/mach-default -msoft-float -fno-stack-protector -fno-exceptions -Wnested-externs -DHAVE_GAS_VMX -DHAVE_GAS_EPT -DHAVE_GAS_FSGSBASE -mno-red-zone -mno-sse -fpic -fno-asynchronous-unwind-tables -DGCC_HAS_VISIBILITY_ATTRIBUTE -fno-builtin -fno-common -Werror -Wredundant-decls -Wno-pointer-arith -pipe -g -D__XEN__ -include /tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/include/xen/config.h -nostdinc -DHAS_ACPI -DHAS_GDBSX -DHAS_PASSTHROUGH -DHAS_PCI -DHAS_IOPORTS -MMD -MF .symbols.o.d -c symbols.c -o symbols.o symbols.c: In function 'symbols_lookup': symbols.c:23:61: error: array subscript is above array bounds [-Werror=array-bounds] #define symbols_address(n) (SYMBOLS_ORIGIN + symbols_offsets[n]) ^ symbols.c:128:47: note: in expansion of macro 'symbols_address' while (low && symbols_address(low - 1) == symbols_address(low)) ^ symbols.c:23:61: error: array subscript is above array bounds [-Werror=array-bounds] #define symbols_address(n) (SYMBOLS_ORIGIN + symbols_offsets[n]) ^ symbols.c:136:13: note: in expansion of macro 'symbols_address' if (symbols_address(i) > symbols_address(low)) { ^ cc1: all warnings being treated as errors /tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/Rules.mk:165: recipe for target 'symbols.o' failed make[6]: *** [symbols.o] Error 1 make[6]: Leaving directory '/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/common' /tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/Rules.mk:153: recipe for target '/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/common/built_in.o' failed make[5]: *** [/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/common/built_in.o] Error 2 make[5]: Leaving directory '/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/arch/x86' Makefile:100: recipe for target '/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/xen' failed make[4]: *** [/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen/xen] Error 2 make[4]: Leaving directory '/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen' Makefile:26: recipe for target 'build' failed make[3]: *** [build] Error 2 make[3]: Leaving directory '/tmp/buildd/xen-4.4.1/debian/build/build-hypervisor_amd64_amd64/xen' debian/rules.real:83: recipe for target 'debian/stamps/build-hypervisor_amd64_amd64' failed make[2]: *** [debian/stamps/build-hypervisor_amd64_amd64] Error 2 make[2]: Leaving directory '/tmp/buildd/xen-4.4.1' debian/rules.gen:50: recipe for target 'build-arch_amd64_none_amd64' failed make[1]: *** [build-arch_amd64_none_amd64] Error 2 make[1]: Leaving directory '/tmp/buildd/xen-4.4.1' debian/rules:20: recipe for target 'build-arch' failed make: *** [build-arch] Error 2 dpkg-buildpackage: error: debian/rules build gave error exit status 2 -- Daniel Schepler From andy at strugglers.net Thu Jul 30 09:41:17 2015 From: andy at strugglers.net (Andy Smith) Date: Thu, 30 Jul 2015 09:41:17 +0000 Subject: [Pkg-xen-devel] Bug#794071: "xenconsole: Could not open tty `': No such file or directory" during PV guest boot Message-ID: <20150730094117.GY4243@bitfolk.com> Package: xen-utils-common Version: 4.4.1-9+deb8u1 Severity: normal Dear Maintainer, When booting a PV guest (xl create -c /etc/xen/foo.conf), immediately after pygrub has determined which kernel/initramfs it will use, the following error messages are logged: xenconsole: Could not open tty `': No such file or directory libxl: error: libxl_exec.c:118:libxl_report_child_exitstatus: console child [0] exited with error status 2 The boot does however continue normally including all expected console output from the guest. The resulting console is perfectly usable once the guest's login prompt is reached. Then, once the console is exited with ctrl-], the terminal settings are messed up such that no text is echoed and pressing return does not advance to the next line. Terminal usability can be restored by using "stty sane" or "reset" at this point. Searching the web for the above error messages only reveals people who say that xenconsoled wasn't running, however in this case xenconsoled *is* running (and the console does work, both continuing from the "xl create -c ?" and also if connected to with "xl console ?"). Here is an example guest config: name = "debtest1" memory = 1024 vif = [ "mac=00:16:5e:00:02:39, ip=192.168.82.225, vifname=v-debtest1" ] bootloader = "/usr/lib/xen-default/bin/pygrub" disk = [ "phy:/dev/vg/debtest1_xvda,xvda,w", "phy:/dev/vg/debtest1_xvdb,xvdb,w", ] The kernel command line that pygrub will extract is: linux (kernel )(ramdisk )(args "root=UUID=bb7a41e3-67f4-436a-8a80-07ec26573360 ro console=hvc0") however it happens with all my guests regardless of distribution or version. -- System Information: Debian Release: 8.1 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 3.16.0-4-amd64 (SMP w/16 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages xen-utils-common depends on: ii lsb-base 4.1+Debian13+nmu1 ii python 2.7.9-1 ii ucf 3.0030 ii udev 215-17+deb8u1 ii xenstore-utils 4.4.1-9+deb8u1 xen-utils-common recommends no packages. xen-utils-common suggests no packages. -- Configuration Files: /etc/xen/scripts/vif-route changed [not included] /etc/xen/xl.conf changed [not included] -- no debconf information