]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/log
ceph.git
7 days agocrimson/os/seastore/omap_manager: count key length in the overwrite gap 70180/head
Matan Breizman [Sun, 26 Jul 2026 07:31:41 +0000 (07:31 +0000)]
crimson/os/seastore/omap_manager: count key length in the overwrite gap

ow_gap_from_last_entry() returns how much the node grows when the tail entry
is overwritten. However, it compared *value* lengths only.

overwriting pg-log key (31B) is longer than a _fastinfo key (9B) -
So the growth was under-counted by 22 bytes.

Also assert in _append()/_overwrite() that the write stays within capacity() to
avoid similar issues.

Signed-off-by: Matan Breizman <mbreizma@redhat.com>
10 days agocrimson/os/seastore/omap_manager: predict append (not overwrite) on initial_pending
Matan Breizman [Thu, 23 Jul 2026 12:09:42 +0000 (12:09 +0000)]
crimson/os/seastore/omap_manager: predict append (not overwrite) on initial_pending

An initial_pending LogNode always append_kv()s and never overwrites.

expect_overflow() was still called with can_ow=true whenever the tail entry is
_fastinfo. It then used only the overwrite gap while the append
itself consumed a full entryi - so the node rolled over far too late and
used_space() overran capacity().

This would result in `assert(capacity() >= used_space()`.

Gate can_ow on !is_initial_pending() so the append is predicted with the full
entry size and rolls over in time.

Signed-off-by: Matan Breizman <mbreizma@redhat.com>
10 days agocrimson/os/seastore/omap_manager: calculate the overwrite growth (gap)
Matan Breizman [Wed, 22 Jul 2026 08:58:25 +0000 (08:58 +0000)]
crimson/os/seastore/omap_manager: calculate the overwrite growth (gap)

The previous implementation computed ow_gap_from_last_entry() but never used
the result.
Use it to check only the additional space required when the tail
entry grows, which matches overwrite logic.

Note, this is a cleanup - behavior remains similar.

See 825c8f149cbaac97944235d5d006c59d0b0a0fc1

Signed-off-by: Matan Breizman <mbreizma@redhat.com>
11 days agocrimson/seastore: batch only txns with matching data_features
Matan Breizman [Tue, 21 Jul 2026 08:41:58 +0000 (08:41 +0000)]
crimson/seastore: batch only txns with matching data_features

Transaction::append() asserts both transactions share data_features.
The per-collection batcher merged queued client txns unconditionally,
so a data_features mismatch would be asserted in build_next_batch().

Use diffrent data_features as a grouping boundary.

Signed-off-by: Matan Breizman <mbreizma@redhat.com>
11 days agocrimson/seastore: run pg-log trim txns solo, off the batched path
Matan Breizman [Sun, 19 Jul 2026 13:14:37 +0000 (13:14 +0000)]
crimson/seastore: run pg-log trim txns solo, off the batched path

Per-collection batching merges many client txns into one seastore txn.
Batched OP_OMAP_RMKEYS is not stable yet, possibly due to an exposed
internal bug that is seen with the new behavior.
Avoid batching OMAP_RMKEYS for now.

Signed-off-by: Matan Breizman <mbreizma@redhat.com>
2 weeks agocrimson/seastore: fix LogNode overflow from unsigned underflow in expect_overflow
Matan Breizman [Sun, 19 Jul 2026 12:07:10 +0000 (12:07 +0000)]
crimson/seastore: fix LogNode overflow from unsigned underflow in expect_overflow

The can_ow branch of LogManager's expect_overflow computed:
```
remain = capacity() - get_last_pos() - reserved_len
```
all uint32 operands, once the log leaf node is near full
(get_last_pos() + reserved_len >= capacity()) this subtraction underflows.

The node never rolls to a new leaf, instead it overflows the
16 KB block at commit-time delta replay.

Captured at the replay overflow point (per-collection batching, 4K randwrite):

```
  LogNode OVERFLOW at replay: pos=16641 size=58 reserved_len=3098
                              reserved_size=6 capacity=16328 LIMIT=16384

  log_node.h : In function 'void LogKVNodeLayout::set_last_pos(uint32_t)',
               ceph_assert(pos <= LOG_NODE_BLOCK_SIZE)
```

Here reserved_len (3098) is accurate: ~13543 committed + 3098 pending =
16641 = pos, i.e. the node was already ~13.5 KB full and the predictor
should have rolled over. Instead capacity - get_last_pos - reserved_len
went negative (16328 - ~13273 - 3098 < 0), wrapped in uint32, and the
check passed; pos reached 16641 > 16384 and set_last_pos asserted.

This was exposed by the per-coll batching where many overwrites append in
a single txn.

Signed-off-by: Matan Breizman <mbreizma@redhat.com>
2 weeks agocrimson/seastore: cleanup collection-lock leftovers
Matan Breizman [Tue, 14 Jul 2026 14:15:53 +0000 (14:15 +0000)]
crimson/seastore: cleanup collection-lock leftovers

Signed-off-by: Matan Breizman <mbreizma@redhat.com>
2 weeks agocrimson/seastore: batch same-collection transactions
Matan Breizman [Tue, 14 Jul 2026 14:14:55 +0000 (14:14 +0000)]
crimson/seastore: batch same-collection transactions

Previously, the per-collection ordering_lock provided both ordering and
single-holder exclusion, causing same-collection transactions to be serialized
one at a time.

Replace that with a per-collection queue and a single dispatch loop. When a
collection has a batch in flight, newly arriving transactions are queued.
The dispatch loop later drains the queue and merges transactions into one
SeaStore transaction (batch). Resulting in a one build, one ool_write and one journal record for the entire batch.

Only one batch is in flight per collection, so same-collection concurrency is
still prevented and ordering is preserved by the queue.

Callbacks are unchanged: FuturizedStore drains each caller's on_commit before
enqueueing, so only ops are merged. Each caller's promise is fulfilled when the
merged batch commits.

