From: Pavel Machek <pavel@suse.cz>
To: "Pallipadi, Venkatesh" <venkatesh.pallipadi@intel.com>
Cc: akpm@osdl.org, "Brown, Len" <len.brown@intel.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] S3 suspend/resume with noexec
Date: Thu, 7 Oct 2004 00:32:03 +0200 [thread overview]
Message-ID: <20041006223203.GE2630@elf.ucw.cz> (raw)
In-Reply-To: <88056F38E9E48644A0F562A38C64FB60030A4229@scsmsx403.amr.corp.intel.com>
Hi!
> >> @@ -62,6 +62,10 @@ void __save_processor_state(struct saved
> >> asm volatile ("movl %%cr0, %0" : "=r" (ctxt->cr0));
> >> asm volatile ("movl %%cr2, %0" : "=r" (ctxt->cr2));
> >> asm volatile ("movl %%cr3, %0" : "=r" (ctxt->cr3));
> >> +#ifdef CONFIG_X86_PAE
> >> + if (cpu_has_pae && cpu_has_nx)
> >> + rdmsr(MSR_EFER, ctxt->efer_lo, ctxt->efer_hi);
> >> +#endif
> >> asm volatile ("movl %%cr4, %0" : "=r" (ctxt->cr4));
> >> }
> >
> >Are those #ifdefs good idea?
>
> That CONFIG is required. Cpu_has_pae and cpu_has_nx doesn't
> imply that we are using nx. Only when PAE kernel is configured
> and these features are available, we use it.
>
> Looking at the code again, I can remove that CONFIG_X86_PAE,
> if I use an additional check for nx_enabled.
Yes, that would be better.
> >> @@ -59,6 +59,20 @@ wakeup_code:
> >> movl $swapper_pg_dir-__PAGE_OFFSET, %eax
> >> movl %eax, %cr3
> >>
> >> + testl $1, real_efer_save_restore - wakeup_code
> >> + jz 4f
> >> + # restore efer setting
> >> + pushl %eax
> >> + pushl %ecx
> >> + pushl %edx
> >> + movl real_save_efer_edx - wakeup_code, %edx
> >> + movl real_save_efer_eax - wakeup_code, %eax
> >> + mov $0xc0000080, %ecx
> >> + wrmsr
> >> + popl %edx
> >> + popl %ecx
> >> + popl %eax
> >> +4:
> >> # make sure %cr4 is set correctly (features, etc)
> >> movl real_save_cr4 - wakeup_code, %eax
> >> movl %eax, %cr4
> >
> >Please analyse surrounding code a bit more. You certainly do not need
> >to push %eax, because it is scratch register.
>
> Yes. I saw that eax was not used. But, I thought it is clean to save
> and restore every register that is being touched here. Just in case some
>
> other code around these place starts using those registers in future.
>
> If you think that is unnecessary, I will resend the patch with minimal
> push/pops.
I'd like minimal push/pops. If we pushed/poped at every possible
place, it would get too long and too unreadable too quickly.
> >Is it neccessary to restore efer this soon, btw? We should be running
> >from swapper_pg_dir. Does that use nx?
>
> It seems necessary for swapper_pg_dir too as we use nx even for kernel
> pages (stack, module, etc).
Ahha, ok.
Pavel
--
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!
next prev parent reply other threads:[~2004-10-06 22:36 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-10-06 18:28 [PATCH] S3 suspend/resume with noexec Pallipadi, Venkatesh
2004-10-06 22:32 ` Pavel Machek [this message]
2004-10-07 0:20 ` Venkatesh Pallipadi
2004-10-07 8:03 ` Pavel Machek
[not found] <20041005172757.A31514@unix-os.sc.intel.com>
2004-10-06 8:52 ` Pavel Machek
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=20041006223203.GE2630@elf.ucw.cz \
--to=pavel@suse.cz \
--cc=akpm@osdl.org \
--cc=len.brown@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=venkatesh.pallipadi@intel.com \
/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