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=-13.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PULL_REQUEST,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_PASS,USER_AGENT_GIT autolearn=ham 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 AEFB7C43381 for ; Sun, 17 Feb 2019 03:14:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 780A021A4A for ; Sun, 17 Feb 2019 03:14:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1550373281; bh=yWw34TPtMik3q5Weuj8SwkeBUiuGPKatf/09niKAG2s=; h=From:To:CC:Subject:Date:List-ID:From; b=bxAIsgnnmJWtfH6FoKVryrQggqwEaBadabTJ7AxYdGwUwg1pQvm7EZ+ihAQ9viu+P O26CnlCHq/QY/pzAIM9sv4ctC7y6bmnDmDm9Amhri8tjdCEYYVRyT4zYsV0uyys8UN uDXo1K/zrXKoRpxi3qN+O+yn9SFqaiQv9KuD+700= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728067AbfBQDOW convert rfc822-to-8bit (ORCPT ); Sat, 16 Feb 2019 22:14:22 -0500 Received: from mx0b-00082601.pphosted.com ([67.231.153.30]:56926 "EHLO mx0a-00082601.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727063AbfBQDOW (ORCPT ); Sat, 16 Feb 2019 22:14:22 -0500 Received: from pps.filterd (m0089730.ppops.net [127.0.0.1]) by m0089730.ppops.net (8.16.0.27/8.16.0.27) with SMTP id x1H33k1V031900 for ; Sat, 16 Feb 2019 19:14:21 -0800 Received: from mail.thefacebook.com ([199.201.64.23]) by m0089730.ppops.net with ESMTP id 2qpew4a425-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Sat, 16 Feb 2019 19:14:21 -0800 Received: from mx-out.facebook.com (2620:10d:c081:10::13) by mail.thefacebook.com (2620:10d:c081:35::127) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA) id 15.1.1531.3; Sat, 16 Feb 2019 19:14:19 -0800 Received: by devbig007.ftw2.facebook.com (Postfix, from userid 572438) id 27D7B760C6F; Sat, 16 Feb 2019 19:14:18 -0800 (PST) Smtp-Origin-Hostprefix: devbig From: Alexei Starovoitov Smtp-Origin-Hostname: devbig007.ftw2.facebook.com To: CC: , , Smtp-Origin-Cluster: ftw2c04 Subject: pull-request: bpf 2019-02-16 Date: Sat, 16 Feb 2019 19:14:18 -0800 Message-ID: <20190217031418.2509756-1-ast@kernel.org> X-Mailer: git-send-email 2.20.0 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT X-FB-Internal: Safe X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:,, definitions=2019-02-17_03:,, signatures=0 X-Proofpoint-Spam-Reason: safe X-FB-Internal: Safe Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Hi David, The following pull-request contains BPF updates for your *net* tree. The main changes are: 1) fix lockdep false positive in bpf_get_stackid(), from Alexei. 2) several AF_XDP fixes, from Bjorn, Magnus, Davidlohr. 3) fix narrow load from struct bpf_sock, from Martin. 4) mips JIT fixes, from Paul. 5) gso handling fix in bpf helpers, from Willem. Please consider pulling these changes from: git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git Thanks a lot! ---------------------------------------------------------------- The following changes since commit ccc8ca9b90acb45a3309f922b2591b07b4e070ec: net/smc: fix byte_order for rx_curs_confirmed (2019-02-08 22:33:25 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git for you to fetch changes up to 1910faebf61d85a5b7138c0c1c600672e41f82a3: MIPS: eBPF: Remove REG_32BIT_ZERO_EX (2019-02-16 01:10:06 +0100) ---------------------------------------------------------------- Alexei Starovoitov (1): bpf: fix lockdep false positive in stackmap Björn Töpel (1): xsk: do not remove umem from netdevice on fall-back to copy-mode Davidlohr Bueso (1): xsk: share the mmap_sem for page pinning Magnus Karlsson (1): xsk: add missing smp_rmb() in xsk_mmap Martin KaFai Lau (1): bpf: Fix narrow load on a bpf_sock returned from sk_lookup() Paul Burton (2): MIPS: eBPF: Always return sign extended 32b values MIPS: eBPF: Remove REG_32BIT_ZERO_EX Willem de Bruijn (1): bpf: only adjust gso_size on bytestream protocols arch/mips/net/ebpf_jit.c | 24 ++++++++++++------------ include/linux/skbuff.h | 6 ++++++ kernel/bpf/stackmap.c | 8 +++++++- kernel/bpf/verifier.c | 11 +++++++---- net/core/filter.c | 12 ++++-------- net/xdp/xdp_umem.c | 11 ++++++----- net/xdp/xsk.c | 4 ++++ 7 files changed, 46 insertions(+), 30 deletions(-)