Signed-off-by: Matan Breizman <mbreizma@redhat.com>
2 weeks agoMerge pull request #67286 from leonidc/nvme-gw-show-all
leonidc [Sun, 19 Jul 2026 10:47:10 +0000 (13:47 +0300)]
Merge pull request #67286 from leonidc/nvme-gw-show-all

nvmeofgw: introduce nvme-gw show-all

2 weeks agoMerge pull request #69616 from leonidc/beacon_timer_in_gw_created
leonidc [Sun, 19 Jul 2026 06:41:00 +0000 (09:41 +0300)]
Merge pull request #69616 from leonidc/beacon_timer_in_gw_created

nvmeofgw: arm beacon timeouts for GWs in Created state

2 weeks agoMerge pull request #69490 from leonidc/fix_relocation_stretched
leonidc [Sun, 19 Jul 2026 06:40:38 +0000 (09:40 +0300)]
Merge pull request #69490 from leonidc/fix_relocation_stretched

nvmeofgw: stretched cluster fix relocate

2 weeks agoMerge PR #70264 into main
Patrick Donnelly [Sun, 19 Jul 2026 01:35:14 +0000 (21:35 -0400)]
Merge PR #70264 into main

* refs/pull/70264/head:
debian/rules: Also exclude librgw and radosgw from dwz

Reviewed-by: Patrick Donnelly <pdonnell@ibm.com>
2 weeks agoMerge PR #70268 into main
Patrick Donnelly [Sat, 18 Jul 2026 18:29:24 +0000 (14:29 -0400)]
Merge PR #70268 into main

* refs/pull/70268/head:
common/lockdep: explicitly export g_lockdep visibility

Reviewed-by: Ilya Dryomov <idryomov@redhat.com>
2 weeks agoMerge pull request #70068 from xxhdx1985126/wip-seastore-new-trans-cc
Xuehan Xu [Sat, 18 Jul 2026 09:31:47 +0000 (17:31 +0800)]
Merge pull request #70068 from xxhdx1985126/wip-seastore-new-trans-cc

crimson/os/seastore/transaction: new conflict/no_conflict trans synchronization

Reviewed-by: Matan Breizman <mbreizma@redhat.com>
2 weeks agoMerge pull request #68911 from djgalloway/wip-63336
David Galloway [Fri, 17 Jul 2026 23:52:12 +0000 (19:52 -0400)]
Merge pull request #68911 from djgalloway/wip-63336

doc: sign-debs script for release process

2 weeks agoMerge pull request #70296 from djgalloway/wip-container-rocky10
David Galloway [Fri, 17 Jul 2026 19:57:48 +0000 (15:57 -0400)]
Merge pull request #70296 from djgalloway/wip-container-rocky10

container: default FROM_IMAGE to Rocky Linux 10

2 weeks agocontainer: default FROM_IMAGE to Rocky Linux 10 70296/head
David Galloway [Fri, 17 Jul 2026 18:34:44 +0000 (14:34 -0400)]
container: default FROM_IMAGE to Rocky Linux 10

Since tentacle, the preferred base image for ceph containers has been
Rocky Linux 10, and the CI tag-naming logic in build.sh already assumes
rockylinux-10 is the default fromtag for every branch except reef and
squid.  The actual build default was never flipped, though: anything
that ran build.sh without FROM_IMAGE set (e.g. the release container
job in ceph-build) still got a CentOS Stream 9 base.

Flip the Containerfile ARG and the build.sh fallback to
docker.io/rockylinux/rockylinux:10 so umbrella and later build from
Rocky 10 by default.  Builds that want a different base can still pass
FROM_IMAGE explicitly, as the CI pipeline does.

Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agoMerge pull request #69293 from smanjara/wip-datalog-ec
Shilpa Jagannath [Fri, 17 Jul 2026 17:13:17 +0000 (10:13 -0700)]
Merge pull request #69293 from smanjara/wip-datalog-ec

rgw: fix log_remove() -EIO on non-existent FIFO shards

2 weeks agocommon/lockdep: explicitly export g_lockdep visibility 70268/head
Patrick Donnelly [Fri, 17 Jul 2026 01:30:03 +0000 (21:30 -0400)]
common/lockdep: explicitly export g_lockdep visibility

Aggressive Link-Time Optimization (LTO) and stricter linker defaults
in newer toolchains (like GCC 13 on Ubuntu 24.04) can strip or
localize external global variables if their visibility is not
explicitly defined. Tagging g_lockdep with default visibility ensures
it remains accessible in the dynamic symbol table for external
binaries like monmaptool.

Assisted-by: Gemini
Fixes: https://tracker.ceph.com/issues/78321
Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
2 weeks agoMerge pull request #70054 from ceph/jfw-libfdb-reverse-select
Jesse Williamson [Fri, 17 Jul 2026 16:20:46 +0000 (09:20 -0700)]
Merge pull request #70054 from ceph/jfw-libfdb-reverse-select

libfdb: reverse-order selection

2 weeks agoMerge pull request #70232 from batrick/csc-membership-updates
Ilya Dryomov [Fri, 17 Jul 2026 16:03:50 +0000 (18:03 +0200)]
Merge pull request #70232 from batrick/csc-membership-updates

doc/governance: csc membership updates

Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
Reviewed-by: Sage McTaggart <sagemct@ibm.com>
Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
2 weeks agoMerge pull request #69751 from rhcs-dashboard/fix-hardware-tab
Afreen Misbah [Fri, 17 Jul 2026 15:01:46 +0000 (20:31 +0530)]
Merge pull request #69751 from rhcs-dashboard/fix-hardware-tab

mgr/dashboard: Fix hardware tab in health card

Reviewed-by: Pedro Gonzalez Gomez <pegonzal@redhat.com>
2 weeks agoMerge pull request #70046 from rhcs-dashboard/fix-IBMCEPH-15229
Afreen Misbah [Fri, 17 Jul 2026 13:49:26 +0000 (19:19 +0530)]
Merge pull request #70046 from rhcs-dashboard/fix-IBMCEPH-15229

