Your message dated Sun, 02 Aug 2009 10:17:04 +0000
with message-id <e1mxy7k-00023e...@ries.debian.org>
and subject line Bug#539433: fixed in btrfs-tools 0.19-3
has caused the Debian Bug report #539433,
regarding btrfs-tools: FTBFS on alpha and ia64, printk cast warning
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 ow...@bugs.debian.org
immediately.)
--
539433: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=539433
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: btrfs-tools
Version: 0.19-2
Severity: serious
Tags: patch
Some warnings of the form:
format '%llu' expects type 'long long unsigned int' but argument has
type 'u64'
in conjunction with -Werror are causing build failures on ia64 and
alpha. Patch attached to properly cast them, avoiding compiler
warnings.
This is becoming boring to fix at each release :)
Cheers, Luca
--
.''`. ** Debian GNU/Linux ** | Luca Bruno (kaeso)
: :' : The Universal O.S. | lucab (AT) debian.org
`. `'` | GPG Key ID: 3BFB9FB3
`- http://www.debian.org | Debian GNU/Linux Developer
Index: btrfs-tools-0.19/disk-io.c
===================================================================
--- btrfs-tools-0.19.orig/disk-io.c 2009-07-31 13:14:50.000000000 -0600
+++ btrfs-tools-0.19/disk-io.c 2009-07-31 13:14:51.000000000 -0600
@@ -678,7 +678,8 @@
~BTRFS_FEATURE_INCOMPAT_SUPP;
if (features) {
printk("couldn't open because of unsupported "
- "option features (%Lx).\n", features);
+ "option features (%Lx).\n",
+ (unsigned long long)features);
BUG_ON(1);
}
@@ -692,7 +693,8 @@
~BTRFS_FEATURE_COMPAT_RO_SUPP;
if (writes && features) {
printk("couldn't open RDWR because of unsupported "
- "option features (%Lx).\n", features);
+ "option features (%Lx).\n",
+ (unsigned long long) features);
BUG_ON(1);
}
Index: btrfs-tools-0.19/extent-tree.c
===================================================================
--- btrfs-tools-0.19.orig/extent-tree.c 2009-07-31 13:14:50.000000000 -0600
+++ btrfs-tools-0.19/extent-tree.c 2009-07-31 13:14:51.000000000 -0600
@@ -1448,7 +1448,8 @@
goto out;
if (ret != 0) {
btrfs_print_leaf(root, path->nodes[0]);
- printk("failed to find block number %Lu\n", bytenr);
+ printk("failed to find block number %Lu\n",
+ (unsigned long long) bytenr);
BUG();
}
Index: btrfs-tools-0.19/print-tree.c
===================================================================
--- btrfs-tools-0.19.orig/print-tree.c 2009-07-31 13:14:50.000000000 -0600
+++ btrfs-tools-0.19/print-tree.c 2009-07-31 13:14:51.000000000 -0600
@@ -494,7 +494,7 @@
case BTRFS_DIR_LOG_ITEM_KEY:
dlog = btrfs_item_ptr(l, i, struct btrfs_dir_log_item);
printf("\t\tdir log end %Lu\n",
- btrfs_dir_log_end(l, dlog));
+ (unsigned long long) btrfs_dir_log_end(l, dlog));
break;
case BTRFS_ORPHAN_ITEM_KEY:
printf("\t\torphan item\n");
Index: btrfs-tools-0.19/convert.c
===================================================================
--- btrfs-tools-0.19.orig/convert.c 2009-07-31 13:15:38.000000000 -0600
+++ btrfs-tools-0.19/convert.c 2009-07-31 13:15:48.000000000 -0600
@@ -2579,7 +2579,7 @@
ext2_root = btrfs_read_fs_root(root->fs_info, &key);
if (!ext2_root || IS_ERR(ext2_root)) {
fprintf(stderr, "unable to open subvol %llu\n",
- key.objectid);
+ (unsigned long long) key.objectid);
goto fail;
}
pgpgg09jgN6QO.pgp
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: btrfs-tools
Source-Version: 0.19-3
We believe that the bug you reported is fixed in the latest version of
btrfs-tools, which is due to be installed in the Debian FTP archive:
btrfs-tools_0.19-3.diff.gz
to pool/main/b/btrfs-tools/btrfs-tools_0.19-3.diff.gz
btrfs-tools_0.19-3.dsc
to pool/main/b/btrfs-tools/btrfs-tools_0.19-3.dsc
btrfs-tools_0.19-3_i386.deb
to pool/main/b/btrfs-tools/btrfs-tools_0.19-3_i386.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 539...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Daniel Baumann <dan...@debian.org> (supplier of updated btrfs-tools 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 ftpmas...@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Sun, 02 Aug 2009 12:08:49 +0200
Source: btrfs-tools
Binary: btrfs-tools
Architecture: source i386
Version: 0.19-3
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann <dan...@debian.org>
Changed-By: Daniel Baumann <dan...@debian.org>
Description:
btrfs-tools - Checksumming Copy on Write Filesystem
Closes: 539433
Changes:
btrfs-tools (0.19-3) unstable; urgency=low
.
* Minimizing rules file.
* Adding patch from Luca Bruno <lu...@debian.org> to properly cast and
avoiding compiler warnings. Fixes FTBFS on alpha and ia64 (Closes:
#539433).
Checksums-Sha1:
29b44aa0699704dcc7bf93c080dfb3e913b91a37 1181 btrfs-tools_0.19-3.dsc
a4f149e1a27fcf8ae088d6c0476344a84fe55b31 4049 btrfs-tools_0.19-3.diff.gz
620ff60f4848b2e36d7169e501aaddd53e2c8db7 538428 btrfs-tools_0.19-3_i386.deb
Checksums-Sha256:
09e15c2cecac6d02313d3e65850c1038b0379d53f4742929d001c109edc1a9e1 1181
btrfs-tools_0.19-3.dsc
e68058e4a604bb60c3dfea5c6f75790e3beb260956026e3a7903680cd6e73526 4049
btrfs-tools_0.19-3.diff.gz
5ba7adca3b9719d44da70af408d587c9a53b4adf4d47995feca755654643a6d7 538428
btrfs-tools_0.19-3_i386.deb
Files:
919e6da1ef3c61c54f978925d9e73bb6 1181 admin optional btrfs-tools_0.19-3.dsc
273bae24759b864888f4115eccffadbb 4049 admin optional btrfs-tools_0.19-3.diff.gz
06401b7ea47646780aac59b0af82923f 538428 admin optional
btrfs-tools_0.19-3_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iEYEARECAAYFAkp1ZeoACgkQ+C5cwEsrK56myQCeI5jBRfN977x0je0tIA8B0mk0
5NwAn2YACboiBpF/SAT5oPeUmaFqULsK
=zywS
-----END PGP SIGNATURE-----
--- End Message ---