From: mindentropy@gmail.com (mindentropy)
To: kernelnewbies@lists.kernelnewbies.org
Subject: Regarding enable paging code and swapper_pg_dir.
Date: Mon, 4 Apr 2011 02:24:59 +0530 [thread overview]
Message-ID: <201104040224.59537.mindentropy@gmail.com> (raw)
In-Reply-To: <20110402205219.GD7686@stevens.edu>
On Sunday 03 Apr 2011 2:22:19 am James Light wrote:
> On Sat, Apr 02, 2011 at 11:18:19PM +0530, mindentropy wrote:
> > On Saturday 02 Apr 2011 9:55:35 pm James Light wrote:
> > > To put the physical address into cr3 later.
> > > $swapper_pg_dir is not the PHYSICAL address of the PGD.
> >
> > Correct me if I am wrong but a mov $foo,%eax would move the address of
> > foo variable to eax right? Or is there a macro somewhere where they are
> > adding PAGE_OFFSET to the address so that the $swapper_pg_dir -
> > __PAGE_OFFSET justifies?
>
> Right, but it uses the logical address of foo which n the case of
> swapper_pg_dir must be converted to a
> physical address. When paging is not enabled, linear addresses are
> interpreted as physical addressess.
> So it has to get this logical address
> only one step farther into a linear address.
>
Can you please elaborate on what one step farther is? So why not use the
swapper_pg_dir directly i.e. mov $swapper_pg_dir,cr0? In the absence of paging
the segment:offset is the physical address isn't it? i.e. the $swapper_pg_dir
should be equal to 0x10100 as per the code fragment below?
I am having difficulty in understanding the addressing calculations here and not
the code,
>In linux2.1.66, the physical address is used directly.
>Just for comparison:
>------------------------------------------------------------------------------
>58/*
>59 * Setup paging (the tables are already set up, just switch them on)
>60 */
>611:
>62 movl $0x101000,%eax
>63 movl %eax,%cr3 /* set the page table pointer.. */
>64 movl %cr0,%eax
>65 orl $0x80000000,%eax
>66 movl %eax,%cr0 /* ..and set paging (PG) bit */
>67 jmp 1f /* flush the prefetch-queue */
>-----------------------------------------------------------------------------
next prev parent reply other threads:[~2011-04-03 20:54 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-04-01 20:07 Regarding enable paging code and swapper_pg_dir mindentropy
[not found] ` <20110401211921.GH23673@stevens.edu>
[not found] ` <201104021333.21661.mindentropy@gmail.com>
2011-04-02 16:25 ` James Light
2011-04-02 16:31 ` James Light
2011-04-02 17:48 ` mindentropy
2011-04-02 20:52 ` James Light
2011-04-03 20:54 ` mindentropy [this message]
2011-04-04 21:07 ` mindentropy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201104040224.59537.mindentropy@gmail.com \
--to=mindentropy@gmail.com \
--cc=kernelnewbies@lists.kernelnewbies.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).