From patchwork Tue Feb 17 07:04:38 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denis Kirjanov X-Patchwork-Id: 440477 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 52D481402A0 for ; Tue, 17 Feb 2015 18:01:18 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932551AbbBQHAv (ORCPT ); Tue, 17 Feb 2015 02:00:51 -0500 Received: from mail-la0-f50.google.com ([209.85.215.50]:40463 "EHLO mail-la0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932208AbbBQHAt (ORCPT ); Tue, 17 Feb 2015 02:00:49 -0500 Received: by labgd6 with SMTP id gd6so33946863lab.7 for ; Mon, 16 Feb 2015 23:00:47 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=NjcL8yjaDI5y8SJ4jGbxWJR8O4NpQNBON4Zn8UJTcB0=; b=bm3oj11OmskXcknHYdldJvs9Wnw4szRBY0zqU7LJCEv01GEpWecWNK3WZtuCd94Mjq RCwXbZEdcPF7IgdOQAqm0lwOsktzoPTA4m/e1TnF5gK29FvdbE1l9VWnlGtBwmXy6tXa yWAIr7WKTYm2LpYysXfPRHkWCj1PD+l6pzzSdvpgL9JNebMrbeRQSEp044eSp1kn1gyp vj7Phe7o8WQtfPdsFbygAGq78X1WeLcey77ACcjorkPKBTvqg8DR+gmk3GHB+8H7IC7J oH/Z05Jp0vTlM8BPxLfEmN/+hYLu8dG0xpDarwVszUdlVQmNpgaYleZiQfJh0A+TCdZb P5VA== X-Gm-Message-State: ALoCoQlyuz+QwLGGvvP4iLAQTKYW1q8MzBezrlJgO3wruK6oA8xTQT0LcVv28FsaYrTWBAKsTqGw X-Received: by 10.152.23.98 with SMTP id l2mr26898993laf.46.1424156447782; Mon, 16 Feb 2015 23:00:47 -0800 (PST) Received: from localhost.localdomain ([87.228.41.15]) by mx.google.com with ESMTPSA id ky8sm3377043lac.4.2015.02.16.23.00.46 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 16 Feb 2015 23:00:46 -0800 (PST) From: Denis Kirjanov To: netdev@vger.kernel.org Cc: linuxppc-dev@lists.ozlabs.org, Denis Kirjanov Subject: [PATCH net-next v2 1/6] ppc: bpf: add required compatibility macros for jit Date: Tue, 17 Feb 2015 10:04:38 +0300 Message-Id: <1424156683-2682-2-git-send-email-kda@linux-powerpc.org> X-Mailer: git-send-email 2.1.3 In-Reply-To: <1424156683-2682-1-git-send-email-kda@linux-powerpc.org> References: <1424156683-2682-1-git-send-email-kda@linux-powerpc.org> Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Signed-off-by: Denis Kirjanov --- arch/powerpc/include/asm/asm-compat.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/powerpc/include/asm/asm-compat.h b/arch/powerpc/include/asm/asm-compat.h index 21be8ae..dc85dcb 100644 --- a/arch/powerpc/include/asm/asm-compat.h +++ b/arch/powerpc/include/asm/asm-compat.h @@ -23,6 +23,8 @@ #define PPC_STL stringify_in_c(std) #define PPC_STLU stringify_in_c(stdu) #define PPC_LCMPI stringify_in_c(cmpdi) +#define PPC_LCMPLI stringify_in_c(cmpldi) +#define PPC_LCMP stringify_in_c(cmpd) #define PPC_LONG stringify_in_c(.llong) #define PPC_LONG_ALIGN stringify_in_c(.balign 8) #define PPC_TLNEI stringify_in_c(tdnei) @@ -52,6 +54,8 @@ #define PPC_STL stringify_in_c(stw) #define PPC_STLU stringify_in_c(stwu) #define PPC_LCMPI stringify_in_c(cmpwi) +#define PPC_LCMPLI stringify_in_c(cmplwi) +#define PPC_LCMP stringify_in_c(cmpw) #define PPC_LONG stringify_in_c(.long) #define PPC_LONG_ALIGN stringify_in_c(.balign 4) #define PPC_TLNEI stringify_in_c(twnei)