Your message dated Tue, 16 Sep 2014 04:50:11 +0000
with message-id <[email protected]>
and subject line Bug#756892: fixed in ceph 0.80.5-2
has caused the Debian Bug report #756892,
regarding ceph FTBFS on alpha due to incorrect check on BLKGETSIZE
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 [email protected]
immediately.)
--
756892: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756892
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: ceph
Version: 0.80.5-1
Severity: normal
Tags: patch
User: [email protected]
Usertags: alpha
Ceph FTBFS on Alpha with:
libtool: compile: g++ -DHAVE_CONFIG_H -I. -D__CEPH__ -D_FILE_OFFSET_BITS=64
-D_REENTRANT -D_THREAD_SAFE -D__STDC_FORMAT_MACROS -D_GNU_SOURCE
-DCEPH_LIBDIR=\"/usr/lib/alpha-linux-gnu\"
-DCEPH_PKGLIBDIR=\"/usr/lib/alpha-linux-gnu/ceph\" -DGTEST_HAS_TR1_TUPLE=0
-D_FORTIFY_SOURCE=2 -I/usr/include/nss -I/usr/include/nspr -Wall -Wtype-limits
-Wignored-qualifiers -Winit-self -Wpointer-arith -Werror=format-security
-fno-strict-aliasing -fsigned-char -rdynamic -ftemplate-depth-1024
-Wnon-virtual-dtor -Wno-invalid-offsetof -Wstrict-null-sentinel -g -O2 -Wformat
-Werror=format-security -c common/blkdev.cc -fPIC -DPIC -o
common/.libs/blkdev.o
In file included from /usr/include/alpha-linux-gnu/asm/ioctls.h:4:0,
from /usr/include/alpha-linux-gnu/bits/ioctls.h:23,
from /usr/include/alpha-linux-gnu/sys/ioctl.h:26,
from common/blkdev.cc:3:
common/blkdev.cc:13:7: error: missing binary operator before token "int"
#elif BLKGETSIZE
^
This error occurs because the value of BLKGETSIZE is tested in a
c-preprocessor conditional compilation test whereas the test should
be for existence.
Patch fixing this attached.
Ceph successfully builds to completion on Alpha with this patch.
Cheers
Michael.
Index: ceph-0.80.5/src/common/blkdev.cc
===================================================================
--- ceph-0.80.5.orig/src/common/blkdev.cc
+++ ceph-0.80.5/src/common/blkdev.cc
@@ -10,7 +10,7 @@ int get_block_device_size(int fd, int64_
{
#ifdef BLKGETSIZE64
int ret = ::ioctl(fd, BLKGETSIZE64, psize);
-#elif BLKGETSIZE
+#elif defined(BLKGETSIZE)
unsigned long sectors = 0;
int ret = ::ioctl(fd, BLKGETSIZE, §ors);
*psize = sectors * 512ULL;
--- End Message ---
--- Begin Message ---
Source: ceph
Source-Version: 0.80.5-2
We believe that the bug you reported is fixed in the latest version of
ceph, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Dmitry Smirnov <[email protected]> (supplier of updated ceph 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: SHA256
Format: 1.8
Date: Tue, 16 Sep 2014 03:54:15 +1000
Source: ceph
Binary: ceph ceph-dbg ceph-common ceph-common-dbg ceph-mds ceph-mds-dbg
ceph-fuse ceph-fuse-dbg rbd-fuse rbd-fuse-dbg ceph-fs-common ceph-fs-common-dbg
ceph-resource-agents librados2 librados2-dbg librados-dev librbd1 librbd1-dbg
librbd-dev libcephfs1 libcephfs1-dbg libcephfs-dev radosgw radosgw-dbg
rest-bench rest-bench-dbg ceph-test ceph-test-dbg python-ceph libcephfs-java
libcephfs-jni libcephfs-jni-dbg
Architecture: source amd64 all
Version: 0.80.5-2
Distribution: unstable
Urgency: low
Maintainer: Ceph Maintainers <[email protected]>
Changed-By: Dmitry Smirnov <[email protected]>
Description:
ceph - distributed storage and file system
ceph-common - common utilities to mount and interact with a ceph storage cluste
ceph-common-dbg - debugging symbols for ceph-common
ceph-dbg - debugging symbols for ceph
ceph-fs-common - common utilities to mount and interact with a ceph file system
ceph-fs-common-dbg - debugging symbols for ceph-fs-common
ceph-fuse - FUSE-based client for the Ceph distributed file system
ceph-fuse-dbg - debugging symbols for ceph-fuse
ceph-mds - metadata server for the ceph distributed file system
ceph-mds-dbg - debugging symbols for ceph-mds
ceph-resource-agents - OCF-compliant resource agents for Ceph
ceph-test - Ceph test and benchmarking tools
ceph-test-dbg - debugging symbols for ceph-test
libcephfs-dev - Ceph distributed file system client library (development files)
libcephfs-java - Java library for the Ceph File System
libcephfs-jni - Java Native Interface library for CephFS Java bindings
libcephfs-jni-dbg - debugging symbols for libcephfs-jni
libcephfs1 - Ceph distributed file system client library
libcephfs1-dbg - debugging symbols for libcephfs1
librados-dev - RADOS distributed object store client library (development
files)
librados2 - RADOS distributed object store client library
librados2-dbg - debugging symbols for librados2
librbd-dev - RADOS block device client library (development files)
librbd1 - RADOS block device client library
librbd1-dbg - debugging symbols for librbd1
python-ceph - Python libraries for the Ceph distributed filesystem
radosgw - REST gateway for RADOS distributed object store
radosgw-dbg - debugging symbols for radosgw
rbd-fuse - FUSE-based rbd client for the Ceph distributed file system
rbd-fuse-dbg - debugging symbols for rbd-fuse
rest-bench - RESTful bencher that can be used to benchmark radosgw performance
rest-bench-dbg - debugging symbols for rest-bench
Closes: 756892 760383
Changes:
ceph (0.80.5-2) unstable; urgency=low
.
* Patchworks:
+ new patch for Ceph#9341 to dramatically (e.g seconds instead of
hours) reduce rejoin (i.e. MDS restart) time (fuse clients).
+ new "p2139.patch".
+ new patch with fixes from Firefly HEAD;
includes patch to fix FTBFS on alpha (Closes: #756892).
updated "librbd1.symbols";
* Build-Depends: mark "yasm" as [amd64] (Closes: #760383).
* Recommends: + "time-daemon | chrony".
Checksums-Sha1:
647d80e4905ef223af33867b999d1a4b4a3def7d 4378 ceph_0.80.5-2.dsc
bc84cea167bad887d17083a00b30ef69d111c98d 110204 ceph_0.80.5-2.debian.tar.xz
0fbe6a3e549415f7416c8036e2b5b6e3fcb263df 5649826 ceph_0.80.5-2_amd64.deb
4467e21cf9910d85efaccdda813873c36aef072b 95927364 ceph-dbg_0.80.5-2_amd64.deb
96342385ca5cab4f74d142893b4b6df09bdc35f0 4164952 ceph-common_0.80.5-2_amd64.deb
1a2d9155cbb9af88ce63380ad4e05a95ac38f5f0 69663986
ceph-common-dbg_0.80.5-2_amd64.deb
59d2eb4c3fa211e64bf3b227c82df94248c12362 2215066 ceph-mds_0.80.5-2_amd64.deb
409fddaf3199b5dddba66659d7371382dabe0ef1 34732222
ceph-mds-dbg_0.80.5-2_amd64.deb
525ddc7d9141557116a4bdedd82a634e3a8acf53 1405466 ceph-fuse_0.80.5-2_amd64.deb
16001204a3de0a9750a1ed6e73a02a5c71837e01 18329482
ceph-fuse-dbg_0.80.5-2_amd64.deb
c2795e054f1e59fa079d613be0e64dcf3294af36 25724 rbd-fuse_0.80.5-2_amd64.deb
ab035ea2dcd32cc2464d98aaf5351925645a4501 33296 rbd-fuse-dbg_0.80.5-2_amd64.deb
5b74250056eaf76282f7e46c37867c73f59f8e0d 38410
ceph-fs-common_0.80.5-2_amd64.deb
2b272a8ac0eaab0a6ee5381f8747e8eff002e3e8 81966
ceph-fs-common-dbg_0.80.5-2_amd64.deb
7d0a77e4b526dbd434cb9c4d8d6435ba281356ae 20896
ceph-resource-agents_0.80.5-2_all.deb
66603a0d09c4304eff378a4f35aa1d16ee2e2bb8 1598838 librados2_0.80.5-2_amd64.deb
04b90a5a6f68694e0750c61164ec42754b5ebbc6 20680700
librados2-dbg_0.80.5-2_amd64.deb
85d98c74a33120d8f5bd2d7dcb1cdd9deb3e2abb 1836354
librados-dev_0.80.5-2_amd64.deb
6f1343447f9b3e8c891364b5781d3129f5398b78 361376 librbd1_0.80.5-2_amd64.deb
a60ea5bd0c0bacc53a6b3f5e1fe83df3c347862f 4726458 librbd1-dbg_0.80.5-2_amd64.deb
1ec32fc8b821cdaae3d706b3ac4a477a1e0abff9 5277584 librbd-dev_0.80.5-2_amd64.deb
23d365d9544201411ff72dc965507438729f511f 1686982 libcephfs1_0.80.5-2_amd64.deb
a8d5f8d10b4aa6405376fd155dd738379b5f93d7 21131878
libcephfs1-dbg_0.80.5-2_amd64.deb
f6e014689d38fb89b765ccf9b4e2ddda56a4104c 24217168
libcephfs-dev_0.80.5-2_amd64.deb
c108bad1ef354f603dabfb1bd51df6ce2915cf86 1046646 radosgw_0.80.5-2_amd64.deb
62e7e1a0bda77cc8637e1bd0377ec8936970d8c6 18082982
radosgw-dbg_0.80.5-2_amd64.deb
9042e9531d55a21bc5df74295c0ee18407f4e9ad 350608 rest-bench_0.80.5-2_amd64.deb
3c0dd674dc8378d9d4db6b4ed4850f6727e79d8a 4662924
rest-bench-dbg_0.80.5-2_amd64.deb
f1db6d511a225f4da612b5c1ead31217a7fc9e37 16551440 ceph-test_0.80.5-2_amd64.deb
4fb086b6df91a982821541bbff6134fb43cd1154 323134370
ceph-test-dbg_0.80.5-2_amd64.deb
44cd083ea83e87a0529059d4a7c4e70b363b2281 48496 python-ceph_0.80.5-2_amd64.deb
2bca63e033d5ef2b17ddfe1b64da33e90faaac4e 26188 libcephfs-java_0.80.5-2_all.deb
ee0b639891d0c37988d1a009ce304f6eee113e1d 46448 libcephfs-jni_0.80.5-2_amd64.deb
7928444314bb61d60d35ba8e18e8d9d4c62bca47 274134
libcephfs-jni-dbg_0.80.5-2_amd64.deb
Checksums-Sha256:
593090435ed4b1c0b843b25892a5c97e9db740fa8431e42fb51d50554bc2c8c8 4378
ceph_0.80.5-2.dsc
aea3581fb0efb65922d026c52438609d80501cc51f4f2bb634cb13dae74edeef 110204
ceph_0.80.5-2.debian.tar.xz
344d5acaf75c98c49a8273967773da03a05c6e693f0af0955d70d5d15b5c368a 5649826
ceph_0.80.5-2_amd64.deb
5afabf9dff0eb98a1810b3c9bf6781e58588165f532eb9f4f5d3286099c976bd 95927364
ceph-dbg_0.80.5-2_amd64.deb
0a99edb728998f6c8b05222baa5697088954525fc09af9e676acb342d2b1c935 4164952
ceph-common_0.80.5-2_amd64.deb
310531b40f11c565cdacf78f25e5c4c8ebaf029f7a65691396aab6440140f2ea 69663986
ceph-common-dbg_0.80.5-2_amd64.deb
674b2f83add04601c5ba1a546474f588b9b31cdbb4b39859d1b735ec68342791 2215066
ceph-mds_0.80.5-2_amd64.deb
35cd5a8869b384d628a848af0d9b0a353e4e550a65ed55158bf1bfb33168ec13 34732222
ceph-mds-dbg_0.80.5-2_amd64.deb
5f09bd2790da94de606af620bb77061892f970318188a527acaecea5b827af92 1405466
ceph-fuse_0.80.5-2_amd64.deb
1cf8e0f14a7d55612f0874c0c162bc6b7cd4880c530aa8e5e887bb48f0e789c8 18329482
ceph-fuse-dbg_0.80.5-2_amd64.deb
5292d13f68455eecad0ade6f5749f0b445525f4d92dd5abc92915bb05d1b6dfc 25724
rbd-fuse_0.80.5-2_amd64.deb
cad05da4924d47cd7533d924d6744d94b5937c2e092dfa8ba55d830935117dc7 33296
rbd-fuse-dbg_0.80.5-2_amd64.deb
7e2cfcf5f1d18b00dc36e007827712a84474982d251b48739a64cc263288d197 38410
ceph-fs-common_0.80.5-2_amd64.deb
e8d7fcb7164edf37846900d1411a053f49617c50037170b198969ffc8b1f75d3 81966
ceph-fs-common-dbg_0.80.5-2_amd64.deb
711b02f5ab9d297fc5752b6221d269e481d30d183d832d84e09e55b5a0d0ad02 20896
ceph-resource-agents_0.80.5-2_all.deb
71b77b3e1cd0f3df0e60adfaf494a05ad96f53ed43e6fd7917787d037a044996 1598838
librados2_0.80.5-2_amd64.deb
3d783f004b302a37d9944f1f1d42337ad6dcd0d1e31d0f3ec864478c3404e527 20680700
librados2-dbg_0.80.5-2_amd64.deb
5605471dcf934cd2a020c9fce5a78ae18dc6f0b9e880239bb1d6ae01bd222219 1836354
librados-dev_0.80.5-2_amd64.deb
5e18fa63ed9491e64bc3d75ae708e281439d6db1c7938047505c57451c9d42de 361376
librbd1_0.80.5-2_amd64.deb
a5e96893135402be78a057bdf3e6d0808391da887859459f4c1edb0867a22dec 4726458
librbd1-dbg_0.80.5-2_amd64.deb
ef45a5fdae38eb52b4cfd264bfdff51bfe82a3675398f65ca75cf4af6f175741 5277584
librbd-dev_0.80.5-2_amd64.deb
713f68e276e5b3f53774bfd5979cde35bc3df80c40bbeb5f38e2d849d1b77df4 1686982
libcephfs1_0.80.5-2_amd64.deb
4d7d6daccd723d9be284420f8fa330f1f599dfd4dee7d8ec1e008cb796e20fd9 21131878
libcephfs1-dbg_0.80.5-2_amd64.deb
45b35aaf251b8601830bfb391e026d91c7b2182b91ed99c5892332e1bc3e34f4 24217168
libcephfs-dev_0.80.5-2_amd64.deb
15e35fe2c8a283eaef9f305657da4c6b9bfbce5105aa0c06671f4217e421218c 1046646
radosgw_0.80.5-2_amd64.deb
d82df8b9827d748c418b51e0b1ccbff2f8624a61a6c301be24ba39e468e25817 18082982
radosgw-dbg_0.80.5-2_amd64.deb
f21af1687ff2602cb7a90b4e4af8b77837457b4967bfbb82394707963d053df3 350608
rest-bench_0.80.5-2_amd64.deb
6fdee4cbd1e1c7a5655c416c3578970d981f8fcbb445bb6cde255e509fb5495e 4662924
rest-bench-dbg_0.80.5-2_amd64.deb
0b8422cd6960158c4f1d4422bd0f244f3c62d8af064237d8045502901d5124d8 16551440
ceph-test_0.80.5-2_amd64.deb
a7332bff0ccc615af6eb0ff48670d7c18782ca0dfcadc06fcfbfc793266b4a1b 323134370
ceph-test-dbg_0.80.5-2_amd64.deb
2e88596f51883da8d0e18b73b6a783facd37ef992c81b07607f84e7026283d67 48496
python-ceph_0.80.5-2_amd64.deb
2cb40b23968bd5174b27351b0d0620f5176ab03a2e179b19ac2cdd35afa125b4 26188
libcephfs-java_0.80.5-2_all.deb
34b4743a277e2dd86b2db5cb9f637a5ac958a4872038ea182f62ed7764d7d80b 46448
libcephfs-jni_0.80.5-2_amd64.deb
e4259fa1016c0c00dbac0570a2d475aa95797a558b9046a491a1f59a0e6638e7 274134
libcephfs-jni-dbg_0.80.5-2_amd64.deb
Files:
a3cb99d70c909b49433d1312534c8e8f 5649826 admin optional ceph_0.80.5-2_amd64.deb
e2d8c19947cc28b7ab8d7b9e5d40bc00 95927364 debug extra
ceph-dbg_0.80.5-2_amd64.deb
6f85fcc59a517f20aa93aea59b0fa180 4164952 admin optional
ceph-common_0.80.5-2_amd64.deb
40fbef8a2e4529b7ac42497e7e20c91a 69663986 debug extra
ceph-common-dbg_0.80.5-2_amd64.deb
8e69fa5bf01dd124b74ab90cfc48bd4a 2215066 admin optional
ceph-mds_0.80.5-2_amd64.deb
07120794f2e3c5dacf920d654d9bd6e4 34732222 debug extra
ceph-mds-dbg_0.80.5-2_amd64.deb
5217080d5550a75b8ac897d04e1dd435 1405466 admin optional
ceph-fuse_0.80.5-2_amd64.deb
21cab76fc540767877664efe233c9917 18329482 debug extra
ceph-fuse-dbg_0.80.5-2_amd64.deb
3ea7c6c2af02d785a28df54b1fcf1d1e 25724 admin optional
rbd-fuse_0.80.5-2_amd64.deb
a0b6cf403bf19226d195b18060624a69 33296 debug extra
rbd-fuse-dbg_0.80.5-2_amd64.deb
2e4bf3105a7d5a05b38da51fba2b6f21 38410 admin optional
ceph-fs-common_0.80.5-2_amd64.deb
a67b4f80b85bbeb931c5096456f5cdba 81966 debug extra
ceph-fs-common-dbg_0.80.5-2_amd64.deb
2e5c76b08d64cd7022ed45ad3be3b847 20896 admin extra
ceph-resource-agents_0.80.5-2_all.deb
4f0856cea574cb463fbf8554c93e5211 1598838 libs optional
librados2_0.80.5-2_amd64.deb
91c25ab336ebe7a49c0433db778e701b 20680700 debug extra
librados2-dbg_0.80.5-2_amd64.deb
c2ae05ca3f45a36e5b559b3093c5578f 1836354 libdevel optional
librados-dev_0.80.5-2_amd64.deb
29b17e13c12d3c31422183cd6a995e84 361376 libs optional
librbd1_0.80.5-2_amd64.deb
280033331f70951ffa56633b4133a945 4726458 debug extra
librbd1-dbg_0.80.5-2_amd64.deb
de6b58bb62b0c2a6990f0f135f7f434b 5277584 libdevel optional
librbd-dev_0.80.5-2_amd64.deb
1c3c6abcd893cdb638c936370b9f1955 1686982 libs optional
libcephfs1_0.80.5-2_amd64.deb
e684cd65b4224addc0eb23332e43296f 21131878 debug extra
libcephfs1-dbg_0.80.5-2_amd64.deb
ce0547d20f125928bff70deb3842acae 24217168 libdevel optional
libcephfs-dev_0.80.5-2_amd64.deb
9c5d770b731e3d788f6d39acca94a62e 1046646 admin optional
radosgw_0.80.5-2_amd64.deb
b7f2d24f96d8011a74fbbdb814da6540 18082982 debug extra
radosgw-dbg_0.80.5-2_amd64.deb
3991065682ddfca00ba29971547ce9c4 350608 admin optional
rest-bench_0.80.5-2_amd64.deb
b34bca1bc7a5d57060c87edab5252008 4662924 debug extra
rest-bench-dbg_0.80.5-2_amd64.deb
1a88c1da350c3a532f4f41d232068205 16551440 admin optional
ceph-test_0.80.5-2_amd64.deb
acbdf6fc375ac09bf81bbd70b3bc6f6a 323134370 debug extra
ceph-test-dbg_0.80.5-2_amd64.deb
4815e0f5a494344ffd151dda86992a74 48496 python optional
python-ceph_0.80.5-2_amd64.deb
5c711938aa5972c9341d1fdc4d9cb0df 26188 java optional
libcephfs-java_0.80.5-2_all.deb
1fe43bcaa907c6906fbc19e02360aeb8 46448 libs optional
libcephfs-jni_0.80.5-2_amd64.deb
ce38a993e4c7e9d5840e200b6b581402 274134 debug extra
libcephfs-jni-dbg_0.80.5-2_amd64.deb
e8f59dad061c4f09f5d5e6d6bfa1fca8 4378 admin optional ceph_0.80.5-2.dsc
fbb02e249968e7907cf9a31a99ea4806 110204 admin optional
ceph_0.80.5-2.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQIcBAEBCAAGBQJUFz+HAAoJEFK2u9lTlo0bE4wP/0Wpwnzg+WjV6JdzzLWgSS9W
ZIPSRNkmHj1yvTFCMFx9haxVg8tM0DCkg/IUDP6VcWHeKxfom/2R7SvWWsG+rNPf
v5Gp12G1F56AVKSYTKDDcBJ9nbQ9eklcMwzckKcgrQmK6fl86x4M/mVxdmedRKxT
T1uLl5mF+gQlDih3koUiBmAqRRuzqG0/YGxj2mb9G5wtj9Xqjtxlr1NydAP3pvaZ
C4M4LmfvmLQTZGSSmrAL4aFTxgPBkH96WRfLUhQv4nijzwOV/uYHrORHJE3XkpS5
6N9CqwwIMYtcFY0FAPwoNeZe7CVolIbPERA++87fB34ez6kWyR46i5k/nXM7+oKJ
cFQ3XDfMeZNzuBC41ehb6UDUX0lYK7Q6ipNllJMB6yoC4tsMpbNP534+Y0nhJ+SZ
RTH31j8CzhGxb1lloq948BfbRw+lce4oukU8uXDMg/n2I/t9eU2bobEi7s1OoSga
qIAXAqJUvyd5itNoD0QQkkfUVE/OqVP5Z4Ttkb1+7zVdTy1ZUvYPXpPNAzk4VEyH
ONATJjPWFt2jJn5xVUgqjyReVntWMXbZo0/MzPhX+p61eWyudmeCRjyBx+0000rl
BXOCulRWd27HT7em79TunBdsYDlTi1J6nlbb5CXtWxEOOUy58rxZYVRZCi438eOC
Rw6UKV80Uhfw30NWgsFm
=U9uB
-----END PGP SIGNATURE-----
--- End Message ---