Rev 1726 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1726 | Rev 1730 | ||
---|---|---|---|
Line 64... | Line 64... | ||
64 | 64 | ||
65 | /* First is exception vector, second is 'implementation specific', |
65 | /* First is exception vector, second is 'implementation specific', |
66 | third and fourth is reserved, other contain real mode code */ |
66 | third and fourth is reserved, other contain real mode code */ |
67 | frame_mark_unavailable(0, 8); |
67 | frame_mark_unavailable(0, 8); |
68 | 68 | ||
- | 69 | /* Mark the Page Hash Table frames as unavailable */ |
|
- | 70 | __u32 sdr1; |
|
- | 71 | asm volatile ( |
|
- | 72 | "mfsdr1 %0\n" |
|
- | 73 | : "=r" (sdr1) |
|
- | 74 | ); |
|
- | 75 | frame_mark_unavailable(ADDR2PFN(sdr1 & 0xffff000), 16); // FIXME |
|
69 | } |
76 | } |
70 | 77 | ||
71 | /** @} |
78 | /** @} |
72 | */ |
79 | */ |