Package: zfs-dkms; Maintainer for zfs-dkms is Debian ZFS on Linux maintainers <pkg-zfsonlinux-devel@alioth-lists.debian.net>; Source for zfs-dkms is src:zfs-linux (PTS, buildd, popcon).
Reported by: Fabian Grünbichler <fabian.gruenbichler@student.tuwien.ac.at>
Date: Fri, 2 Mar 2018 19:09:02 UTC
Severity: normal
Tags: patch
Found in version zfs-linux/0.7.6-1
Fixed in versions zfs-linux/0.7.9-1, zfs-linux/0.7.9-2
Done: Aron Xu <aron@debian.org>
Bug is archived. No further changes may be made.
View this report as an mbox folder, status mbox, maintainer mbox
Report forwarded
to debian-bugs-dist@lists.debian.org, Debian ZFS on Linux maintainers <pkg-zfsonlinux-devel@lists.alioth.debian.org>:
Bug#891936; Package zfs-dkms.
(Fri, 02 Mar 2018 19:09:05 GMT) (full text, mbox, link).
Acknowledgement sent
to Fabian Grünbichler <fabian.gruenbichler@student.tuwien.ac.at>:
New Bug report received and forwarded. Copy sent to Debian ZFS on Linux maintainers <pkg-zfsonlinux-devel@lists.alioth.debian.org>.
(Fri, 02 Mar 2018 19:09:05 GMT) (full text, mbox, link).
Message #5 received at submit@bugs.debian.org (full text, mbox, reply):
Package: zfs-dkms
Version: 0.7.6-1
Severity: normal
the zfs-dkms package tries to detect whether the (running) kernel is a
32-bit or 64-bit one with the following stanza (in zfs-dkms.config /
zfs-dkms.postinst):
$ head -1 /proc/kallsyms|awk '{print $1}'|wc -c
and checking the length of the resulting string.
if the check fails or reports a 32-bit kernel, the user is prompted via
debconf whether the build should be aborted.
both the check and the resulting actions is wrong and should likely be
dropped altogether:
- kallsyms recently got more restrictive and does not print address for
all entries. the recent 4.15 kernel uploaded to sid has two lines
starting with " (null)" at the top, which breaks the check
- kallsyms might be disabled (in a custom kernel build)
- the running kernel is not necessarily the (only) one that dkms builds for
- ZFS supports 32-bit (although with a footnote about potential
address space related stability problems)
if this check is still desired, it should probably be fixed and made
more smart and check the actual kernel sources that dkms will build
with.
-- System Information:
Debian Release: buster/sid
APT prefers unstable-debug
APT policy: (500, 'unstable-debug'), (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)
Kernel: Linux 4.15.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
Versions of packages zfs-dkms depends on:
ii debconf [debconf-2.0] 1.5.66
ii dkms 2.3-3
ii lsb-release 9.20170808
ii spl-dkms 0.7.6-1
Versions of packages zfs-dkms recommends:
ii linux-libc-dev 4.15.4-1
ii zfs-zed 0.7.6-1
ii zfsutils-linux 0.7.6-1
zfs-dkms suggests no packages.
-- debconf information excluded
To: submit@bugs.debian.org
Cc:
Bcc:
Subject:
Reply-To:
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian ZFS on Linux maintainers <pkg-zfsonlinux-devel@lists.alioth.debian.org>:
Bug#891936; Package zfs-dkms.
(Fri, 02 Mar 2018 23:00:07 GMT) (full text, mbox, link).
Acknowledgement sent
to Antonio Russo <antonio.e.russo@gmail.com>:
Extra info received and forwarded to list. Copy sent to Debian ZFS on Linux maintainers <pkg-zfsonlinux-devel@lists.alioth.debian.org>.
(Fri, 02 Mar 2018 23:00:07 GMT) (full text, mbox, link).
Message #10 received at 891936@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Control: tag -1 patch The most widespread symptom can be fixed with a little bit of grep hackery (patch attached). This fixes the "some/all lines starting with ' *(null)'" case, though I haven't tested this on any 32-bit machines (I don't have any).
[kallsyms-handle-obfuscation.patch (text/x-patch, attachment)]
Added tag(s) patch.
Request was from Antonio Russo <antonio.e.russo@gmail.com>
to 891936-submit@bugs.debian.org.
(Fri, 02 Mar 2018 23:00:07 GMT) (full text, mbox, link).
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian ZFS on Linux maintainers <pkg-zfsonlinux-devel@lists.alioth.debian.org>:
Bug#891936; Package zfs-dkms.
(Fri, 16 Mar 2018 14:57:08 GMT) (full text, mbox, link).
Acknowledgement sent
to Aron Xu <aron@debian.org>:
Extra info received and forwarded to list. Copy sent to Debian ZFS on Linux maintainers <pkg-zfsonlinux-devel@lists.alioth.debian.org>.
(Fri, 16 Mar 2018 14:57:08 GMT) (full text, mbox, link).
Message #17 received at 891936@bugs.debian.org (full text, mbox, reply):
Hi,
On Sat, Mar 3, 2018 at 2:52 AM, Fabian Grünbichler
<fabian.gruenbichler@student.tuwien.ac.at> wrote:
> Package: zfs-dkms
> Version: 0.7.6-1
> Severity: normal
>
> the zfs-dkms package tries to detect whether the (running) kernel is a
> 32-bit or 64-bit one with the following stanza (in zfs-dkms.config /
> zfs-dkms.postinst):
>
> $ head -1 /proc/kallsyms|awk '{print $1}'|wc -c
>
> and checking the length of the resulting string.
>
> if the check fails or reports a 32-bit kernel, the user is prompted via
> debconf whether the build should be aborted.
>
> both the check and the resulting actions is wrong and should likely be
> dropped altogether:
> - kallsyms recently got more restrictive and does not print address for
> all entries. the recent 4.15 kernel uploaded to sid has two lines
> starting with " (null)" at the top, which breaks the check
> - kallsyms might be disabled (in a custom kernel build)
> - the running kernel is not necessarily the (only) one that dkms builds for
> - ZFS supports 32-bit (although with a footnote about potential
> address space related stability problems)
>
> if this check is still desired, it should probably be fixed and made
> more smart and check the actual kernel sources that dkms will build
> with.
>
I prefer to keep the check because 32-bit kernels are never
first-class citizens in the world of ZFS, even if it builds and works
at most cases.
On conventional hardware (say, x86 workstations and servers),
deliberately using a 32-bit kernel is rare; for other purposes user
should evaluate the risks themselves before deciding on storage
choice.
Regards,
Aron
Reply sent
to Aron Xu <aron@debian.org>:
You have taken responsibility.
(Thu, 17 May 2018 16:39:10 GMT) (full text, mbox, link).
Notification sent
to Fabian Grünbichler <fabian.gruenbichler@student.tuwien.ac.at>:
Bug acknowledged by developer.
(Thu, 17 May 2018 16:39:10 GMT) (full text, mbox, link).
Message #22 received at 891936-close@bugs.debian.org (full text, mbox, reply):
Source: zfs-linux Source-Version: 0.7.9-1 We believe that the bug you reported is fixed in the latest version of zfs-linux, which is due to be installed in the Debian FTP archive. 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 891936@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Aron Xu <aron@debian.org> (supplier of updated zfs-linux 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 ftpmaster@ftp-master.debian.org) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Format: 1.8 Date: Thu, 17 May 2018 23:47:29 +0800 Source: zfs-linux Binary: libnvpair1linux libuutil1linux libzfslinux-dev libzfs2linux libzpool2linux zfs-dkms zfs-initramfs zfs-dracut zfsutils-linux zfs-zed zfs-test zfs-dbg Architecture: source amd64 all Version: 0.7.9-1 Distribution: unstable Urgency: medium Maintainer: Debian ZFS on Linux maintainers <pkg-zfsonlinux-devel@lists.alioth.debian.org> Changed-By: Aron Xu <aron@debian.org> Description: libnvpair1linux - Solaris name-value library for Linux libuutil1linux - Solaris userland utility library for Linux libzfs2linux - OpenZFS filesystem library for Linux libzfslinux-dev - OpenZFS filesystem development files for Linux libzpool2linux - OpenZFS pool library for Linux zfs-dbg - Debugging symbols for OpenZFS userland libraries and tools zfs-dkms - OpenZFS filesystem kernel modules for Linux zfs-dracut - OpenZFS root filesystem capabilities for Linux - dracut zfs-initramfs - OpenZFS root filesystem capabilities for Linux - initramfs zfs-test - OpenZFS test infrastructure an support scripts zfs-zed - OpenZFS Event Daemon zfsutils-linux - command-line tools to manage OpenZFS filesystems Closes: 868653 891936 Changes: zfs-linux (0.7.9-1) unstable; urgency=medium . [ Aron Xu ] * Move more zfs test tools to zfs-test package (Closes: #868653) * New upstream version 0.7.9 * d/rules: add --enable-systemd * Fix lintian obsolete-relation-form-in-source . [ Antonio Russo ] * Install enum-extract.pl with dkms * Handle /proc/kallsym obfuscation (Closes: #891936) Checksums-Sha1: 1998bb4861e725a6693e96d7709f73885d995280 2615 zfs-linux_0.7.9-1.dsc f5952f62e0efb2ffb4113fe10d96315746452f4e 6548649 zfs-linux_0.7.9.orig.tar.gz 1bd85a0e10877fd0fee9ce8cfab3b816b85e4082 42700 zfs-linux_0.7.9-1.debian.tar.xz 2896e75defd78302acbec411f9b178ed8654c713 46256 libnvpair1linux_0.7.9-1_amd64.deb 43cec5ed34bba5d67e2af9354f5995eefa318062 48792 libuutil1linux_0.7.9-1_amd64.deb ec3137406edd0c84cb741c6e82027e831004e8dc 138064 libzfs2linux_0.7.9-1_amd64.deb e7307ba4c747c0dbd0ebb91a0eb75a77a01c7617 1028824 libzfslinux-dev_0.7.9-1_amd64.deb ea71f41e05303804db67e4eea0220800ddede4f0 564112 libzpool2linux_0.7.9-1_amd64.deb 50cd87a900d14d162d673bed7339add61e478143 3730608 zfs-dbg_0.7.9-1_amd64.deb 15b6be1884c46d06aeefa15a6be32271e828be67 1395860 zfs-dkms_0.7.9-1_all.deb aea6f84c0c8940caced25e4697f71fbe782660f8 21492 zfs-dracut_0.7.9-1_all.deb 9f3e9684f45941b7978c60f684efd760f86ad2e6 25244 zfs-initramfs_0.7.9-1_all.deb 2debfc8c4021448cbaaf738990a7821add942d48 8856 zfs-linux_0.7.9-1_amd64.buildinfo 7a8e2abd84cf11e01aae692a6f94c36806bbff17 2519460 zfs-test_0.7.9-1_amd64.deb 06f99ddf476b894050a027f6f73702037b047267 61808 zfs-zed_0.7.9-1_amd64.deb 69323afcc9091f6d0f4524b5cf4d7d7ba61ea923 314152 zfsutils-linux_0.7.9-1_amd64.deb Checksums-Sha256: e42be8b811b0f1ac4634bd504ccd5ec03024475cd592335dbd28b373f3d20385 2615 zfs-linux_0.7.9-1.dsc f50ca2441c6abde4fe6b9f54d5583a45813031d6bb72b0011b00fc2683cd9f7a 6548649 zfs-linux_0.7.9.orig.tar.gz 4a7ae365287839f5d2d1eec41f917b2afe520c0ca782143ee988157670a1361b 42700 zfs-linux_0.7.9-1.debian.tar.xz c16e387791d5123a88a05145e13f115f87a9e2ee1e65a90e9c6efa3f2661b947 46256 libnvpair1linux_0.7.9-1_amd64.deb 37c691febeea1629062b15eb96fdc511b0b86725ea6bdc0a83119dd298b10b06 48792 libuutil1linux_0.7.9-1_amd64.deb e26e20caaf7cccc5aa1cb59825f01d85eed29c7db0f8b39e25e382bc2f0a36c2 138064 libzfs2linux_0.7.9-1_amd64.deb a319ebc1bf6bb8523f133abc53f19574c075edc19ae6434fb333c17fdc45114f 1028824 libzfslinux-dev_0.7.9-1_amd64.deb a7a4c66fd684602ac766a0de8db13b14128721ba028ed4080c9e1bc15e98445c 564112 libzpool2linux_0.7.9-1_amd64.deb 13cf226a50b683bd1891b35ed2827f4c68f54c80fd9962464df6470a93990e8b 3730608 zfs-dbg_0.7.9-1_amd64.deb f1d4cc5a3d982e94c1b61424a47cf218f965b3a6745748c65a7c721e35ecfc37 1395860 zfs-dkms_0.7.9-1_all.deb dfdd66e4df4c9da473f6fd07db05847ee2aa6810cb902b60618f61f1fc16433b 21492 zfs-dracut_0.7.9-1_all.deb c2dcaae6c319ca2337093ef290aa94e2039fa62f3839839fb6c268e401cb5391 25244 zfs-initramfs_0.7.9-1_all.deb ba903be3ac31d54f24c4dfcc7440779fa77af387b9a64556e95413911e5e5f90 8856 zfs-linux_0.7.9-1_amd64.buildinfo 7787f0e5ee76a34ed25059b810ceaf886edb03ac302e6ac40eadddcf7f062ef6 2519460 zfs-test_0.7.9-1_amd64.deb 475e4240e76e5c13054ed4cc281642fc3edcbfcf94639ed6dd1501fa8d9d2b4d 61808 zfs-zed_0.7.9-1_amd64.deb ae5100637b132cab8a015798cbc05d19edd9cfc46e9d314874d8bb757d62c4d5 314152 zfsutils-linux_0.7.9-1_amd64.deb Files: 22c79dccf59804e68113d20e9d37e979 2615 contrib/kernel optional zfs-linux_0.7.9-1.dsc 3c0852807f90061d4902464ab9b25c0e 6548649 contrib/kernel optional zfs-linux_0.7.9.orig.tar.gz 6fe542cf8d9d8563dc13f17e368b7ac4 42700 contrib/kernel optional zfs-linux_0.7.9-1.debian.tar.xz b753dba61f631d4e5fad8c8b5d0dcef6 46256 contrib/libs optional libnvpair1linux_0.7.9-1_amd64.deb ad451c202c46068cb41d88e3531373bc 48792 contrib/libs optional libuutil1linux_0.7.9-1_amd64.deb ecf33d781ea5457826cc781cc8bfc3f1 138064 contrib/libs optional libzfs2linux_0.7.9-1_amd64.deb a8c40581dcc9064295347f616da0b75b 1028824 contrib/libdevel optional libzfslinux-dev_0.7.9-1_amd64.deb 64901ae3219d155b38ec1415cd3a194b 564112 contrib/libs optional libzpool2linux_0.7.9-1_amd64.deb fa77e942f8b4c12a48eefa4987749346 3730608 contrib/debug extra zfs-dbg_0.7.9-1_amd64.deb 74a77e63d95301652d8bc1f6d74d3c90 1395860 contrib/kernel optional zfs-dkms_0.7.9-1_all.deb 558d8f65fd14980b3f7d16d3c91bfe4d 21492 contrib/kernel optional zfs-dracut_0.7.9-1_all.deb abc91066f0524c9f9b62e0cf85bf0779 25244 contrib/kernel optional zfs-initramfs_0.7.9-1_all.deb d1259d13038f929f1b8b5386858b9207 8856 contrib/kernel optional zfs-linux_0.7.9-1_amd64.buildinfo bab3bce994e6c673aa558aaf8b557682 2519460 contrib/admin optional zfs-test_0.7.9-1_amd64.deb dc4038f75fac141b03302d34487e9f52 61808 contrib/admin optional zfs-zed_0.7.9-1_amd64.deb bde2df7989d8b23fbfe6b6b67be6dabd 314152 contrib/admin optional zfsutils-linux_0.7.9-1_amd64.deb -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEXraik9KLDk+VcqtJ3oyCGyc+2gsFAlr9qwYACgkQ3oyCGyc+ 2guy0Af/ZakMpygj6Lk6bzKy2G16fDFK9Vh+jqZJlgALtiDUA4usWtTisvWJtVQv dSb5i9En1C/G/nQrNRhjeFwu/hkov65LhI7iJDCnw1qckntWDvpIXeNoEnDX7Zod OygX7NmfJcYqRIOs35EBzv+Gip3EFymjYFpmcjVfxzp9knwIobe6KLN1wqfKUX5q kd7ws5ebjIEsTzQABI1HdwNe9G+WqCucvOJzraJQdTlgLspuqNBjK+xSOWYCFl2I TH8DI0D+1hePO3RqhEy84sV+NM1Muu4ul/wtRlfD1H+aQxw32vHGVWY38NE4K620 /QeMKrAPO/l82e2vXNJaTYwP/uRu0w== =nsU5 -----END PGP SIGNATURE-----
Reply sent
to Aron Xu <aron@debian.org>:
You have taken responsibility.
(Thu, 17 May 2018 16:57:11 GMT) (full text, mbox, link).
Notification sent
to Fabian Grünbichler <fabian.gruenbichler@student.tuwien.ac.at>:
Bug acknowledged by developer.
(Thu, 17 May 2018 16:57:11 GMT) (full text, mbox, link).
Message #27 received at 891936-close@bugs.debian.org (full text, mbox, reply):
Source: zfs-linux Source-Version: 0.7.9-2 We believe that the bug you reported is fixed in the latest version of zfs-linux, which is due to be installed in the Debian FTP archive. 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 891936@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Aron Xu <aron@debian.org> (supplier of updated zfs-linux 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 ftpmaster@ftp-master.debian.org) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Format: 1.8 Date: Thu, 17 May 2018 23:47:29 +0800 Source: zfs-linux Binary: libnvpair1linux libuutil1linux libzfslinux-dev libzfs2linux libzpool2linux zfs-dkms zfs-initramfs zfs-dracut zfsutils-linux zfs-zed zfs-test zfs-dbg Architecture: source amd64 all Version: 0.7.9-2 Distribution: unstable Urgency: medium Maintainer: Debian ZFS on Linux maintainers <pkg-zfsonlinux-devel@lists.alioth.debian.org> Changed-By: Aron Xu <aron@debian.org> Description: libnvpair1linux - Solaris name-value library for Linux libuutil1linux - Solaris userland utility library for Linux libzfs2linux - OpenZFS filesystem library for Linux libzfslinux-dev - OpenZFS filesystem development files for Linux libzpool2linux - OpenZFS pool library for Linux zfs-dbg - Debugging symbols for OpenZFS userland libraries and tools zfs-dkms - OpenZFS filesystem kernel modules for Linux zfs-dracut - OpenZFS root filesystem capabilities for Linux - dracut zfs-initramfs - OpenZFS root filesystem capabilities for Linux - initramfs zfs-test - OpenZFS test infrastructure an support scripts zfs-zed - OpenZFS Event Daemon zfsutils-linux - command-line tools to manage OpenZFS filesystems Closes: 868653 891936 Changes: zfs-linux (0.7.9-2) unstable; urgency=medium . [ Aron Xu ] * Move more zfs test tools to zfs-test package (Closes: #868653) * New upstream version 0.7.9 * d/rules: add --enable-systemd * Fix lintian obsolete-relation-form-in-source * Bump supported linux version to 4.16 . [ Antonio Russo ] * Install enum-extract.pl with dkms * Handle /proc/kallsym obfuscation (Closes: #891936) Checksums-Sha1: 30871c3b23fb5ec9895c813bbae1272773692279 2615 zfs-linux_0.7.9-2.dsc f5952f62e0efb2ffb4113fe10d96315746452f4e 6548649 zfs-linux_0.7.9.orig.tar.gz cde2749b6e9829c9c00a45ef4eaab7603d09ce8d 42720 zfs-linux_0.7.9-2.debian.tar.xz 1f3f6790c6a42bd44d070f761848326855984cc5 46268 libnvpair1linux_0.7.9-2_amd64.deb ea3113630aae50bd44280e99669b0cd473f8a7be 48824 libuutil1linux_0.7.9-2_amd64.deb 8084b91d9308ba4644e92369807e4a9ed3122447 138072 libzfs2linux_0.7.9-2_amd64.deb 9aae18774257fb81cb09b48036d94bac93589ef6 1028840 libzfslinux-dev_0.7.9-2_amd64.deb 402b5706777ddbd4142feb126a20cfdcec439c0f 564128 libzpool2linux_0.7.9-2_amd64.deb 21cf563457bf946bccb733519bd3ad4aace9efd3 3730244 zfs-dbg_0.7.9-2_amd64.deb 6918561b8dcbe1d5cd0c0eae3a035ef0ae7322c8 1396472 zfs-dkms_0.7.9-2_all.deb ad0539b4810ed5d4266cdca1f07185e12c5a1b30 21512 zfs-dracut_0.7.9-2_all.deb 3bff8ba81a3a2bfa572cdba3afbdecadc0bfcd82 25276 zfs-initramfs_0.7.9-2_all.deb 937cf71663cf6732d8c1730323e6155f4532b8da 8856 zfs-linux_0.7.9-2_amd64.buildinfo ff261036bfad2f29a319b8b003001ecf2f14ea59 2519332 zfs-test_0.7.9-2_amd64.deb f9dc5165ebd493b8f63e151337abaf52469f4a77 61840 zfs-zed_0.7.9-2_amd64.deb ee273489524a838a4c96acc4adcc8f2ba1f22a3d 314164 zfsutils-linux_0.7.9-2_amd64.deb Checksums-Sha256: 898a4fd14c3c76e81fb494e654c72eb59c74f2df49ea71f36f4bc49fce051d41 2615 zfs-linux_0.7.9-2.dsc f50ca2441c6abde4fe6b9f54d5583a45813031d6bb72b0011b00fc2683cd9f7a 6548649 zfs-linux_0.7.9.orig.tar.gz ddccffc357e3cef6376ce15a3581019ee4583af5339cffdb89c12c4eb8e4ab28 42720 zfs-linux_0.7.9-2.debian.tar.xz f6b90dc30538caba998ecab983f9b8d1093cebbf81f039737fcf6a8833109881 46268 libnvpair1linux_0.7.9-2_amd64.deb 504df992dd8782fcd8dce009a04bc0a4a7570d6a63f0787276b797be3c2e00b6 48824 libuutil1linux_0.7.9-2_amd64.deb a786a879ea86e8c16464b1391e7938733aa74aee415b02f6141f876e9ec1a8e0 138072 libzfs2linux_0.7.9-2_amd64.deb 83c6aa10463fd31edf631c7babdc13755b06c269f3e5541749bf28bb0e4fc22e 1028840 libzfslinux-dev_0.7.9-2_amd64.deb f3866d4ef761d8eb2b04b70567224422b080ccd76fb6152fa8bac95beae94078 564128 libzpool2linux_0.7.9-2_amd64.deb e459a28b9b0f431e3591b8597c81d186d885422b80cf61e84f9ec6ad469288cf 3730244 zfs-dbg_0.7.9-2_amd64.deb 0ddb81b0d4349bc4e821a35e6f78b3851896161dc39de2d49078845785d41147 1396472 zfs-dkms_0.7.9-2_all.deb 9679472ad762bfe791d02897ce7de2cb128d381acc31f1ac70d77314651ad713 21512 zfs-dracut_0.7.9-2_all.deb 1240421e18ca22fed2caa674142a81512de9fa9764038efe44ab4e51d7a6cd48 25276 zfs-initramfs_0.7.9-2_all.deb 42ef4f4795715829c803cf4a02d5a4f17f41f4212499c34fdb26153ac1c2d250 8856 zfs-linux_0.7.9-2_amd64.buildinfo 0a3373d40c4441edb11f8bcf1ff5e97221d40fbdb5fd2273d0b54bfcd64407bd 2519332 zfs-test_0.7.9-2_amd64.deb 75b12c176b0015a9d18d9e56878bd5897b30fd1a1a1b91e1db6ab250001fcc7f 61840 zfs-zed_0.7.9-2_amd64.deb 28fa7ccb38b2b7040f436e2869539b84e97e23ea7802be7fd48ea25c0880821b 314164 zfsutils-linux_0.7.9-2_amd64.deb Files: 51412e0743bce2b3b3cdbdd55d4cfc9b 2615 contrib/kernel optional zfs-linux_0.7.9-2.dsc 3c0852807f90061d4902464ab9b25c0e 6548649 contrib/kernel optional zfs-linux_0.7.9.orig.tar.gz e9187301966938da7019a1c87aada8a3 42720 contrib/kernel optional zfs-linux_0.7.9-2.debian.tar.xz d6f15548bbfdcb74f2611361b7174453 46268 contrib/libs optional libnvpair1linux_0.7.9-2_amd64.deb 88140a55ecbdfcc8d7eb2cf8e4090056 48824 contrib/libs optional libuutil1linux_0.7.9-2_amd64.deb 741ca24bb25edc9fb3c29b0c562ecec9 138072 contrib/libs optional libzfs2linux_0.7.9-2_amd64.deb 51fecb7035e5e0ef4ca95a9006497a79 1028840 contrib/libdevel optional libzfslinux-dev_0.7.9-2_amd64.deb e0e57567cee7fd367075c114d4c66832 564128 contrib/libs optional libzpool2linux_0.7.9-2_amd64.deb 797669a6ef194791f9bd4ad020ef4507 3730244 contrib/debug extra zfs-dbg_0.7.9-2_amd64.deb 6f678defec6020014f5c5018918e25f9 1396472 contrib/kernel optional zfs-dkms_0.7.9-2_all.deb 0f6c1b0a8aa1012d75aad98f4c0bc966 21512 contrib/kernel optional zfs-dracut_0.7.9-2_all.deb 2567772b45b5a5cc5c57a5dde3da895e 25276 contrib/kernel optional zfs-initramfs_0.7.9-2_all.deb b9c41dca6e7ba4e67cf76f20430b9563 8856 contrib/kernel optional zfs-linux_0.7.9-2_amd64.buildinfo ad2c9a43be4189f09cb359e52561a524 2519332 contrib/admin optional zfs-test_0.7.9-2_amd64.deb f34707b39acaf0501b1251d7d7c6d6ad 61840 contrib/admin optional zfs-zed_0.7.9-2_amd64.deb 1aa96f3ee736dd9a54630d9d08cbc00a 314164 contrib/admin optional zfsutils-linux_0.7.9-2_amd64.deb -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEXraik9KLDk+VcqtJ3oyCGyc+2gsFAlr9rnsACgkQ3oyCGyc+ 2gtcXQf9G2dLn/ikmV5DXGlJaq93BeC5K1tYYGbYGoKDJxUQPUV/uxpUc0WHNj79 ojKncDRi8sVwcznWmbJ8xQ1LJ+8W4F3CEEFNo//R1DA6j5+pOn4Y0ccwfCUpFCK7 SVLvXTujPxkSbihHFbeSxVFDDXihN6uT0azmuqoZOZ/WIREOVuwtIW1AWi5l5IUE eh2oVsu5wDLgyWiY9JNHcD3dqf/P2wQQTA9NvHvZi0S1ceXm/TumJLVgSey6Csu7 4p91leXlmGHp1GEWuQ6kSJFRbrb2UrvWEfOCunQA2QQ3nnLsbhvTh6cRx+omsR5l Ku4ZQVgSjHaYdS4jdWBvFwN17dx3RQ== =gV9q -----END PGP SIGNATURE-----
Bug archived.
Request was from Debbugs Internal Request <owner@bugs.debian.org>
to internal_control@bugs.debian.org.
(Fri, 15 Jun 2018 07:27:07 GMT) (full text, mbox, link).
Send a report that this bug log contains spam.
Debbugs is free software and licensed under the terms of the GNU Public License version 2. The current version can be obtained from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson, 2005-2017 Don Armstrong, and many other contributors.