Reviewed-by: Afreen Misbah <afreen@ibm.com>
2 weeks agoMerge pull request #70153 from ronen-fr/wip-rf-78124ecN
Ronen Friedman [Fri, 17 Jul 2026 13:48:06 +0000 (16:48 +0300)]
Merge pull request #70153 from ronen-fr/wip-rf-78124ecN

mon: require EC optimizations for Crimson EC pools

Reviewed-by: Alex Ainscow <aainscow@uk.ibm.com>
Reviewed-by: Bill Scales <bill_scales@uk.ibm.com>
2 weeks ago.githubmap: correct Anthony's name 70232/head
Patrick Donnelly [Thu, 16 Jul 2026 01:10:32 +0000 (21:10 -0400)]
.githubmap: correct Anthony's name

Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
2 weeks agodoc/governance: add Sage McTaggart to CSC
Patrick Donnelly [Wed, 15 Jul 2026 15:13:23 +0000 (11:13 -0400)]
doc/governance: add Sage McTaggart to CSC

Fixes: https://tracker.ceph.com/issues/77238
Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
2 weeks ago.githubmap: add Sage McTaggart
Patrick Donnelly [Wed, 15 Jul 2026 15:12:55 +0000 (11:12 -0400)]
.githubmap: add Sage McTaggart

Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
2 weeks agodoc/governance: add Kyle Bader
Patrick Donnelly [Wed, 15 Jul 2026 15:09:23 +0000 (11:09 -0400)]
doc/governance: add Kyle Bader

Fixes: https://tracker.ceph.com/issues/77572
Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
2 weeks ago.githubmap: add Kyle Bader
Patrick Donnelly [Wed, 15 Jul 2026 15:09:00 +0000 (11:09 -0400)]
.githubmap: add Kyle Bader

Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
2 weeks ago.githubmap: sort alphabetically
Patrick Donnelly [Thu, 16 Jul 2026 16:22:04 +0000 (12:22 -0400)]
.githubmap: sort alphabetically

    awk '/^#/ {print; next} {print | "sort --stable -f"}' .githubmap > .githubmap_sorted

This commit also removes two duplicates for zmc and nmshelke.

Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
2 weeks agoMerge pull request #69807 from syedali237/dashboard/accounts
Afreen Misbah [Fri, 17 Jul 2026 11:06:23 +0000 (16:36 +0530)]
Merge pull request #69807 from syedali237/dashboard/accounts

mgr/dashboard : migrate accounts table tabs to resource pages

Reviewed-by: Afreen Misbah <afreen@ibm.com>
Reviewed-by: Dnyaneshwari Talwekar <dtalweka@redhat.com>
om>

2 weeks agoMerge pull request #69784 from sunyuechi/wip-osd-network-min-fix
SrinivasaBharathKanta [Fri, 17 Jul 2026 09:54:49 +0000 (15:24 +0530)]
Merge pull request #69784 from sunyuechi/wip-osd-network-min-fix

osd: dump_osd_network min section now reports min not max

2 weeks agocrimson/os/seastore/transaction: new conflict/no_conflict trans 70068/head
Xuehan Xu [Wed, 8 Jul 2026 08:05:20 +0000 (16:05 +0800)]
crimson/os/seastore/transaction: new conflict/no_conflict trans
synchronization

Use seastar::shared_mutex to synchronize transactions when committing
no_conflict ones.

Specifically, this commit achieves conflict/no_conflict trans
synchronization by:
1. The no_conflict trans acquires locks on all the stable extents which
   it modifies.
2. The conflicting trans acquires shared locks on all the stable extents
   which it modifies.
3. The no_conflict trans releases the locks after its committing.
4. The conflicting trans releases the shared locks once it enter the
   prepare pipeline phase.

This commits makes sure that:
1. only transactions accessing the extents that the no_conflict trans
   is committing will be blocked.
2. avoid persisting extents that a committing no_conflict trans is
   modified

Compared to the old approach, this commit's strategy is much more
straightforward and understandable.

This commit is more performant as the no_conflict trans only blocks
the trans the modified extent set of which intersects with it, while,
in the old approach, all other transactions will be blocked once a
conflicting trans is blocked because it's blocked after it enters the
prepare pipeline phase

Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
2 weeks agoMerge pull request #69870 from pablodelara/isal_update
SrinivasaBharathKanta [Fri, 17 Jul 2026 09:50:05 +0000 (15:20 +0530)]
Merge pull request #69870 from pablodelara/isal_update

isa-l: Update isa-l submodule from 2.32.0 to 2.32.1

2 weeks agoMerge pull request #69822 from sunyuechi/wip-pick_address-iface
SrinivasaBharathKanta [Fri, 17 Jul 2026 09:49:09 +0000 (15:19 +0530)]
Merge pull request #69822 from sunyuechi/wip-pick_address-iface

common/pick_address: match against the current iface in pick_iface

2 weeks agomgr/dashboard: Fix hardware tab health status 69751/head
Afreen Misbah [Thu, 2 Jul 2026 21:10:08 +0000 (02:40 +0530)]
mgr/dashboard: Fix hardware tab health status

- fix overall health
- add warning health
- refactor

Signed-off-by: Afreen Misbah <afreen@ibm.com>
2 weeks agoMerge pull request #70234 from rhcs-dashboard/fix-fs-snapshot-flaky
Afreen Misbah [Fri, 17 Jul 2026 08:42:05 +0000 (14:12 +0530)]
Merge pull request #70234 from rhcs-dashboard/fix-fs-snapshot-flaky

mgr/dashboard: resolve e2e cephfs snapshot test flakyness

Reviewed-by: Afreen Misbah <afreen@ibm.com>
2 weeks agoMerge pull request #69943 from ronen-fr/wip-rf-bucket
Ronen Friedman [Fri, 17 Jul 2026 05:13:45 +0000 (08:13 +0300)]
Merge pull request #69943 from ronen-fr/wip-rf-bucket

