summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Kefu Chai [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
cmake: define BOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT for
Signed-off-by: Kefu Chai <kchai@redhat.com>
Origin: upstream, https://github.com/ceph/ceph/commit/
3d708219092d0e89a1434c30ffc8a4999f062cc0.patch
Bug-Debian: https://bugs.debian.org/977243
Last-Update: 2021-03-24
Boost.Asio users
see also
https://www.boost.org/doc/libs/1_74_0/doc/html/boost_asio/std_executors.html#boost_asio.std_executors.polymorphic_i_o_executor
we could use `asio::any_io_executor` later on though for better
performance.
also, define CMP0093, so FindBoost reports Boost_VERSION in x.y.z
format. it is simpler to use `VERSION_GREATER_EQUAL` to compare its
version with 1.74 instead of its C macro version ("107000").
Gbp-Pq: Name cmake_define_BOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT_for_Boost.Asio_users.patch
Thomas Goirand [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
Make Ceph Python 3.9 aware
Forwarded: no
Last-Update: 2020-11-28
Add versions of interpreters Ceph didn't know about.
Gbp-Pq: Name make-ceph-python-3.9-aware.patch
Ceph Packaging Team [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
mds-purgequeue-use_uint64_t
===================================================================
Gbp-Pq: Name mds-purgequeue-use_uint64_t.patch
Ceph Packaging Team [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
Link with -pthread instead of -lpthread to fix FTBFS on riscv64
Forwarded: no
Last-Update: 2020-03-01
Gbp-Pq: Name riscv64-link-pthread.patch
Ceph Packaging Team [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
add-option-to-disable-ceph-dencoder
===================================================================
Gbp-Pq: Name add-option-to-disable-ceph-dencoder.patch
Ceph Packaging Team [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
fix-bash-completion-location
Gbp-Pq: Name fix-bash-completion-location
Ceph Packaging Team [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
debian-armel-armhf-buildflags
Gbp-Pq: Name debian-armel-armhf-buildflags.patch
Kefu Chai [Fri, 28 Jun 2019 03:35:54 +0000 (11:35 +0800)]
[PATCH] os/bluestore/BlueFS: use uint64_t for `len`
change the type of parameter `len` of `BlueFS::_read_random()` from
`size_t` to `uint64_t`.
i think the type of `size_t` comes from
`rocksdb::RandomAccessFile::Read(uint64_t offset, size_t n,
rocksdb::Slice* result, char* scratch)`. and when we implement this
method, we continued using `n`'s type. but, we are using it with
`std::min()`, for instance, where the template parameter type deduction
fails if the lhs and rhs parameters' types are different. so probaly the
better solution is to use `uint64_t` directly to avoid the the cast and
specializing the template.
Signed-off-by: Kefu Chai <kchai@redhat.com>
Gbp-Pq: Name bluefs-use-uint64_t-for-len.patch
Jesse Williamson [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
Adds max_connections to test display.
Origin: upstream, https://github.com/civetweb/civetweb/pull/776/commits/
3b8eb36676f70d06f8918ccf62029207c49cdda0
Bug: https://github.com/civetweb/civetweb/issues/775
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/
1838109
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/
1838109
Gbp-Pq: Name civetweb-755-1.8-somaxconn-configurable_test.patch
Jesse Williamson [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
Makes SOMAXCONN user-configurable.
Origin: upstream, https://github.com/civetweb/civetweb/pull/776/commits/
febab7dc38c9671577603425c54c20f841e27f97
Bug: https://github.com/civetweb/civetweb/issues/775
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/
1838109
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/
1838109
Gbp-Pq: Name civetweb-755-1.8-somaxconn-configurable.patch
Jesse Williamson [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
Adds max_connections to reference configuration.
Origin: upstream, https://github.com/civetweb/civetweb/pull/776/commits/
3b8eb36676f70d06f8918ccf62029207c49cdda0
Bug: https://github.com/civetweb/civetweb/issues/775
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/
1838109
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/
1838109
Gbp-Pq: Name civetweb-755-1.8-somaxconn-configurable_conf.patch
James Page james.page@ubuntu.com, Bernd Zeimetz [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
Avoid use of size_t when necessary
Forwarded: no
On 32 bit architectures size_t is not a 64 bit type, which
causes comparison mismatch failures during compilation.
Gbp-Pq: Name 32bit-avoid-size_t.patch
James Page james.page@ubuntu.com, Bernd Zeimetz [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
Avoid overloading on 32 bit architectures
Forwarded: no
unsigned and size_t are equivalent on 32 bit architectures,
so only define the size_t based overload of advance on 64
bit architectures.
https://wiki.debian.org/ArchitectureSpecificsMemo
Gbp-Pq: Name 32bit-avoid-overloading.patch
Ceph Packaging Team [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
disable-crypto
===================================================================
Gbp-Pq: Name disable-crypto.patch
Tiago Stürmer Daitx [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
use --release 7 instead of -source/-target
Bug-Ubuntu: https://launchpad.net/bugs/
1756854
Bug-Ubuntu: https://launchpad.net/bugs/
1766998
Forwarded: no
Last-Update: 2018-04-24
Instead of -source/-target ceph should be build with --release for OpenJDK 9
or later so that the bootclasspath is also set, as per JEP-247, otherwise it
risks incurring into binary incompatibility when run with an earlier OpenJDK.
OpenJDK 11 minimum compatibility release has been updated to 7.
Last-Update: 2018-04-24
Gbp-Pq: Name update-java-source-target-flags.patch
Mattias Ellert [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
ceph (14.2.21-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Compile ppc.c on all powerpc machines. Fixes 32 bit powerpc build
(Closes: #993642).
[dgit import unpatched ceph 14.2.21-1.1]
Mattias Ellert [Thu, 26 Aug 2021 08:36:49 +0000 (09:36 +0100)]
Import ceph_14.2.21-1.1.debian.tar.xz
[dgit import tarball ceph 14.2.21-1.1 ceph_14.2.21-1.1.debian.tar.xz]
Thomas Goirand [Thu, 27 May 2021 10:04:21 +0000 (11:04 +0100)]
Import ceph_14.2.21.orig.tar.gz
[dgit import orig ceph_14.2.21.orig.tar.gz]