From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DE8D2C48BD6 for ; Wed, 26 Jun 2019 23:20:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A7B7B2177B for ; Wed, 26 Jun 2019 23:20:54 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=cs.washington.edu header.i=@cs.washington.edu header.b="ZaJnj72v" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726590AbfFZXUx (ORCPT ); Wed, 26 Jun 2019 19:20:53 -0400 Received: from mail-io1-f67.google.com ([209.85.166.67]:34408 "EHLO mail-io1-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726531AbfFZXUv (ORCPT ); Wed, 26 Jun 2019 19:20:51 -0400 Received: by mail-io1-f67.google.com with SMTP id k8so610820iot.1 for ; Wed, 26 Jun 2019 16:20:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cs.washington.edu; s=goo201206; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc:content-transfer-encoding; bh=brea/2Qx9pBcYGaH6DB1Fc3qM+qPNzkSABIn8ioCvPU=; b=ZaJnj72valkhOWXD57cAGw+gAAyEfQy/JR47wmIiwfnDtp1TQpOJwz7GpvJSXTUD0u ZA/U+rG82kpbeH8Uqa6aoazQ8fD/ngaK2CVgNrTaqAQFz3f57WqXINxufX5TlzRjxCQa xI8Ss8Ko+wdFKlJb0vWMvWfg8h0WPripGQ3EU= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc:content-transfer-encoding; bh=brea/2Qx9pBcYGaH6DB1Fc3qM+qPNzkSABIn8ioCvPU=; b=R4tpSL93qOdxr2J2fmVlUTdIJwhr2oAIRlQoSbxMmN2/EEwBYA0h66foU69f5prwyP WD2ge71TuCbx1iM+sDT8kFprr2y4UCO3V2tuXz8OINBiOxjqC5tsBPBviPSRnu/1uPAr 7FMrqd/PL28kUh9GFNZSv3zMORPa1Y2m9ZNQCCYnM/JaUBdG6ymAO21gznqxL/iZIj5V vss7MpzxnOLntdWyUO7q8tAjKjtNULNFbPYk8/iyQ4yVFvsmoPcDwo7zLTJz41OrHXat Lp/jAXuVYcyUmFPhpmY6a6qDQPvyIoNzVncGVDO94UuWbgLmwn+Uhc83iVArl70UzUWC BHag== X-Gm-Message-State: APjAAAUvTvMvhn8+0oiYo1QqaRJdNNuk2gzAQo4khuQkzbpY17WsZTW0 2Qb0LybsVsTHSMibk0oubrW3khvcuumPXxs4u6bGKQ== X-Google-Smtp-Source: APXvYqx4WUGRRdnDMn1qRC9QzduXjQrWAsPLCwLSndDqxI0ewueoPskdlrvCJKhtJLOzQy0pNf8LolgeC9PNFB3+1so= X-Received: by 2002:a6b:f90f:: with SMTP id j15mr894411iog.43.1561591247732; Wed, 26 Jun 2019 16:20:47 -0700 (PDT) MIME-Version: 1.0 References: <20190621225938.27030-1-lukenels@cs.washington.edu> In-Reply-To: From: Luke Nelson Date: Wed, 26 Jun 2019 16:20:37 -0700 Message-ID: Subject: Re: [RFC PATCH bpf-next] RV32G eBPF JIT To: =?UTF-8?B?QmrDtnJuIFTDtnBlbA==?= Cc: Luke Nelson , Xi Wang , Palmer Dabbelt , Albert Ou , Alexei Starovoitov , Daniel Borkmann , Martin KaFai Lau , Song Liu , Yonghong Song , linux-riscv@lists.infradead.org, LKML , Netdev , bpf Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Mon, Jun 24, 2019 at 3:11 AM Bj=C3=B6rn T=C3=B6pel wrote: > > - Far branches > > These are not supported in RV64G either. > > This would be really nice to have, now that the size of BPF programs > are getting larger. I've sent out an updated version of the patch here, with support for far branches: https://patchwork.ozlabs.org/patch/1123052 Thanks!