Received: by 2002:a05:6a10:16a7:0:0:0:0 with SMTP id gp39csp1324270pxb; Fri, 13 Nov 2020 09:39:22 -0800 (PST) X-Google-Smtp-Source: ABdhPJzGKSoQNxnv9Q1WQv2q72JaQulwJJfiIYkZYGvF78udJ0xgC/Vju+1XMLL30zhzCIanr4x3 X-Received: by 2002:a50:b224:: with SMTP id o33mr3593858edd.21.1605289162203; Fri, 13 Nov 2020 09:39:22 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1605289162; cv=none; d=google.com; s=arc-20160816; b=gVYECmMmX39lPmYQrBizEoZXC5pLAWhJAQjmoNjKldGV3XA0dsuWZohOwVIcgU7HJV D4B5W56BKZyFfPaazB+s6V/wXLUFjmL1oOdleWCh3C1CH6QvKGG5hmiv5Q39UiXgITO0 EUcAKK+N9hOUhizU++qwHDouL6vbaawa/F4820pDNq8ATFnBrQU5DB/BkdJH1yFhGGuJ 3ZbgzGCwhN6Fg0eCou5duHoXarHm11xjVC636wt6CIcowNelqc//LlNT2A6bU7adS6Ok sBD6ttXMYp+ZhM2SYE+CXSQmPXLf8a8STxRL5oVfdZ2IgnikQKumMyUGqq6UZkXF2Aji G7fQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=rl1KJRyNxuPIOdwHqyxOWsZkBfy3NRAVbpxiWUn8C+M=; b=KqLsE3neIhexeXC6MMRiR3sXZZHkfV4dT73W04uJbBWm/TOJ+Mka2EmJgFcEbp3rgx eHY6LnbicTE98f/nI2Cn2osWf0+dQ4VYWVNC7Xahtr/y4cEdcnPCt0QZ7Kt9JX3Y3KqJ uF3TKUWox6nr7UsANMijkYT5g7McspmoGXuo9NhPLImW7B1wcc8pCSUj8oeSEVK+Lrlb Tm5SWbfF/WfpKzgtDObwDYiSvx78eY4UKrAuqDLb0zdD7BDHKpjH8Q++Jq0VeOpb66GH VTYSv1IsVoVMue4IZdoH/TOuHSFI+cL0NikHFVdqHLP0YH79vwwtBUsJ9eNszCm4qg1e 3/gg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id z2si6529719ejc.253.2020.11.13.09.38.58; Fri, 13 Nov 2020 09:39:22 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726618AbgKMRfv (ORCPT + 99 others); Fri, 13 Nov 2020 12:35:51 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60312 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726136AbgKMRfu (ORCPT ); Fri, 13 Nov 2020 12:35:50 -0500 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e3e3]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9A123C0613D1 for ; Fri, 13 Nov 2020 09:35:50 -0800 (PST) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: aratiu) with ESMTPSA id 3D8FD1F46B62 From: Adrian Ratiu To: linux-arm-kernel@lists.infradead.org Cc: Nathan Chancellor , Nick Desaulniers , Arnd Bergmann , Russell King , Ard Biesheuvel , Arvind Sankar , kernel@collabora.com, clang-built-linux , Linux Kernel Mailing List Subject: [PATCH v3 0/2] xor-neon: Remove GCC warn & pragmas Date: Fri, 13 Nov 2020 19:37:21 +0200 Message-Id: <20201113173723.2078845-1-adrian.ratiu@collabora.com> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Dear all, This is v3 of the patch series started at id:20201106051436.2384842-1-adrian.ratiu@collabora.com This series does not address the Clang -ftree-vectorize not working bug which is a known pre-existing issued documented at [1] [2] [3]. Clang vectorization needs to be investigated in more deepth and fixed separately. The purpouse of this is to only fix some low-hanging-fruit GCC related isues. Tested on next-20201112 using GCC 10.2.0 and Clang 10.0.1. [1] https://bugs.llvm.org/show_bug.cgi?id=40976 [2] https://github.com/ClangBuiltLinux/linux/issues/503 [3] https://github.com/ClangBuiltLinux/linux/issues/496 Kind regards, Adrian Chnages in v3: - Reworded first commit (Ard) - Added tags by Nick and Nathan Changes in v2: - Dropped the patch which disabled Clang vectorization (Nick) - Added new patch to move pragmas to makefile cmdline options (Arvid and Ard) Adrian Ratiu (1): arm: lib: xor-neon: move pragma options to makefile Nathan Chancellor (1): arm: lib: xor-neon: remove unnecessary GCC < 4.6 warning arch/arm/lib/Makefile | 2 +- arch/arm/lib/xor-neon.c | 17 ----------------- 2 files changed, 1 insertion(+), 18 deletions(-) -- 2.29.2