lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <ae007007-02cc-0081-22c0-34b2d67f2cd3@hpe.com>
Date:   Thu, 5 Sep 2019 07:47:34 -0700
From:   Mike Travis <mike.travis@....com>
To:     Greg KH <gregkh@...uxfoundation.org>
Cc:     Thomas Gleixner <tglx@...utronix.de>,
        Ingo Molnar <mingo@...hat.com>,
        "H. Peter Anvin" <hpa@...or.com>,
        Andrew Morton <akpm@...ux-foundation.org>,
        Borislav Petkov <bp@...en8.de>,
        Christoph Hellwig <hch@...radead.org>,
        Dimitri Sivanich <dimitri.sivanich@....com>,
        Russ Anderson <russ.anderson@....com>,
        Hedi Berriche <hedi.berriche@....com>,
        Steve Wahl <steve.wahl@....com>, x86@...nel.org,
        linux-kernel@...r.kernel.org, stable@...r.kernel.org
Subject: Re: [PATCH 6/8] x86/platform/uv: Decode UVsystab Info



On 9/5/2019 7:16 AM, Greg KH wrote:
> On Thu, Sep 05, 2019 at 08:02:58AM -0500, Mike Travis wrote:
>> Decode the hubless UVsystab passed from BIOS to the kernel saving
>> pertinent info in a similar manner that hubbed UVsystabs are decoded.
>>
>> Signed-off-by: Mike Travis <mike.travis@....com>
>> Reviewed-by: Steve Wahl <steve.wahl@....com>
>> Reviewed-by: Dimitri Sivanich <dimitri.sivanich@....com>
>> To: Thomas Gleixner <tglx@...utronix.de>
>> To: Ingo Molnar <mingo@...hat.com>
>> To: H. Peter Anvin <hpa@...or.com>
>> To: Andrew Morton <akpm@...ux-foundation.org>
>> To: Borislav Petkov <bp@...en8.de>
>> To: Christoph Hellwig <hch@...radead.org>
>> Cc: Dimitri Sivanich <dimitri.sivanich@....com>
>> Cc: Russ Anderson <russ.anderson@....com>
>> Cc: Hedi Berriche <hedi.berriche@....com>
>> Cc: Steve Wahl <steve.wahl@....com>
>> Cc: x86@...nel.org
>> Cc: linux-kernel@...r.kernel.org
>> Cc: stable@...r.kernel.org
>> ---
>>   arch/x86/kernel/apic/x2apic_uv_x.c |   16 ++++++++++++++--
>>   1 file changed, 14 insertions(+), 2 deletions(-)
> 
> If you are trying to get one of my automated "WTF: patch XXXX was
> seriously submitted to be applied to the stable tree?" emails, you are
> on track for it...
> 
> Please go read the documentation link I sent you last time and figure
> out how you can justify any of this patch series for a stable kernel
> tree.

Is it because it has fixes for new hardware?  If so, then I'll quit 
submitting them to stable (we've had requests from distros for all 
updates be in the stable tree for acceptance).  Otherwise I thought it 
does comply with:

    " - To have the patch automatically included in the stable tree,
    add the tag
      Cc: stable@...r.kernel.org
    in the sign-off area. Once the patch is merged it will be applied
    to the stable tree without anything else needing to be done by the
    author or subsystem maintainer."

Or is there some other reason that I'm not understanding?

> 
> Also, nit:
> 
>> --- linux.orig/arch/x86/kernel/apic/x2apic_uv_x.c
>> +++ linux/arch/x86/kernel/apic/x2apic_uv_x.c
>> @@ -1303,7 +1303,8 @@ static int __init decode_uv_systab(void)
>>   	struct uv_systab *st;
>>   	int i;
>>   
>> -	if (uv_hub_info->hub_revision < UV4_HUB_REVISION_BASE)
>> +	/* Select only UV4 (hubbed or hubless) and higher */
>> +	if (is_uv_hubbed(-2) < uv(4) && is_uv_hubless(-2) < uv(4))
>>   		return 0;	/* No extended UVsystab required */
>>   
>>   	st = uv_systab;
>> @@ -1554,8 +1555,19 @@ static __init int uv_system_init_hubless
>>   
>>   	/* Init kernel/BIOS interface */
>>   	rc = uv_bios_init();
>> +	if (rc < 0) {
>> +		pr_err("UV: BIOS init error:%d\n", rc);
> 
> Why isn't that function printing an error?
> 
> 
>> +		return rc;
>> +	}
>> +
>> +	/* Process UVsystab */
>> +	rc = decode_uv_systab();
>> +	if (rc < 0) {
>> +		pr_err("UV: UVsystab decode error:%d\n", rc);
> 
> Same here, have the function itself print the error, makes this type of
> stuff much cleaner.

You're right this would be much cleaner.  Mostly this was done because 
of the rarity of an error here, and the specifics (BIOS failures) 
usually cannot be dealt with by users.  The system log is captured as 
part of the error and packaged with other fault details that are 
analyzed internally.

But I will make the changes you are suggesting.  And thanks.
> 
> greg k-h
> 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