All of lore.kernel.org
 help / color / mirror / Atom feed
From: Borislav Petkov <bp@suse.de>
To: tglx@linutronix.de, torvalds@linux-foundation.org,
	linux-kernel@vger.kernel.org, willy@infradead.org, hpa@zytor.com,
	mingo@kernel.org, kirill.shutemov@linux.intel.com,
	peterz@infradead.org, gorcunov@openvz.org, luto@amacapital.net,
	bp@suse.de
Cc: linux-tip-commits@vger.kernel.org
Subject: Re: [tip:x86/boot] x86/boot/compressed/64: Prepare trampoline memory
Date: Sat, 24 Feb 2018 22:48:18 +0100	[thread overview]
Message-ID: <20180224214818.GD29374@pd.tnic> (raw)
In-Reply-To: <tip-b91993a87aff6dafd60a9c8ce80ebc425161a815@git.kernel.org>

On Sun, Feb 11, 2018 at 04:19:38AM -0800, tip-bot for Kirill A. Shutemov wrote:
> Commit-ID:  b91993a87aff6dafd60a9c8ce80ebc425161a815
> Gitweb:     https://git.kernel.org/tip/b91993a87aff6dafd60a9c8ce80ebc425161a815
> Author:     Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
> AuthorDate: Fri, 9 Feb 2018 17:22:27 +0300
> Committer:  Ingo Molnar <mingo@kernel.org>
> CommitDate: Sun, 11 Feb 2018 12:36:19 +0100
> 
> x86/boot/compressed/64: Prepare trampoline memory

This patch breaks X in my test guest image here. The failing Xorg.0.log file
has:

[     8.504] (II) Loading /usr/lib/xorg/modules/libint10.so
[     8.506] (II) Module int10: vendor="X.Org Foundation"
[     8.506]    compiled for 1.19.2, module version = 1.0.0
[     8.506]    ABI class: X.Org Video Driver, version 23.0
[     8.506] (II) VESA(0): initializing int10
[     8.506] (EE) VESA(0): V_BIOS address 0x0 out of range
[     8.506] (II) UnloadModule: "vesa"
[     8.506] (II) UnloadSubModule: "int10"
[     8.506] (II) Unloading int10
[     8.506] (II) UnloadSubModule: "vbe"
[     8.506] (II) Unloading vbe
[     8.506] (EE) Screen(s) found, but none have a usable configuration.
[     8.506] (EE)
Fatal server error:
[     8.506] (EE) no screens found(EE)
[     8.506] (EE)
Please consult the The X.Org Foundation support
         at http://wiki.x.org
 for help.
[     8.506] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[     8.506] (EE)
[     8.516] (EE) Server terminated with error (1). Closing log file.

note the

[     8.506] (EE) VESA(0): V_BIOS address 0x0 out of range

line.

I tried reverting this patch but it doesn't revert cleanly so I checked
out the one before it in tip/master:

4440977be134 ("x86/boot/compressed/64: Introduce paging_prepare()")

With it, guest X starts just fine and Xorg.0.log has:

[     7.594] (II) Loading /usr/lib/xorg/modules/libint10.so
[     7.595] (II) Module int10: vendor="X.Org Foundation"
[     7.595]    compiled for 1.19.2, module version = 1.0.0
[     7.595]    ABI class: X.Org Video Driver, version 23.0
[     7.595] (II) VESA(0): initializing int10
[     7.596] (II) VESA(0): Primary V_BIOS segment is: 0xc000
[     7.596] (II) VESA(0): VESA BIOS detected
[     7.596] (II) VESA(0): VESA VBE Version 3.0
[     7.596] (II) VESA(0): VESA VBE Total Mem: 16384 kB
[     7.596] (II) VESA(0): VESA VBE OEM: SeaBIOS VBE(C) 2011
[     7.596] (II) VESA(0): VESA VBE OEM Software Rev: 0.0
[     7.596] (II) VESA(0): VESA VBE OEM Vendor: SeaBIOS Developers
[     7.596] (II) VESA(0): VESA VBE OEM Product: SeaBIOS VBE Adapter
[     7.596] (II) VESA(0): VESA VBE OEM Product Rev: Rev. 1
[     7.623] (II) VESA(0): Creating default Display subsection in Screen section
        "Default Screen Section" for depth/fbbpp 24/32
