Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751948AbcDOUCj (ORCPT ); Fri, 15 Apr 2016 16:02:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51936 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751040AbcDOUCh (ORCPT ); Fri, 15 Apr 2016 16:02:37 -0400 Date: Fri, 15 Apr 2016 15:02:35 -0500 From: Josh Poimboeuf To: James Bottomley Cc: Denys Vlasenko , Himanshu Madhani , qla2xxx-upstream@qlogic.com, linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] qla2xxx: rewrite code to avoid hitting gcc bug 70646 Message-ID: <20160415200235.cqsozl445k6evhok@treble> References: <1460716583-15673-1-git-send-email-dvlasenk@redhat.com> <1460731203.2331.7.camel@HansenPartnership.com> <57113959.8050103@redhat.com> <1460747126.2331.28.camel@HansenPartnership.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1460747126.2331.28.camel@HansenPartnership.com> User-Agent: Mutt/1.6.0.1 (2016-04-01) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Fri, 15 Apr 2016 20:02:36 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1406 Lines: 36 On Fri, Apr 15, 2016 at 12:05:26PM -0700, James Bottomley wrote: > On Fri, 2016-04-15 at 20:56 +0200, Denys Vlasenko wrote: > > and now *many* users of qla2x00 and new-ish gcc are going to > > very much notice it, as their kernels will start crashing reliably. > > > > The commits can be reverted, sure, but they per se do not contain > > anything unusual. They, together with not very typical construct > > in qla2x00_get_host_fabric_name, one > > which boils down to "swab64p(constant_array_of_8_bytes)", > > just happen to nudge gcc in a right way to finally trigger the bug. > > > > So I came with another idea how to forestall the imminent deluge of > > qla2x00 oops reports - this patch. > > There are actually a raft of checkers that run the upstream code which > aren't seeing any problem; likely because the code is harder to trigger > than you think. So, lets wait until the resolution of the other thread > before we panic, especially since we're only at -rc3. Regardless of the outcome of the gcc bug, it seems kind of silly to byteswap a constant value of 0xffffffffffffffff. uint8_t node_name[WWN_SIZE] = { 0xFF, 0xFF, 0xFF, 0xFF, \ 0xFF, 0xFF, 0xFF, 0xFF}; u64 fabric_name = wwn_to_u64(node_name); Similar to what Denys suggested, it can just be: u64 fabric_name = -1; or u64 fabric_name = 0xffffffffffffffff; Wouldn't that be an improvement to the code regardless? -- Josh