Your message dated Fri, 16 May 2025 22:04:15 +0000
with message-id <e1ug3a7-0099px...@fasolo.debian.org>
and subject line Bug#1091561: fixed in btrfs-compsize 1.5-1.1
has caused the Debian Bug report #1091561,
regarding Bug#1091561: btrfs-compsize: FTBFS: radix-tree.h:51:9: error: unknown
type name ‘gfp_t’
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.)
--
1091561: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1091561
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: btrfs-compsize
Version: 1.5-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20241228 ftbfs-trixie
Hi,
During a rebuild of all packages in sid, this package failed to build
on i386.
This package currently has binary packages on i386, so this is a regression.
Relevant part (hopefully):
> cc -g -O2 -Werror=implicit-function-declaration
> -ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat
> -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -c -o radix-tree.o
> radix-tree.c
> In file included from radix-tree.c:39:
> kerncompat.h:124:9: warning: "__bitwise__" redefined
> 124 | #define __bitwise__
> | ^~~~~~~~~~~
> In file included from kerncompat.h:30:
> /usr/include/linux/types.h:29:9: note: this is the location of the previous
> definition
> 29 | #define __bitwise__ __bitwise
> | ^~~~~~~~~~~
> In file included from compsize.c:17:
> radix-tree.h:51:9: error: unknown type name ‘gfp_t’
> 51 | gfp_t gfp_mask;
> | ^~~~~
> radix-tree.h:78:24: error: unknown type name ‘gfp_t’
> 78 | int radix_tree_preload(gfp_t gfp_mask);
> | ^~~~~
> radix-tree.h: In function ‘radix_tree_preload_end’:
> radix-tree.h:94:9: error: implicit declaration of function ‘preempt_enable’
> [-Wimplicit-function-declaration]
> 94 | preempt_enable();
> | ^~~~~~~~~~~~~~
> compsize.c: In function ‘parse_file_extent_item’:
> compsize.c:163:10: error: implicit declaration of function ‘IS_ALIGNED’
> [-Wimplicit-function-declaration]
> 163 | if (!IS_ALIGNED(disk_bytenr, 1 << 12))
> | ^~~~~~~~~~
> compsize.c:167:5: error: implicit declaration of function
> ‘radix_tree_preload’; did you mean ‘radix_tree_preload_end’?
> [-Wimplicit-function-declaration]
> 167 | radix_tree_preload(GFP_KERNEL);
> | ^~~~~~~~~~~~~~~~~~
> | radix_tree_preload_end
> compsize.c:167:24: error: ‘GFP_KERNEL’ undeclared (first use in this
> function); did you mean ‘SI_KERNEL’?
> 167 | radix_tree_preload(GFP_KERNEL);
> | ^~~~~~~~~~
> | SI_KERNEL
> compsize.c:167:24: note: each undeclared identifier is reported only once for
> each function it appears in
> compsize.c:168:59: warning: cast to pointer from integer of different size
> [-Wint-to-pointer-cast]
> 168 | if (radix_tree_insert(&ws->seen_extents, disk_bytenr, (void
> *)disk_bytenr) == 0)
> | ^
> compsize.c: In function ‘do_file’:
> compsize.c:194:13: error: ‘errno’ undeclared (first use in this function)
> 194 | if (errno == ENOTTY)
> | ^~~~~
> compsize.c:19:1: note: ‘errno’ is defined in header ‘<errno.h>’; this is
> probably fixable by adding ‘#include <errno.h>’
> 18 | #include "endianness.h"
> +++ |+#include <errno.h>
> 19 |
> compsize.c:194:22: error: ‘ENOTTY’ undeclared (first use in this function);
> did you mean ‘N_TTY’?
> 194 | if (errno == ENOTTY)
> | ^~~~~~
> | N_TTY
> compsize.c: In function ‘do_recursive_search’:
> compsize.c:246:17: error: ‘errno’ undeclared (first use in this function)
> 246 | if (errno == ELOOP // symlink
> | ^~~~~
> compsize.c:246:17: note: ‘errno’ is defined in header ‘<errno.h>’; this is
> probably fixable by adding ‘#include <errno.h>’
> compsize.c:246:26: error: ‘ELOOP’ undeclared (first use in this function)
> 246 | if (errno == ELOOP // symlink
> | ^~~~~
> compsize.c:247:26: error: ‘ENXIO’ undeclared (first use in this function)
> 247 | || errno == ENXIO // some device nodes
> | ^~~~~
> compsize.c:248:26: error: ‘ENODEV’ undeclared (first use in this function);
> did you mean ‘NODEV’?
> 248 | || errno == ENODEV // /dev/ptmx
> | ^~~~~~
> | NODEV
> compsize.c:249:26: error: ‘ENOMEDIUM’ undeclared (first use in this function)
> 249 | || errno == ENOMEDIUM// more device nodes
> | ^~~~~~~~~
> compsize.c:250:26: error: ‘ENOENT’ undeclared (first use in this function)
> 250 | || errno == ENOENT) // something just deleted
> | ^~~~~~
> compsize.c:252:31: error: ‘EACCES’ undeclared (first use in this function)
> 252 | else if (errno == EACCES)
> | ^~~~~~
> compsize.c:275:26: error: implicit declaration of function ‘strlen’
> [-Wimplicit-function-declaration]
> 275 | path_size += strlen(path) + NAME_MAX;
> | ^~~~~~
> compsize.c:19:1: note: include ‘<string.h>’ or provide a declaration of
> ‘strlen’
> 18 | #include "endianness.h"
> +++ |+#include <string.h>
> 19 |
> compsize.c:275:26: warning: incompatible implicit declaration of built-in
> function ‘strlen’ [-Wbuiltin-declaration-mismatch]
> 275 | path_size += strlen(path) + NAME_MAX;
> | ^~~~~~
> compsize.c:275:26: note: include ‘<string.h>’ or provide a declaration of
> ‘strlen’
> compsize.c:290:26: error: implicit declaration of function ‘strcmp’
> [-Wimplicit-function-declaration]
> 290 | if (!strcmp(de->d_name, "."))
> | ^~~~~~
> compsize.c:290:26: note: include ‘<string.h>’ or provide a declaration of
> ‘strcmp’
> compsize.c:294:41: error: implicit declaration of function ‘strrchr’
> [-Wimplicit-function-declaration]
> 294 | const char *slash = strrchr(path, '/');
> | ^~~~~~~
> compsize.c:294:41: note: include ‘<string.h>’ or provide a declaration of
> ‘strrchr’
> compsize.c:294:41: warning: incompatible implicit declaration of built-in
> function ‘strrchr’ [-Wbuiltin-declaration-mismatch]
> compsize.c:294:41: note: include ‘<string.h>’ or provide a declaration of
> ‘strrchr’
> make[2]: *** [Makefile:19: compsize.o] Error 1
The full build log is available from:
http://qa-logs.debian.net/2024/12/28/btrfs-compsize_1.5-1_unstable-i386.log
All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20241228;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20241228&fusertaguser=lu...@debian.org&allbugs=1&cseverity=1&ctags=1&caffected=1#results
A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!
If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects
If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.
--- End Message ---
--- Begin Message ---
Source: btrfs-compsize
Source-Version: 1.5-1.1
Done: Nicholas D Steeves <s...@debian.org>
We believe that the bug you reported is fixed in the latest version of
btrfs-compsize, 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 1091...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Nicholas D Steeves <s...@debian.org> (supplier of updated btrfs-compsize
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...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Fri, 16 May 2025 17:26:22 -0400
Source: btrfs-compsize
Architecture: source
Version: 1.5-1.1
Distribution: unstable
Urgency: medium
Maintainer: Adam Borowski <kilob...@angband.pl>
Changed-By: Nicholas D Steeves <s...@debian.org>
Closes: 1091561
Changes:
btrfs-compsize (1.5-1.1) unstable; urgency=medium
.
* Non-maintainer upload.
* Fix ftbfs with David Roman's patch (Closes: #1091561).
Checksums-Sha1:
fc46c8b29d66389654d8f7dd31c8716c565d3953 1911 btrfs-compsize_1.5-1.1.dsc
d2e85f43d7671c5a2b4de057382f9b7276985223 2896
btrfs-compsize_1.5-1.1.debian.tar.xz
Checksums-Sha256:
04a02786185e2cc82776ab8c266064fa5c80e563aa811e7498ff7f3eebc2f133 1911
btrfs-compsize_1.5-1.1.dsc
04b2f07612ea5229f5bd2a4b0e372579b4cb65db72159e00e8a13ee7fcc6573e 2896
btrfs-compsize_1.5-1.1.debian.tar.xz
Files:
ee57a747d36d24e1c9e83c762d929d0d 1911 admin optional btrfs-compsize_1.5-1.1.dsc
a190f64ebad8d3a578e477d091641289 2896 admin optional
btrfs-compsize_1.5-1.1.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEE4qYmHjkArtfNxmcIWogwR199EGEFAmgnsT8ACgkQWogwR199
EGGgGA//Wu94yg4iYd1MgRueWnoryz2BNIWnZ94+BkTYdFvwW0rKYpcdvYjPK/0m
MNQlGo4MdU3ydgBvGAhFNWMZc1aolQrxXU+MzjRE8c9cQ59QVtxxB6b7WfeNF9Mc
NPb1ZQ5sV60m2yqvD6sDKKaQeTYrHzd1wBAfI/CmwrwMLhKe45Wt7LdhAdkFLD1X
+DfqKeq7ganhsCEeqKFjwfgE69GPwHFY9qB76U4B+g8MTeMo4MsGr8uleXGI3R4t
/qK+35I/HUdF9rEO/mqZq2i30ZbbL/4TiK+MZYcchhcVN7CHswi5fVBFcj5J7A3E
8m4BCmoxcDSJAq0fs7eNAOSBWe32GMFptl211Jlm4WkCrRMYqFFUDQfXV3Pgfr4f
kk0YjU/cQXS+zuP4YP1apC7+9EM4V6VxJT2bGHn3fUyh2tqX3WsEHkn7Y2LbfcBx
TfKYG4gCWfSAVLb+UQlmd/d0yBu8zNt0WTIxRpzo9IRdxFJehWBTcJEeGKbNk76G
Wpp1tx3YzEcOk0X+sL/Xm0M3eUoigZ+du7sXLIHH90Yv5VQCMEWgtzfQKQ1Fy81E
MFG0J8y7GrTZz4on3TXOukWmvymaLnL9EPa/4AsikVcKJwXkDnYLf+qIZ5z0uDXw
AsO+OxtGwUA+lgdlF9pGwovEMA6kxDjRsZMaAMY9o4zhO6wJQww=
=JRsG
-----END PGP SIGNATURE-----
pgphe9z40HmGu.pgp
Description: PGP signature
--- End Message ---