Revision as of 16:22, 6 September 2017 editClueBot III (talk | contribs)Bots1,372,828 editsm Archiving 1 discussion to Talk:Physical Address Extension/Archives/2017/June. (BOT)← Previous edit | Revision as of 11:37, 4 October 2017 edit undoJeh (talk | contribs)Extended confirmed users, Pending changes reviewers19,611 edits →"offset within page" does not come from the page-table entry: this was fixed almost a year ago; I'd say this was done!Next edit → | ||
Line 22: | Line 22: | ||
: You are of course correct - and nice catch, that's been on the page for a long time. You can of course make the change yourself if you want. Be ] ! ] (]) 03:08, 13 October 2016 (UTC) | : You are of course correct - and nice catch, that's been on the page for a long time. You can of course make the change yourself if you want. Be ] ! ] (]) 03:08, 13 October 2016 (UTC) | ||
{{Done}} | |||
== As to the PAE kernel for Linux == | == As to the PAE kernel for Linux == |
Revision as of 11:37, 4 October 2017
This is the talk page for discussing improvements to the Physical Address Extension article. This is not a forum for general discussion of the article's subject. |
|
Find sources: Google (books · news · scholar · free images · WP refs) · FENS · JSTOR · TWL |
This article has not yet been rated on Misplaced Pages's content assessment scale. It is of interest to the following WikiProjects: | ||||||||||||||||||||||||
Please add the quality rating to the {{WikiProject banner shell}} template instead of this project banner. See WP:PIQA for details.
{{WikiProject banner shell}} template instead of this project banner. See WP:PIQA for details.
|
Archives (Index) |
This page is archived by ClueBot III. |
"offset within page" does not come from the page-table entry
The phrase should surely be . — Preceding unsigned comment added by 83.218.4.174 (talk) 23:56, 12 October 2016 (UTC)
- You are of course correct - and nice catch, that's been on the page for a long time. You can of course make the change yourself if you want. Be WP:BOLD ! Jeh (talk) 03:08, 13 October 2016 (UTC)
Done
As to the PAE kernel for Linux
That is a long and old news that even though the processors, x86 or IA-32, lack support of PAE, could also be equipped with PAE kernel. As to the further information, one could retrieve such information from Linux kernel source, from http://www.kernel.org. — Preceding unsigned comment added by 119.53.112.209 (talk) 00:42, 9 May 2017 (UTC)
- The only kernels that can run on a processor without PAE support are 1) kernels without PAE support and 2) kernels that check whether the hardware supports PAE, enables it if and only if present, and, depending on whether PAE is enabled or not, use different code to manage page table entries.
- If you look at the Linux kernel source, in arch/x86/include/asm/pgtable_32_types.h, you'll see a comment
/* * The Linux x86 paging architecture is 'compile-time dual-mode', it * implements both the traditional 2-level x86 page tables and the * newer 3-level PAE-mode page tables. */
- and, in fact, whether the kernel uses pre-PAE or PAE page tables on 32-bit x86 processors is set at compile time, not determined at run time, so a kernel with PAE support will work only on a machine that supports PAE; a kernel without PAE support will work on a machine that supports PAE, but it won't use PAE and will only handle 4GB of physical memory.
- So, no, you can't run a PAE kernel on a processor that lacks PAE support; anybody who believes that it does either hasn't read the Linux kernel source or read it but didn't understand it. Guy Harris (talk) 03:34, 9 May 2017 (UTC)
- yeah, you are definitely correct! — Preceding unsigned comment added by 119.53.116.164 (talk) 12:50, 9 May 2017 (UTC)