File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 35
35
returned type is automatically freed on the UEFI heap, as long as boot
36
36
services are not excited. By removing the need for that explicit buffer and
37
37
the lifetime, the API is simpler.
38
+ - ` BootServices::allocation_size_hint ` is now private. Use ` BootServices::get_memory_map ` instead.
38
39
39
40
## Removed
40
41
- Removed the ` panic-on-logger-errors ` feature of the ` uefi ` crate. Logger
Original file line number Diff line number Diff line change @@ -1709,7 +1709,7 @@ impl MemoryMapBackingMemory {
1709
1709
/// Returns a best-effort size hint of the memory map size. This is
1710
1710
/// especially created with exiting boot services in mind.
1711
1711
#[ must_use]
1712
- pub fn allocation_size_hint ( mms : MemoryMapMeta ) -> usize {
1712
+ fn allocation_size_hint ( mms : MemoryMapMeta ) -> usize {
1713
1713
let MemoryMapMeta {
1714
1714
desc_size,
1715
1715
map_size,
You can’t perform that action at this time.
0 commit comments