rgw/bucket_logging: fix dangling string_view from ternary temporary

Reviewed-by: Yuval Lifshitz <ylifshit@redhat.com>
2 weeks agoMerge PR #70247 into main
Patrick Donnelly [Fri, 17 Jul 2026 01:19:50 +0000 (21:19 -0400)]
Merge PR #70247 into main

* refs/pull/70247/head:
mailmap, githubmap, organizationmap: add Anurag Raut

Reviewed-by: Patrick Donnelly <pdonnell@ibm.com>
2 weeks agoMerge pull request #70218 from avanthakkar/fix-read-cap-smb-pool
John Mulligan [Thu, 16 Jul 2026 22:43:40 +0000 (18:43 -0400)]
Merge pull request #70218 from avanthakkar/fix-read-cap-smb-pool

mgr/cephadm: scope .smb pool read cap to its own namespace

Reviewed-by: Anoop C S <anoopcs@cryptolab.net>
Reviewed-by: John Mulligan <jmulligan@redhat.com>
Reviewed-by: Shweta Sodani <ssodani@redhat.com>
2 weeks agoMerge pull request #70238 from anoopcs9/update-ctdbd-dirs
John Mulligan [Thu, 16 Jul 2026 22:40:36 +0000 (18:40 -0400)]
Merge pull request #70238 from anoopcs9/update-ctdbd-dirs

cephadm/smb: Update CTDB bind mount for new socket path

Reviewed-by: Shweta Sodani <ssodani@redhat.com>
Reviewed-by: John Mulligan <jmulligan@redhat.com>
Reviewed-by: Xavi Hernandez <xhernandez@gmail.com>
2 weeks agoMerge pull request #69876 from thmour/tmo-quota-fix
Adam Emerson [Thu, 16 Jul 2026 21:03:20 +0000 (17:03 -0400)]
Merge pull request #69876 from thmour/tmo-quota-fix

rgw: rgw_rest_account.cc: Fix quota variable types from int32_t to int64_t

Reviewed-by: Casey Bodley <cbodley@redhat.com>
2 weeks agoMerge pull request #69774 from mheler/wip-72013
Adam Emerson [Thu, 16 Jul 2026 21:02:35 +0000 (17:02 -0400)]
Merge pull request #69774 from mheler/wip-72013

rgw/http: skip pause/resume when the request already finished

Reviewed-by: Casey Bodley <cbodley@redhat.com>
2 weeks agoMerge pull request #68191 from sunyuechi/xxhash-rvv
Adam Emerson [Thu, 16 Jul 2026 21:01:45 +0000 (17:01 -0400)]
Merge pull request #68191 from sunyuechi/xxhash-rvv

src/xxHash: bump xxHash submodule to enable RISC-V RVV optimizations

Reviewed-by: Kefu Chai <k.chai@proxmox.com>
2 weeks agoMerge pull request #67725 from mheler/wip-rgw-transition-recompress
Adam Emerson [Thu, 16 Jul 2026 20:52:07 +0000 (16:52 -0400)]
Merge pull request #67725 from mheler/wip-rgw-transition-recompress

rgw: compress/decompress objects during lifecycle transitions

Reviewed-by: Casey Bodley <cbodley@redhat.com>
2 weeks agodebian/rules: Also exclude librgw and radosgw from dwz 70264/head
David Galloway [Thu, 16 Jul 2026 20:25:07 +0000 (16:25 -0400)]
debian/rules: Also exclude librgw and radosgw from dwz

Fixes: https://tracker.ceph.com/issues/78312
Signed-off-by: David Galloway <david.galloway@ibm.com>
2 weeks agomgr/dashboard: migrated accounts table tabs to resource pages 69807/head
Syed Ali Ul Hasan [Thu, 16 Jul 2026 19:24:16 +0000 (00:54 +0530)]
mgr/dashboard: migrated accounts table tabs to resource pages

- Fixed E2E tests for user, roles, accounts

- Fixes: https://tracker.ceph.com/issues/77778

- Fixes: https://tracker.ceph.com/issues/78254

Signed-off-by: Syed Ali Ul Hasan <syedaliulhasan19@gmail.com>
2 weeks agoMerge pull request #70200 from rhcs-dashboard/fix-footer-view-all
Afreen Misbah [Thu, 16 Jul 2026 19:11:25 +0000 (00:41 +0530)]
Merge pull request #70200 from rhcs-dashboard/fix-footer-view-all

mgr/dashboard: Fix the footer - view all button css in notification panel

Reviewed-by: Nizamudeen A <nia@redhat.com>
Reviewed-by: Sagar Gopale <sagar.gopale@ibm.com>
2 weeks agoMerge pull request #67057 from tchaikov/wip-debian-dwz
David Galloway [Thu, 16 Jul 2026 17:09:53 +0000 (13:09 -0400)]
Merge pull request #67057 from tchaikov/wip-debian-dwz

debian/rules: exclude ceph-osd-crimson from dwz compression

2 weeks agoMerge pull request #69978 from knrt10/fix-pg-backfill-scan
Kautilya Tripathi [Thu, 16 Jul 2026 17:00:34 +0000 (22:30 +0530)]
Merge pull request #69978 from knrt10/fix-pg-backfill-scan

crimson/osd: discard stale primary backfill scan after backfill finishes

2 weeks agocephadm/smb: Update CTDB bind mount for new socket path 70238/head
Anoop C S [Wed, 15 Jul 2026 18:41:13 +0000 (00:11 +0530)]
cephadm/smb: Update CTDB bind mount for new socket path

Samba recently changed CTDB to derive its runtime paths from Samba's
configure options instead of using a monolithic CTDB_RUNDIR[1].
With current packaging[2], the CTDB socket path moved from
/var/run/ctdb/ctdbd.socket to /run/samba/ctdb/ctdbd.socket.

