From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752190AbdLLR1R (ORCPT ); Tue, 12 Dec 2017 12:27:17 -0500 Received: from mail-it0-f46.google.com ([209.85.214.46]:35899 "EHLO mail-it0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751554AbdLLR1O (ORCPT ); Tue, 12 Dec 2017 12:27:14 -0500 X-Google-Smtp-Source: ACJfBosu0laf9a5tF3PiruhDrzFmmlKpk9m+yVBE9NHf5VNeDiIJiWA2DZiMCj/N9CYCc3V31EFGpQTutaaOYo2xtHM= MIME-Version: 1.0 In-Reply-To: References: <2809506.pL8kVbvXcY@aspire.rjw.lan> <1578405.51lzoSX1jh@aspire.rjw.lan> <20171209103325.GA13867@amd> <20171209220110.GA11496@amd> <20171210162305.GA10159@amd> <20171210185638.GA10363@amd> <20171210204350.GA25013@amd> From: Linus Torvalds Date: Tue, 12 Dec 2017 09:27:13 -0800 X-Google-Sender-Auth: LQ4xQP_fFdBh55xx5phqJlO6Jyk Message-ID: Subject: Re: Linux 4.15-rc2: Regression in resume from ACPI S3 To: Pavel Machek Cc: Zhang Rui , Andrew Lutomirski , Thomas Gleixner , Jarkko Nikula , "Rafael J. Wysocki" , Linux Kernel Mailing List , "the arch/x86 maintainers" Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Dec 10, 2017 at 1:28 PM, Linus Torvalds wrote: > > That said, this *all* smells wrong. Why is there a special > fix_processor_context() function at all with different 32-bit and > 64-bit behavior? This code is all written to be maximally confusing. Hmm. Looking a bit more at this, I think it should be solved by: - load the original read-write GDT early, along with the IDT. We have already saved it off in __save_processor_state(), and it may have already gotten loaded very early in at least some of the paths, but it definitely hasn't gotten reloaded in all the paths (think "suspend/resume testing" etc). - add the LDT descriptor to the save area too, exactly like we already have IDT/GDT. Then, we can do "load_ldt()" early (along with IDT and GDT). - now we can just load all the segments early, and get the percpu and stack canary stuff without any special cases - do NOT use "load_gs_index()", which does that swapgs dance (twice!) and plays with interrupt state. Just load the segment register, and then do the wrmsrl() of the {FS,GS,KERNEL_GS}_BASE values. There is no need for the swapgs dance. - now that we have a fully working system, then the "fix_processor_context()" code can do the "fancy" stuff like setting up the RO fixmap GDT and re-initializing the TLB state. Those want percpu stuff. In other words, why not try to organize this so that we do a simple and fairly mindless restore of the low-level state first? Avoid all the "system is halfway up" crud. Would that work for people? Andy? Linus