From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexei Starovoitov Subject: pull-request: bpf-next 2017-12-07 Date: Thu, 7 Dec 2017 22:22:11 -0800 Message-ID: <20171208062211.2545706-1-ast@kernel.org> Mime-Version: 1.0 Content-Type: text/plain Cc: Daniel Borkmann , To: "David S . Miller" Return-path: Received: from mx0b-00082601.pphosted.com ([67.231.153.30]:60518 "EHLO mx0a-00082601.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751159AbdLHGWO (ORCPT ); Fri, 8 Dec 2017 01:22:14 -0500 Received: from pps.filterd (m0001255.ppops.net [127.0.0.1]) by mx0b-00082601.pphosted.com (8.16.0.21/8.16.0.21) with SMTP id vB86MDin023331 for ; Thu, 7 Dec 2017 22:22:13 -0800 Received: from mail.thefacebook.com ([199.201.64.23]) by mx0b-00082601.pphosted.com with ESMTP id 2eqn77g0nq-3 (version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Thu, 07 Dec 2017 22:22:13 -0800 Sender: netdev-owner@vger.kernel.org List-ID: Hi David, The following pull-request contains BPF updates for your net-next tree. The main changes are: 1) Detailed documentation of BPF development process from Daniel. 2) Addition of is_fullsock, snd_cwnd and srtt_us fields to bpf_sock_ops from Lawrence. 3) Minor follow up for bpf_skb_set_tunnel_key() from William. Please consider pulling these changes from: git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git Thanks a lot! ---------------------------------------------------------------- The following changes since commit a3fde2addd5f0218b64102005a237ef727b0dc30: rtnetlink: ipv6: convert remaining users to rtnl_register_module (2017-12-04 13:35:36 -0500) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git for you to fetch changes up to 47adc5b07c6e0336896f84e404a6a7e1dce7878e: Merge branch 'bpf-devel-doc' (2017-12-06 14:35:04 -0800) ---------------------------------------------------------------- Alexei Starovoitov (1): Merge branch 'bpf-devel-doc' Daniel Borkmann (2): bpf, doc: add bpf trees and tps to maintainers entry bpf, doc: add faq about bpf development process Lawrence Brakmo (1): bpf: Add access to snd_cwnd and others in sock_ops William Tu (1): bpf: move bpf csum flag check Documentation/bpf/bpf_devel_QA.txt | 519 +++++++++++++++++++++++++++++++++++++ MAINTAINERS | 4 + include/linux/filter.h | 1 + include/net/tcp.h | 6 +- include/uapi/linux/bpf.h | 6 + net/core/filter.c | 41 ++- 6 files changed, 572 insertions(+), 5 deletions(-) create mode 100644 Documentation/bpf/bpf_devel_QA.txt