Update the CTDB runtime bind mount target from /var/run/ctdb to
/run/samba/ctdb to match the new CTDB_SOCKETDIR. Additionally,
create the CTDB pid directory, /run/ctdb, and lock directory,
/var/lib/samba/lock/ctdb, on the host side as they are hidden
when their parent directories are bind mounted over.

Ideally these directories should be created by sambacc but sambacc is
included in samba-container images that may be built with different
Samba packages where these path configurations might not hold true.

[1] https://gitlab.com/samba-team/samba/-/merge_requests/4631
[2] https://github.com/samba-in-kubernetes/samba-build/blob/main/packaging/samba-master.spec.j2

Fixes: https://tracker.ceph.com/issues/78309
Signed-off-by: Anoop C S <anoopcs@cryptolab.net>
2 weeks agoMerge pull request #70245 from rhcs-dashboard/hide-auth
Afreen Misbah [Thu, 16 Jul 2026 15:21:19 +0000 (20:51 +0530)]
Merge pull request #70245 from rhcs-dashboard/hide-auth

Reviewed-by: Afreen Misbah <afreen@ibm.com>
2 weeks agoMerge pull request #70230 from rhcs-dashboard/service-table-fix
Afreen Misbah [Thu, 16 Jul 2026 15:14:13 +0000 (20:44 +0530)]
Merge pull request #70230 from rhcs-dashboard/service-table-fix

Reviewed-by: Afreen Misbah <afreen@ibm.com>
Reviewed-by: Nizamudeen A <nia@redhat.com>
2 weeks agodebian/rules: exclude ceph-osd-crimson from dwz compression 67057/head
Kefu Chai [Fri, 23 Jan 2026 07:04:47 +0000 (15:04 +0800)]
debian/rules: exclude ceph-osd-crimson from dwz compression

When building with DWZ enabled, the debian packaging fails with:
```
  dh_dwz: error: Aborting due to earlier error
```
Running the dwz command manually reveals the root cause:
```
  $ dwz -mdebian/ceph-osd-crimson/usr/lib/debug/.dwz/x86_64-linux-gnu/ceph-osd-crimson.debug \
    -M/usr/lib/debug/.dwz/x86_64-linux-gnu/ceph-osd-crimson.debug -- \
    debian/ceph-osd-crimson/usr/bin/ceph-osd-crimson \
    debian/ceph-osd-crimson/usr/bin/crimson-store-nbd
  dwz: debian/ceph-osd-crimson/usr/bin/ceph-osd-crimson: Too many DIEs, not optimizing
  dwz: Too few files for multifile optimization
```
The dwz tool has a limit on the number of DWARF DIEs (Debug Information
Entries) it can process. The ceph-osd-crimson binary, being a large C++
executable with extensive template usage, exceeds this limit, causing
dwz to exit with status 1 and fail the build.

This change excludes only ceph-osd-crimson from dwz processing using
the -X flag, allowing other binaries in the package to still benefit
from DWARF compression while avoiding the build failure.

Please note, we always disable DWZ in ceph-build's ceph-dev-pipeline.

Fixes: https://tracker.ceph.com/issues/78303
Signed-off-by: Kefu Chai <k.chai@proxmox.com>
2 weeks agoMerge pull request #69855 from sunyuechi/wip-crimson-ec-backend-transaction-fixes
Kefu Chai [Thu, 16 Jul 2026 11:04:14 +0000 (19:04 +0800)]
Merge pull request #69855 from sunyuechi/wip-crimson-ec-backend-transaction-fixes

crimson/osd/ec_backend: fix transaction translation

Reviewed-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
Reviewed-by: Shraddha Agrawal <shraddhaag@ibm.com>
Reviewed-by: Kefu Chai <k.chai@proxmox.com>
2 weeks agoMerge pull request #70103 from tchaikov/wip-crimson-first-old-map
Kefu Chai [Thu, 16 Jul 2026 11:01:37 +0000 (19:01 +0800)]
Merge pull request #70103 from tchaikov/wip-crimson-first-old-map

crimson/osd: start from `first` when older maps are trimmed

Reviewed-by: Xuehan Xu <xuxuehan@qianxin.com>
Reviewed-by: Aishwarya Mathuria <amathuri@redhat.com>
2 weeks agoMerge pull request #70119 from tchaikov/wip-seastore-journal-greedy-dispatch
Matan Breizman [Thu, 16 Jul 2026 10:10:21 +0000 (13:10 +0300)]
Merge pull request #70119 from tchaikov/wip-seastore-journal-greedy-dispatch

crimson/os/seastore/journal: dispatch records greedily while io slots are free

Reviewed-by: Matan Breizman <mbreizma@redhat.com>
Reviewed-by: Josh Durgin <jdurgin@redhat.com>
Reviewed-by: Xuehan Xu <xuxuehan@qianxin.com>
2 weeks agoMerge pull request #70213 from rhcs-dashboard/fix-78230-main
Aashish Sharma [Thu, 16 Jul 2026 09:48:21 +0000 (15:18 +0530)]
Merge pull request #70213 from rhcs-dashboard/fix-78230-main

monitoring: Rename Ceph Object - Sync Overview - Replication (objects) from Source Zone

Reviewed-by: Afreen Misbah <afreen@ibm.com>
2 weeks agomailmap, githubmap, organizationmap: add Anurag Raut 70247/head
Anurag Raut [Thu, 16 Jul 2026 09:27:10 +0000 (14:57 +0530)]
mailmap, githubmap, organizationmap: add Anurag Raut

Signed-off-by: Anurag Raut <anuragtraut08@ibm.com>
2 weeks agoMerge pull request #70219 from ronen-fr/wip-rf-fragments-crimson
Ronen Friedman [Thu, 16 Jul 2026 09:13:47 +0000 (12:13 +0300)]
Merge pull request #70219 from ronen-fr/wip-rf-fragments-crimson

