[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-ppc] [PATCH] spapr: select default vty
From: |
Laurent Vivier |
Subject: |
Re: [Qemu-ppc] [PATCH] spapr: select default vty |
Date: |
Wed, 27 Sep 2017 10:30:38 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 |
On 27/09/2017 09:59, David Gibson wrote:
> On Tue, Sep 26, 2017 at 02:17:50PM +0200, Laurent Vivier wrote:
>> SLOF uses the "/chosen/linux,stdout-path" variable to
>> choose its console. This variable is provided by QEMU.
>> QEMU selects the spapr-vty using the "reg" property:
>> it takes the vty with the lowest reg number.
>> This patch allows the user to define "linux,stdout-path"
>> from the command line by adding a keyword 'default' to
>> the spapr-vty device.
>>
>> Signed-off-by: Laurent Vivier <address@hidden>
>
> I'm a bit dubious about the worth of this. With your SLOF fixes it
> should still be possible to redirect output correctly using -prom-env,
> yes? Using a secondary vty is a pretty niche case, so I'm not
> convinced we need extra properties just to make it simpler.
I agree, but there is a difference between the SLOF fix and the QEMU change:
- with the QEMU fix, all logs go immediately to the selected console,
- with SLOF fix, logs start to go on the console with the lowest reg
value, and switch later to the selected console.
Moreover, Thomas has pointed out that the SLOF fix slows the characters
output (x 6).
Thanks,
Laurent