945dc70
--- ceph-17.2.5/src/common/subsys_types.h.orig	2023-01-17 05:29:55.711592884 -0500
945dc70
+++ ceph-17.2.5/src/common/subsys_types.h	2023-01-17 05:31:05.759282197 -0500
945dc70
@@ -53,7 +53,7 @@
945dc70
 #undef DEFAULT_SUBSYS
945dc70
 }
945dc70
 
945dc70
-constexpr static std::uint8_t
945dc70
+constexpr static uint8_t
945dc70
 ceph_subsys_get_max_default_level(const std::size_t subidx) {
945dc70
   const auto item = ceph_subsys_get_as_array()[subidx];
945dc70
   return std::max(item.log_level, item.gather_level);
945dc70
--- ceph-17.2.5/src/msg/async/compression_onwire.h.orig	2023-01-17 07:34:31.923701878 -0500
945dc70
+++ ceph-17.2.5/src/msg/async/compression_onwire.h	2023-01-17 07:35:04.493093534 -0500
945dc70
@@ -44,7 +44,7 @@
945dc70
 
945dc70
   class TxHandler final : private Handler {
945dc70
   public:
945dc70
-    TxHandler(CephContext* const cct, CompressorRef compressor, int mode, std::uint64_t min_size)
945dc70
+    TxHandler(CephContext* const cct, CompressorRef compressor, int mode, uint64_t min_size)
945dc70
       : Handler(cct, compressor),
945dc70
 	m_min_size(min_size),
945dc70
 	m_mode(static_cast<Compressor::CompressionMode>(mode))
945dc70
@@ -97,7 +97,7 @@
945dc70
     static rxtx_t create_handler_pair(
945dc70
       CephContext* ctx,
945dc70
       const CompConnectionMeta& comp_meta,
945dc70
-      std::uint64_t compress_min_size);
945dc70
+      uint64_t compress_min_size);
945dc70
   };
945dc70
 }
945dc70
 
945dc70
--- ceph-17.2.5/src/msg/async/crypto_onwire.h.orig	2023-01-17 07:35:35.535513714 -0500
945dc70
+++ ceph-17.2.5/src/msg/async/crypto_onwire.h	2023-01-17 07:35:46.578307452 -0500
945dc70
@@ -95,7 +95,7 @@
945dc70
   // Transmitter can append extra bytes of ciphertext at the -final step.
945dc70
   // This method return how much was added, and thus let client translate
945dc70
   // plaintext size into ciphertext size to grab from wire.
945dc70
-  virtual std::uint32_t get_extra_size_at_final() = 0;
945dc70
+  virtual uint32_t get_extra_size_at_final() = 0;
945dc70
 
945dc70
   // Instance of RxHandler must be reset before doing any decrypt-update
945dc70
   // step. This applies also to situation when decrypt-final was already
945dc70
--- ceph-17.2.5/src/common/Cycles.h.orig	2023-01-17 07:56:19.787662012 -0500
945dc70
+++ ceph-17.2.5/src/common/Cycles.h	2023-01-17 07:56:57.852980655 -0500
945dc70
@@ -29,8 +29,9 @@
945dc70
  */
945dc70
 
945dc70
 
945dc70
-#ifndef CEPH_CYCLES_H
945dc70
-#define CEPH_CYCLES_H
945dc70
+#pragma once
945dc70
+
945dc70
+#include <cstdint>
945dc70
 
945dc70
 /**
945dc70
  * This class provides static methods that read the fine-grain CPU
945dc70
@@ -112,4 +113,3 @@
945dc70
   }
945dc70
 };
945dc70
 
945dc70
-#endif  // CEPH_CYCLES_H
945dc70
--- ceph-17.2.5/src/test/librados/op_speed.cc.orig	2023-01-17 08:57:37.078531022 -0500
945dc70
+++ ceph-17.2.5/src/test/librados/op_speed.cc	2023-01-17 08:57:58.259139439 -0500
945dc70
@@ -9,7 +9,7 @@
945dc70
   for (int i = 0; i < to_create; ++i) {
945dc70
     librados::ObjectReadOperation op;
945dc70
     bufferlist bl;
945dc70
-    std::uint64_t sz;
945dc70
+    uint64_t sz;
945dc70
     struct timespec tm;
945dc70
     std::map<std::string, ceph::buffer::list> xattrs;
945dc70
     std::map<std::string, ceph::buffer::list> omap;
945dc70
--- ceph-17.2.5/src/test/mon/test_log_rss_usage.cc.orig	2023-01-17 10:14:37.552820230 -0500
945dc70
+++ ceph-17.2.5/src/test/mon/test_log_rss_usage.cc	2023-01-17 10:15:12.319202506 -0500
945dc70
@@ -5,6 +5,7 @@
945dc70
 #include <string>
945dc70
 #include <iostream>
945dc70
 #include <fstream>
945dc70
+#include <cstdint>
945dc70
 #include <stdlib.h>
945dc70
 #include <stdio.h>
945dc70
 #include <unistd.h>
945dc70
--- ceph-17.2.5/src/librbd/api/PoolMetadata.h.orig	2023-01-17 13:07:44.701750744 -0500
945dc70
+++ ceph-17.2.5/src/librbd/api/PoolMetadata.h	2023-01-17 13:08:10.300301845 -0500
945dc70
@@ -9,6 +9,7 @@
945dc70
 
945dc70
 #include <map>
945dc70
 #include <string>
945dc70
+#include <cstdint>
945dc70
 
945dc70
 namespace librbd {
945dc70
 
c63ac8c
--- ceph-17.2.5/src/rocksdb/db/compaction/compaction_iteration_stats.h.orig	2023-01-26 17:05:20.605333926 -0500
c63ac8c
+++ ceph-17.2.5/src/rocksdb/db/compaction/compaction_iteration_stats.h	2023-01-26 17:05:46.376880846 -0500
c63ac8c
@@ -6,6 +6,7 @@
c63ac8c
 #pragma once
c63ac8c
 
c63ac8c
 #include "rocksdb/rocksdb_namespace.h"
c63ac8c
+#include <cstdint>
c63ac8c
 
c63ac8c
 struct CompactionIterationStats {
c63ac8c
   // Compaction statistics