Crimson/net: cap outgoing message batch size to prevent packet fragment overflow

Reviewed-by: Matan Breizman <mbreizma@redhat.com>
2 weeks agocrimson/os/seastore/transaction: drop the old trans-blocking mechinary
Xuehan Xu [Wed, 8 Jul 2026 07:15:27 +0000 (15:15 +0800)]
crimson/os/seastore/transaction: drop the old trans-blocking mechinary

This old trans-blocking mechinary can be hard to maintain in the future

Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
2 weeks agoMerge PR #68813 into main
Venky Shankar [Thu, 16 Jul 2026 06:13:24 +0000 (11:43 +0530)]
Merge PR #68813 into main

* refs/pull/68813/head:
tools/cephfs: make journal pointer/header failure explicit
doc/cephfs: add note explainin the new batching technique
tools/cephfs: document --max-rss usage in first-damage.py
qa: test cephfs-journal-recovery event recover_dentries summary
tools/cephfs: flush every journal event as soon as it is scanned

Reviewed-by: Venky Shankar <vshankar@redhat.com>
Reviewed-by: Patrick Donnelly <pdonnell@ibm.com>
2 weeks agomgr/dashboard: mgr/dashboard: Hide Authentication section when "Allow All Hosts"... 70245/head
pujashahu [Thu, 16 Jul 2026 06:06:58 +0000 (11:36 +0530)]
mgr/dashboard: mgr/dashboard: Hide Authentication section when "Allow All Hosts" is enabled

Fixes: https://tracker.ceph.com/issues/78280
Signed-off-by: pujaoshahu <pshahu@redhat.com>
2 weeks agoMerge PR #68924 into main
Venky Shankar [Thu, 16 Jul 2026 06:09:01 +0000 (11:39 +0530)]
Merge PR #68924 into main

* refs/pull/68924/head:
tools/cephfs_mirror: Fix failed-to-syncing state priority across metrics paths

Reviewed-by: Karthik U S <karthik.u.s1@ibm.com>
Reviewed-by: Jos Collin <jcollin@redhat.com>
2 weeks agoMerge pull request #69466 from kotreshhr/fs-mirror-stale-stat-size
Venky Shankar [Thu, 16 Jul 2026 06:08:26 +0000 (11:38 +0530)]
Merge pull request #69466 from kotreshhr/fs-mirror-stale-stat-size

tools/cephfs-mirror: Fix truncated sync from stale crawl-time file size

Reviewed-by: Venky Shankar <vshankar@redhat.com>
2 weeks agoMerge pull request #69992 from sunyuechi/wip-rbd-mirror-unsupported-mode-return
Ilya Dryomov [Wed, 15 Jul 2026 22:23:11 +0000 (00:23 +0200)]
Merge pull request #69992 from sunyuechi/wip-rbd-mirror-unsupported-mode-return

rbd-mirror: return after finishing on unsupported mirror mode

Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
2 weeks agoMerge pull request #70027 from sunyuechi/rbd-mirror-fix-peerspec-weak-ordering
Ilya Dryomov [Wed, 15 Jul 2026 22:22:24 +0000 (00:22 +0200)]
Merge pull request #70027 from sunyuechi/rbd-mirror-fix-peerspec-weak-ordering

rbd-mirror: fix strict weak ordering in PeerSpec::operator<

Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
2 weeks agoMerge pull request #70033 from sunyuechi/rbd-mirror-status-updater-unlock
Ilya Dryomov [Wed, 15 Jul 2026 22:21:24 +0000 (00:21 +0200)]
Merge pull request #70033 from sunyuechi/rbd-mirror-status-updater-unlock

rbd-mirror: take MirrorStatusUpdater lock by value in queue_update_task

Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
2 weeks agoMerge pull request #70039 from VinayBhaskar-V/wip-group-snap-list
Ilya Dryomov [Wed, 15 Jul 2026 19:37:12 +0000 (21:37 +0200)]
Merge pull request #70039 from VinayBhaskar-V/wip-group-snap-list

pybind/rbd: handle non-existent groups properly in list_snaps()

Reviewed-by: Ramana Raja <rraja@redhat.com>
Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
2 weeks agoMerge pull request #69623 from sunyuechi/wip-iocache-reply-leak-teardown
Ilya Dryomov [Wed, 15 Jul 2026 19:35:21 +0000 (21:35 +0200)]
Merge pull request #69623 from sunyuechi/wip-iocache-reply-leak-teardown

tools/immutable_object_cache: don't leak in-flight replies on teardown

Reviewed-by: Kefu Chai <k.chai@proxmox.com>
Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
2 weeks agoMerge pull request #69892 from phlogistonjohn/jjm-teuth-remotectl
John Mulligan [Wed, 15 Jul 2026 16:56:20 +0000 (12:56 -0400)]
Merge pull request #69892 from phlogistonjohn/jjm-teuth-remotectl

smb: add a teuthology test that exercises the gRPC over TCP interface of smb remote-control

Reviewed-by: Avan Thakkar <athakkar@redhat.com>
Reviewed-by: Rabinarayan Panigrahi <rapanigr@redhat.com>
2 weeks agoMerge pull request #70006 from BBoozmen/wip-oozmen-75716-75715
Oguzhan Ozmen [Wed, 15 Jul 2026 16:31:30 +0000 (12:31 -0400)]
Merge pull request #70006 from BBoozmen/wip-oozmen-75716-75715

rgw: copy_obj_data() record uncompressed size for a compressed source

2 weeks agomgr/dashboard: resolve e2e cephfs snapshot test flakyness 70234/head
Pedro Gonzalez Gomez [Wed, 15 Jul 2026 15:57:32 +0000 (17:57 +0200)]
mgr/dashboard: resolve e2e cephfs snapshot test flakyness

Signed-off-by: Pedro Gonzalez Gomez <pegonzal@ibm.com>
2 weeks agoMerge pull request #69000 from aainscow/primaryfirst_fix
Alex Ainscow [Wed, 15 Jul 2026 15:37:02 +0000 (16:37 +0100)]
Merge pull request #69000 from aainscow/primaryfirst_fix

