Your message dated Fri, 20 Apr 2007 18:47:03 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#418636: fixed in evms 2.5.5-22 has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database)
--- Begin Message ---Package: evms Version: 2.5.5-20 Severity: normal Tags: patch,upstream Hi there, starting somewhere between 2.6.18 and 2.6.19 making snapshots stopped working. The device mapper complains like this: device-mapper: table: 254:52: snapshot: requires exactly 4 arguments EVMS passes one argument more than expected. Apparently the evms patch that actually supported the argument never made it into device mapper. Before 2.6.19 it was ignored, so I assume it's save to just drop it. Attached a patch does that. Juergen PS: also posted upstream ([EMAIL PROTECTED], but awaiting moderator approval). -- Package-specific info: -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.20.5 Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15) Versions of packages evms depends on: ii libc6 2.3.6.ds1-13 GNU C Library: Shared libraries ii libevms-2.5 2.5.5-13 Enterprise Volume Management Syste ii lsb-base 3.1-23.1 Linux Standard Base 3.1 init scrip Versions of packages evms recommends: ii evms-cli 2.5.5-20 Enterprise Volume Management Syste ii evms-ncurses 2.5.5-20 Enterprise Volume Management Syste -- no debconf information--- engine/dm-targets.c.orig 2007-04-10 21:35:29.651723176 +0200 +++ engine/dm-targets.c 2007-04-10 21:35:59.293412360 +0200 @@ -921,14 +921,14 @@ * * Generate an ASCII constructor string for a snapshot target. * A snapshot string has the form: - * <org_major>:<org_minor> <snap_major>:<snap_minor> <p|n> <chunk_size> <org_parent_major>:<org_parent_minor> + * <org_major>:<org_minor> <snap_major>:<snap_minor> <p|n> <chunk_size> **/ static int snapshot_build_params(dm_target_t *target) { dm_target_snapshot_t *snapshot = target->data.snapshot; char *format = (dm_get_version() == 3) ? - "%x:%x %x:%x %c %u %x:%x" : - "%u:%u %u:%u %c %u %u:%u"; + "%x:%x %x:%x %c %u" : + "%u:%u %u:%u %c %u"; int rc = ENOMEM; LOG_PROC_ENTRY(); @@ -938,9 +938,7 @@ snprintf(target->params, 50, format, snapshot->origin.major, snapshot->origin.minor, snapshot->snapshot.major, snapshot->snapshot.minor, - (snapshot->persistent) ? 'p' : 'n', snapshot->chunk_size, - snapshot->origin_parent.major, - snapshot->origin_parent.minor); + (snapshot->persistent) ? 'p' : 'n', snapshot->chunk_size); rc = 0; }
--- End Message ---
--- Begin Message ---Source: evms Source-Version: 2.5.5-22 We believe that the bug you reported is fixed in the latest version of evms, which is due to be installed in the Debian FTP archive: evms-bootdebug_2.5.5-22_all.deb to pool/main/e/evms/evms-bootdebug_2.5.5-22_all.deb evms-cli_2.5.5-22_i386.deb to pool/main/e/evms/evms-cli_2.5.5-22_i386.deb evms-gui_2.5.5-22_i386.deb to pool/main/e/evms/evms-gui_2.5.5-22_i386.deb evms-ha_2.5.5-22_i386.deb to pool/main/e/evms/evms-ha_2.5.5-22_i386.deb evms-ncurses_2.5.5-22_i386.deb to pool/main/e/evms/evms-ncurses_2.5.5-22_i386.deb evms_2.5.5-22.diff.gz to pool/main/e/evms/evms_2.5.5-22.diff.gz evms_2.5.5-22.dsc to pool/main/e/evms/evms_2.5.5-22.dsc evms_2.5.5-22_i386.deb to pool/main/e/evms/evms_2.5.5-22_i386.deb libevms-2.5_2.5.5-22_i386.deb to pool/main/e/evms/libevms-2.5_2.5.5-22_i386.deb libevms-dev_2.5.5-22_i386.deb to pool/main/e/evms/libevms-dev_2.5.5-22_i386.deb linux-patch-evms_2.5.5-22_all.deb to pool/main/e/evms/linux-patch-evms_2.5.5-22_all.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Steinar H. Gunderson <[EMAIL PROTECTED]> (supplier of updated evms package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Fri, 20 Apr 2007 20:18:38 +0200 Source: evms Binary: libevms-dev evms-gui evms linux-patch-evms evms-ha evms-ncurses evms-cli evms-bootdebug libevms-2.5 Architecture: source i386 all Version: 2.5.5-22 Distribution: unstable Urgency: low Maintainer: Steinar H. Gunderson <[EMAIL PROTECTED]> Changed-By: Steinar H. Gunderson <[EMAIL PROTECTED]> Description: evms - Enterprise Volume Management System (core) evms-bootdebug - Enterprise Volume Management System (boot-time debugger) evms-cli - Enterprise Volume Management System (CLI) evms-gui - Enterprise Volume Management System (GUI) evms-ha - Enterprise Volume Management System (high-availability) evms-ncurses - Enterprise Volume Management System (ncurses UI) libevms-2.5 - Enterprise Volume Management System (library) libevms-dev - Enterprise Volume Management System (development) linux-patch-evms - Enterprise Volume Management System (kernel patches) Closes: 418636 Changes: evms (2.5.5-22) unstable; urgency=low . * 14-2.6.19-snapshot.patch: New patch from Juergen E. Fischer, fixes snapshot generation with kernels newer than 2.6.18. (Closes: #418636) Files: e02554faa1e2e96a09febe9903ce60e7 884 admin extra evms_2.5.5-22.dsc 3c404b266bb3fa846cf1492a0f952316 82613 admin extra evms_2.5.5-22.diff.gz 3f1b15c5b4456685be0896eaf652d5db 52286 admin extra linux-patch-evms_2.5.5-22_all.deb 44991e10a0d977d40e5891eafdfa69f1 27192 admin extra evms-bootdebug_2.5.5-22_all.deb 3d6346d740ac389ac4a21eb998b2cfa5 87788 admin extra evms_2.5.5-22_i386.deb f1af93869007c01852833329ee02cef9 88192 admin extra evms-cli_2.5.5-22_i386.deb d549ad6981f6153829105e9f65b8130d 96468 admin extra evms-ncurses_2.5.5-22_i386.deb 0b85f6c49e56ace295c4cf72d04f135a 210430 admin extra evms-gui_2.5.5-22_i386.deb 5d3413920f95c5283d6d7bf5ff04ec72 73562 admin extra evms-ha_2.5.5-22_i386.deb fdb74bfcaf44fd5803a013a06af56c21 834766 libs extra libevms-2.5_2.5.5-22_i386.deb f6f00b1271f9182b14b3e1b65baa3091 309088 libdevel extra libevms-dev_2.5.5-22_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGKQmUXKRQ3lK3SH4RAn3kAKDbZRsGF3YFbEdnbQM/1d2eLfMB8wCgpDya tHSeZqgE3b8fS18svIeC+ao= =esBy -----END PGP SIGNATURE-----
--- End Message ---

