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=-6.4 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,UNWANTED_LANGUAGE_BODY,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 29A69C10F0B for ; Sat, 23 Feb 2019 17:44:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E9836206B6 for ; Sat, 23 Feb 2019 17:44:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1550943878; bh=IoOlFonDNCcdXF/mlInNV2tBGmyj2O5lAR+6tB3dQmU=; h=From:To:CC:Subject:Date:In-Reply-To:References:List-ID:From; b=LTy+T+zOln44qr9xSc/gTSrV4fiS/oWifat/h2b2jDUrJuKe/6W1z+Jt106Tct6Pm peY+yW8Z0QJL/3eGz99u+hcVLyYEiGz4nP83IFhpOlE/WXvp9oGpGIsJKw1XE7aYqr j2eh0UG8kkdIFqiV/Qj/NFHk6Nlxzb5NnLM7BHV0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726746AbfBWRog convert rfc822-to-8bit (ORCPT ); Sat, 23 Feb 2019 12:44:36 -0500 Received: from mx0b-00082601.pphosted.com ([67.231.153.30]:39404 "EHLO mx0b-00082601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726486AbfBWRog (ORCPT ); Sat, 23 Feb 2019 12:44:36 -0500 Received: from pps.filterd (m0109331.ppops.net [127.0.0.1]) by mx0a-00082601.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x1NHcHXQ002917 for ; Sat, 23 Feb 2019 09:44:35 -0800 Received: from mail.thefacebook.com ([199.201.64.23]) by mx0a-00082601.pphosted.com with ESMTP id 2qu4vsrq24-10 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Sat, 23 Feb 2019 09:44:35 -0800 Received: from mx-out.facebook.com (2620:10d:c081:10::13) by mail.thefacebook.com (2620:10d:c081:35::129) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA) id 15.1.1531.3; Sat, 23 Feb 2019 09:44:33 -0800 Received: by devbig007.ftw2.facebook.com (Postfix, from userid 572438) id 0FC8B760812; Sat, 23 Feb 2019 09:44:29 -0800 (PST) Smtp-Origin-Hostprefix: devbig From: Alexei Starovoitov Smtp-Origin-Hostname: devbig007.ftw2.facebook.com To: CC: , , , , Smtp-Origin-Cluster: ftw2c04 Subject: [PATCH v2 bpf-next 3/4] tools/bpf: sync bpf.h into tools Date: Sat, 23 Feb 2019 09:44:21 -0800 Message-ID: <20190223174422.663270-4-ast@kernel.org> X-Mailer: git-send-email 2.20.0 In-Reply-To: <20190223174422.663270-1-ast@kernel.org> References: <20190223174422.663270-1-ast@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8BIT X-FB-Internal: Safe Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:,, definitions=2019-02-23_11:,, 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 sync bpf.h into tools directory Signed-off-by: Alexei Starovoitov --- tools/include/uapi/linux/bpf.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/include/uapi/linux/bpf.h b/tools/include/uapi/linux/bpf.h index bcdd2474eee7..d2cb85d85b39 100644 --- a/tools/include/uapi/linux/bpf.h +++ b/tools/include/uapi/linux/bpf.h @@ -2813,6 +2813,8 @@ struct bpf_prog_info { __u32 jited_line_info_rec_size; __u32 nr_prog_tags; __aligned_u64 prog_tags; + __u64 runtime; + __u64 runcnt; } __attribute__((aligned(8))); struct bpf_map_info { -- 2.20.0