osd: get_primary_shard should not call pgtemp_undo_primaryfirst

Reviewed-by: Bill Scales <bill_scales@uk.ibm.com>
2 weeks agomgr/dashboard: services page flickering with empty table 70230/head
Naman Munet [Wed, 15 Jul 2026 14:11:14 +0000 (19:41 +0530)]
mgr/dashboard: services page flickering with empty table

fixes: https://tracker.ceph.com/issues/78247

why the changes were made:
The Services table had autoSave enabled by default, which persists table state (including sort configuration) to browser localStorage. This created a conflict because:

The table uses server-side pagination ([serverSide]="true")
The table auto-reloads every 5 seconds ([autoReload]="5000")
On initialization, the table would load stale sort configuration from localStorage
This cached sort state would override the intended default sort (by service_name ascending)
User sort interactions would be saved to localStorage but could conflict with server-side sort handling

Signed-off-by: Naman Munet <naman.munet@ibm.com>
2 weeks agoMerge pull request #69420 from kginonredhat/issue-77250-clean
kobi ginon [Wed, 15 Jul 2026 13:04:35 +0000 (16:04 +0300)]
Merge pull request #69420 from kginonredhat/issue-77250-clean

qa/mgr: fix influx module_selftest health warning noise

2 weeks agoMerge PR #69320 into main
Venky Shankar [Wed, 15 Jul 2026 11:56:59 +0000 (17:26 +0530)]
Merge PR #69320 into main

* refs/pull/69320/head:
qa:/cephfs: separate out ceph-fuse upgrade tests under fs:upgrade
qa/cephfs: reject ceph-fuse upgrade jobs to reduce failure noise

Reviewed-by: Kotresh Hiremath Ravishankar <khiremat@redhat.com>
2 weeks agoMerge pull request #70188 from yuvalif/wip-yuval-78214
Yuval Lifshitz [Wed, 15 Jul 2026 11:54:37 +0000 (14:54 +0300)]
Merge pull request #70188 from yuvalif/wip-yuval-78214

test/kafka: support archived kafka versions

2 weeks agorimson/net: cap outgoing message batch size to prevent seastar packet fragment overflow 70219/head
Ronen Friedman [Wed, 15 Jul 2026 11:37:32 +0000 (11:37 +0000)]
rimson/net: cap outgoing message batch size to prevent seastar packet fragment overflow

During heavy backfill, sweep_out_pending_msgs_to_sent() could accumulate
more than 65535 buffer fragments in a single bufferlist, overflowing
seastar's uint16_t packet fragment counter and triggering an assertion.
Limit the sweep to crimson_osd_max_send_buffers fragments
per write; remaining messages are sent in subsequent dispatch iterations.

Fixes: https://tracker.ceph.com/issues/75600
Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
2 weeks agomgr/dashboard: add hardware health unit tests and status constants
Afreen Misbah [Thu, 25 Jun 2026 20:59:06 +0000 (02:29 +0530)]
mgr/dashboard: add hardware health unit tests and status constants

Added Python unit tests and frontend unit tests

Signed-off-by: Afreen Misbah <afreen@ibm.com>
2 weeks agomgr/dashboard: fix hardware health card icon rendering
Afreen Misbah [Thu, 25 Jun 2026 18:59:11 +0000 (00:29 +0530)]
mgr/dashboard: fix hardware health card icon rendering

Hardware category icons  were rendering as empty SVGs because of wrong reference

Signed-off-by: Afreen Misbah <afreen@ibm.com>
2 weeks agomgr/dashboard: fix hardware status parsing for health
Afreen Misbah [Thu, 25 Jun 2026 18:58:06 +0000 (00:28 +0530)]
mgr/dashboard: fix hardware status parsing for health

Atollon return status as a plain string ("OK") instead of
the dict format ({"health": "OK", "state": "Enabled"}) used by
other BMCs. This caused KeyError/AttributeError.

Added _get_health() helper that handles both formats:
- dict with nested health key
- plain string status
- missing or non-dict components

Signed-off-by: Afreen Misbah <afreen@ibm.com>
2 weeks agomgr/cephadm: scope .smb pool read cap to its own namespace 70218/head
Avan Thakkar [Wed, 15 Jul 2026 11:11:11 +0000 (16:41 +0530)]
mgr/cephadm: scope .smb pool read cap to its own namespace

Scope the .smb pool read cap to the same namespace already
used by the adjacent cluster-meta rwx cap.

Fixes: https://tracker.ceph.com/issues/78235
Signed-off-by: Avan Thakkar <athakkar@redhat.com>
2 weeks agomgr/dashboard: Fix the footer - view all button css in notification panel 70200/head
Afreen Misbah [Tue, 14 Jul 2026 16:37:19 +0000 (22:07 +0530)]
mgr/dashboard: Fix the footer - view all button css in notification panel

Fixes https://tracker.ceph.com/issues/78222

Signed-off-by: Afreen Misbah <afreen@ibm.com>
2 weeks agoMerge pull request #69940 from ronen-fr/wip-rf-336681-1upd
Ronen Friedman [Wed, 15 Jul 2026 09:33:22 +0000 (12:33 +0300)]
Merge pull request #69940 from ronen-fr/wip-rf-336681-1upd

crimson/mgr: prevent pg stats report pile-up in overloaded store

Reviewed-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
Reviewed-by: Matan Breizman <mbreizma@redhat.com>
2 weeks agomgr/dashboard: add validation for username 70046/head
Sagar Gopale [Wed, 8 Jul 2026 14:48:13 +0000 (20:18 +0530)]
mgr/dashboard: add validation for username

Signed-off-by: Sagar Gopale <sagar.gopale@ibm.com>
2 weeks agoMerge pull request #70077 from AliMasarweh/wip-alimasa-global-cors
Ali Masarwa [Wed, 15 Jul 2026 08:49:09 +0000 (11:49 +0300)]
Merge pull request #70077 from AliMasarweh/wip-alimasa-global-cors

