From patchwork Sun Feb 15 18:06:41 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Denis Kirjanov X-Patchwork-Id: 439888 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 E06B314021A for ; Mon, 16 Feb 2015 05:03:13 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932100AbbBOSDJ (ORCPT ); Sun, 15 Feb 2015 13:03:09 -0500 Received: from mail-lb0-f175.google.com ([209.85.217.175]:63229 "EHLO mail-lb0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932069AbbBOSDI (ORCPT ); Sun, 15 Feb 2015 13:03:08 -0500 Received: by mail-lb0-f175.google.com with SMTP id n10so23467667lbv.6 for ; Sun, 15 Feb 2015 10:03:06 -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=glb0V7BhBYRUDHameP1FXLV8T1lQGaxzQgZy+cqMJEZTyIWaHSmEaA5YpZZ1GOwdDr BbwkekjvwPPbOd4T/ggaB+xRsgaYqL6ecvHChN/Ufu93Ox6L1/tuijCsl9VFkQenoFEZ UdLropk5gd8T/0MA/XxfUXcJJWfJVCT88lYja52wUrw+4XkxLoJoZ8Kvlm2Wl4kNfP3M QEFbeWrRSpRlmolgQbkDtranlGfv1pJaRN+G7pa6c8Fi1yO/AFwZasUDr56GVJjOfiaZ cn6YfSwPcZ8hUSxqMHh9pU7TrigSx+IUQ9QAiR2GuyqFYE8n7KWWqje4WqGlIiq4BiAP n6VQ== X-Gm-Message-State: ALoCoQlxwx88wPFH8Qr+Yeq/iJH3Dprfk87/rxc2yMQm2LXW7ODz0oJhAJnh0Aec/Xrqk3bc3Qat X-Received: by 10.152.205.74 with SMTP id le10mr17967358lac.39.1424023386797; Sun, 15 Feb 2015 10:03:06 -0800 (PST) Received: from localhost.localdomain ([87.228.41.15]) by mx.google.com with ESMTPSA id ks4sm177802lac.23.2015.02.15.10.03.05 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 15 Feb 2015 10:03:06 -0800 (PST) From: Denis Kirjanov To: netdev@vger.kernel.org Cc: linuxppc-dev@lists.ozlabs.org, Denis Kirjanov Subject: [PATCH net-next 2/6] ppc: bpf: add required compatibility macros for jit Date: Sun, 15 Feb 2015 21:06:41 +0300 Message-Id: <1424023605-2416-3-git-send-email-kda@linux-powerpc.org> X-Mailer: git-send-email 2.1.3 In-Reply-To: <1424023605-2416-1-git-send-email-kda@linux-powerpc.org> References: <1424023605-2416-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)