浏览代码

Use `first_tag` field to avoid size_of

Philipp Oppermann 9 年之前
父节点
当前提交
20cffc8ca3
共有 1 个文件被更改,包括 2 次插入6 次删除
  1. 2 6
      src/lib.rs

+ 2 - 6
src/lib.rs

@@ -3,8 +3,6 @@
 
 pub use elf_sections::{ElfSectionsTag, ElfSection, ElfSectionIter};
 
-use core::mem::size_of;
-
 mod elf_sections;
 
 pub unsafe fn load(address: usize) -> &'static Multiboot {
@@ -17,7 +15,7 @@ pub unsafe fn load(address: usize) -> &'static Multiboot {
 pub struct Multiboot {
     pub total_size: u32,
     _reserved: u32,
-    // tags
+    first_tag: Tag,
 }
 
 impl Multiboot {
@@ -40,9 +38,7 @@ impl Multiboot {
     }
 
     fn tags(&self) -> TagIter {
-        let self_addr = self as *const _ as usize;
-        let first_tag = (self_addr + size_of::<Multiboot>()) as *const Tag;
-        TagIter{current: first_tag}
+        TagIter{current: &self.first_tag as *const _}
     }
 }