RGW|global CORS: fix missing headers

Reviewed-by: Naman Munet <naman.munet@ibm.com>
2 weeks agomonitoring: Rename Ceph Object - Sync Overview - Replication (objects) from Source... 70213/head
Aashish Sharma [Wed, 15 Jul 2026 08:21:23 +0000 (13:51 +0530)]
monitoring: Rename Ceph Object - Sync Overview - Replication (objects) from Source Zone

Replication (objects) from Source Zone title is misleading, the panel actually shows How many objects are being replicated per second

Fixes: https://tracker.ceph.com/issues/78230
Signed-off-by: Aashish Sharma <aasharma@redhat.com>
2 weeks agoMerge pull request #69455 from sunyuechi/wip-crimson-messenger-thrash-mem
Kefu Chai [Wed, 15 Jul 2026 07:06:01 +0000 (15:06 +0800)]
Merge pull request #69455 from sunyuechi/wip-crimson-messenger-thrash-mem

crimson/test: shrink messenger-thrash max_message_len to 1MB

Reviewed-by: Matan Breizman <mbreizma@redhat.com>
Reviewed-by: Kefu Chai <k.chai@proxmox.com>
2 weeks agoMerge pull request #70056 from tchaikov/wip-debian-remove-unused-deps
Kefu Chai [Wed, 15 Jul 2026 03:06:10 +0000 (11:06 +0800)]
Merge pull request #70056 from tchaikov/wip-debian-remove-unused-deps

debian: drop unused deps from ceph-mgr-modules-core.requires

Reviewed-by: David Galloway <david.galloway@ibm.com>
2 weeks agoTweak block_generator<> to use transactors! 70054/head
Jesse F. Williamson [Tue, 14 Jul 2026 19:29:05 +0000 (12:29 -0700)]
Tweak block_generator<> to use transactors!

A pleasant improvement to the implementation.

Signed-off-by: Jesse F. Williamson <jfw@ibm.com>
2 weeks agoMerge pull request #68922 from mheler/wip-rgw-cloud-tier-503-backoff
mheler [Tue, 14 Jul 2026 18:44:13 +0000 (13:44 -0500)]
Merge pull request #68922 from mheler/wip-rgw-cloud-tier-503-backoff

rgw/cloud-tier: retry on 503 from remote endpoint

2 weeks agoMerge PR #69886 into main
Patrick Donnelly [Tue, 14 Jul 2026 14:07:47 +0000 (10:07 -0400)]
Merge PR #69886 into main

* refs/pull/69886/head:
doc: squid 19.2.5 release notes

Reviewed-by: Redouane Kachach <rkachach@redhat.com>
Reviewed-by: Laura Flores <lflores@redhat.com>
Reviewed-by: Adam C. Emerson <aemerson@redhat.com>
Reviewed-by: Patrick Donnelly <pdonnell@ibm.com>
2 weeks agoMerge pull request #68503 from ifed01/wip-ifed-fix-ncb-expand
Igor Fedotov [Tue, 14 Jul 2026 13:23:36 +0000 (16:23 +0300)]
Merge pull request #68503 from ifed01/wip-ifed-fix-ncb-expand

 os/bluestore: do not add expanded space to allocator after allocmap recovery.

Reviewed-by: Adam Kupczyk <akupczyk@ibm.com>
2 weeks agotest/kafka: support archived kafka versions 70188/head
Yuval Lifshitz [Tue, 14 Jul 2026 13:20:14 +0000 (13:20 +0000)]
test/kafka: support archived kafka versions

Fixes: https://tracker.ceph.com/issues/78214
Signed-off-by: Yuval Lifshitz <ylifshit@ibm.com>
2 weeks agoMerge pull request #61670 from ShwetaBhosale1/fix_issue_69502_nfs_ratelimiting_doc
Redouane Kachach [Tue, 14 Jul 2026 12:30:52 +0000 (14:30 +0200)]
Merge pull request #61670 from ShwetaBhosale1/fix_issue_69502_nfs_ratelimiting_doc

mgr/nfs: Documentation for NFS ratelimiting commands

Reviewed-by: Anthony D'Atri <anthony.datri@gmail.com>
2 weeks agoMerge pull request #70168 from sunyuechi/pybind-tempita-build-dir
Kefu Chai [Tue, 14 Jul 2026 11:59:20 +0000 (19:59 +0800)]
Merge pull request #70168 from sunyuechi/pybind-tempita-build-dir

pybind: write Tempita-processed pyx to the build directory

Reviewed-by: Kefu Chai <k.chai@proxmox.com>
Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
2 weeks agoMerge pull request #70138 from anthonyeleven/improvededup
Anthony D'Atri [Tue, 14 Jul 2026 10:45:45 +0000 (06:45 -0400)]
Merge pull request #70138 from anthonyeleven/improvededup

doc/radosgw: Improve s3_objects_dedup.rst

2 weeks agodoc: mgr/nfs: Documentation for NFS ratelimiting commands 61670/head
Shweta Bhosale [Thu, 6 Feb 2025 08:12:44 +0000 (13:42 +0530)]
doc: mgr/nfs: Documentation for NFS ratelimiting commands

Fixes: https://tracker.ceph.com/issues/69502
Signed-off-by: Shweta Bhosale <Shweta.Bhosale1@ibm.com>
2 weeks agoMerge pull request #69968 from rhcs-dashboard/fix-rgw-cache-invalid
Afreen Misbah [Tue, 14 Jul 2026 08:16:08 +0000 (13:46 +0530)]
Merge pull request #69968 from rhcs-dashboard/fix-rgw-cache-invalid

mgr/dashboard: Stale RGW user/account metadata cache in mgr after delete and recreate

Reviewed-by: Afreen Misbah <afreen@ibm.com>