]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
crimson/.../circular_bounded_journal: remove apparently obsolete references to applied_to
authorSamuel Just <sjust@redhat.com>
Tue, 26 Aug 2025 15:43:11 +0000 (08:43 -0700)
committerSamuel Just <sjust@redhat.com>
Fri, 5 Sep 2025 22:22:10 +0000 (15:22 -0700)
Signed-off-by: Samuel Just <sjust@redhat.com>
src/crimson/os/seastore/journal/circular_bounded_journal.h

index 16278df6cfe1c94e129c55bc0817273e296e907e..d5447ff687fa287119fe9be7d1661ab801a75bdb 100644 (file)
@@ -39,19 +39,13 @@ using RBMDevice = random_block_device::RBMDevice;
  *
  * - Commit time
  * After submit_record is done, written_to is increased(this in-memory value)
- * ---written_to represents where the new record will be appended. Note that
- * applied_to is not changed here.
+ * ---written_to represents where the new record will be appended.
  *
  * - Replay time
  * At replay time, CBJournal begins to replay records in CBjournal by reading
  * records from dirty_tail. Then, CBJournal examines whether the records is valid
  * one by one, at which point written_to is recovered
- * if the valid record is founded. Note that applied_to is stored
- * permanently when the apply work---applying the records in CBJournal to RBM---
- * is done by CBJournal (TODO).
- *
- * TODO: apply records from CircularBoundedJournal to RandomBlockManager
- *
+ * if the valid record is founded.
  */
 
 constexpr uint64_t DEFAULT_BLOCK_SIZE = 4096;