Procházet zdrojové kódy

fixup! hle: kernel: Add initial impl. of slab setup.

bunnei před 5 roky
rodič
revize
f23760b1e1
1 změnil soubory, kde provedl 2 přidání a 6 odebrání
  1. 2 6
      src/core/hle/kernel/init/init_slab_setup.cpp

+ 2 - 6
src/core/hle/kernel/init/init_slab_setup.cpp

@@ -117,10 +117,6 @@ void InitializeSlabResourceCounts() {
     }
     }
 }
 }
 
 
-size_t CalculateSlabHeapGapSize() {
-    return KernelSlabHeapGapsSize;
-}
-
 size_t CalculateTotalSlabHeapSize() {
 size_t CalculateTotalSlabHeapSize() {
     size_t size = 0;
     size_t size = 0;
 
 
@@ -136,7 +132,7 @@ size_t CalculateTotalSlabHeapSize() {
 #undef ADD_SLAB_SIZE
 #undef ADD_SLAB_SIZE
 
 
     // Add the reserved size.
     // Add the reserved size.
-    size += CalculateSlabHeapGapSize();
+    size += KernelSlabHeapGapsSize;
 
 
     return size;
     return size;
 }
 }
@@ -158,7 +154,7 @@ void InitializeSlabHeaps(Core::System& system, KMemoryLayout& memory_layout) {
     }
     }
 
 
     // Create an array to represent the gaps between the slabs.
     // Create an array to represent the gaps between the slabs.
-    const size_t total_gap_size = CalculateSlabHeapGapSize();
+    const size_t total_gap_size = KernelSlabHeapGapsSize;
     std::array<size_t, slab_types.size()> slab_gaps;
     std::array<size_t, slab_types.size()> slab_gaps;
     for (size_t i = 0; i < slab_gaps.size(); i++) {
     for (size_t i = 0; i < slab_gaps.size(); i++) {
         // Note: This is an off-by-one error from Nintendo's intention, because GenerateRandomRange
         // Note: This is an off-by-one error from Nintendo's intention, because GenerateRandomRange