[     7.623] (==) VESA(0): Depth 24, (--) framebuffer bpp 32
[     7.623] (==) VESA(0): RGB weight 888
[     7.623] (==) VESA(0): Default visual is TrueColor
[     7.623] (==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
...

Thx.

-- 
Regards/Gruss,
    Boris.

SUSE Linux GmbH, GF: Felix Imendörffer, Jane Smithard, Graham Norton, HRB 21284 (AG Nürnberg)
-- 

  parent reply	other threads:[~2018-02-24 21:48 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-09 14:22 [PATCHv9 0/4] x86: 5-level related changes into decompression code Kirill A. Shutemov
2018-02-09 14:22 ` Kirill A. Shutemov
2018-02-09 14:22 ` [PATCHv9 1/4] x86/boot/compressed/64: Rename pagetable.c to kaslr_64.c Kirill A. Shutemov
2018-02-09 14:22   ` Kirill A. Shutemov
2018-02-11 12:18   ` [tip:x86/boot] " tip-bot for Kirill A. Shutemov
2018-02-09 14:22 ` [PATCHv9 2/4] x86/boot/compressed/64: Introduce paging_prepare() Kirill A. Shutemov
2018-02-09 14:22   ` Kirill A. Shutemov
2018-02-11 12:19   ` [tip:x86/boot] " tip-bot for Kirill A. Shutemov
2018-02-09 14:22 ` [PATCHv9 3/4] x86/boot/compressed/64: Prepare trampoline memory Kirill A. Shutemov
2018-02-09 14:22   ` Kirill A. Shutemov
2018-02-11 12:19   ` [tip:x86/boot] " tip-bot for Kirill A. Shutemov
2018-02-13 18:32     ` Cyrill Gorcunov
2018-02-24 21:48     ` Borislav Petkov [this message]
2018-02-25 10:52       ` Kirill A. Shutemov
2018-02-25 12:29         ` Borislav Petkov
2018-02-25 14:09           ` Kirill A. Shutemov
2018-02-26  7:35         ` Ingo Molnar
2018-02-26  7:50           ` Ingo Molnar
2018-02-26  8:04             ` Kirill A. Shutemov
2018-02-26  8:02           ` Kirill A. Shutemov
2018-02-26  8:15             ` Cyrill Gorcunov
2018-02-26  8:37               ` Kirill A. Shutemov
2018-02-26  8:49                 ` Cyrill Gorcunov
2018-02-26  8:47             ` Ingo Molnar
2018-02-26 10:54             ` Borislav Petkov
2018-02-09 14:22 ` [PATCHv9 4/4] x86/boot/compressed/64: Handle 5-level paging boot if kernel is above 4G Kirill A. Shutemov
2018-02-09 14:22   ` Kirill A. Shutemov
2018-02-11 12:20   ` [tip:x86/boot] " tip-bot for Kirill A. Shutemov
2018-02-13  6:51     ` Andrei Vagin
2018-02-13  8:08       ` Kirill A. Shutemov
2018-02-13  8:41         ` Andrei Vagin
2018-02-13  9:02           ` Kirill A. Shutemov
2018-02-13  9:43             ` Ingo Molnar
2018-02-13 10:00               ` Kirill A. Shutemov
2018-02-13 11:32                 ` Ingo Molnar
2018-02-13 16:53             ` Andrei Vagin
2018-02-13 17:17               ` Ingo Molnar
2018-02-13 17:59                 ` Dmitry Safonov
2018-02-13 18:05                   ` Ingo Molnar
2018-02-13 17:21   ` tip-bot for Kirill A. Shutemov
2018-02-13 17:42     ` Kirill A. Shutemov
2018-02-13 18:09   ` tip-bot for Kirill A. Shutemov
2018-02-11 11:37 ` [PATCHv9 0/4] x86: 5-level related changes into decompression code Ingo Molnar
2018-02-11 11:37   ` Ingo Molnar

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=20180224214818.GD29374@pd.tnic \
    --to=bp@suse.de \
    --cc=gorcunov@openvz.org \
    --cc=hpa@zytor.com \
    --cc=kirill.shutemov@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tip-commits@vger.kernel.org \
    --cc=luto@amacapital.net \
    --cc=mingo@kernel.org \
    --cc=peterz@infradead.org \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    --cc=willy@infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.