From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roman Gushchin Subject: [PATCH v3 bpf-next 05/10] bpf: sync include/uapi/linux/bpf.h to tools/include/uapi/linux/bpf.h Date: Wed, 26 Sep 2018 12:33:21 +0100 Message-ID: <20180926113326.29069-6-guro@fb.com> References: <20180926113326.29069-1-guro@fb.com> Mime-Version: 1.0 Content-Type: text/plain Cc: Song Liu , , , Roman Gushchin , Daniel Borkmann , Alexei Starovoitov To: Return-path: Received: from mx0b-00082601.pphosted.com ([67.231.153.30]:54110 "EHLO mx0b-00082601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728107AbeIZRqu (ORCPT ); Wed, 26 Sep 2018 13:46:50 -0400 In-Reply-To: <20180926113326.29069-1-guro@fb.com> Sender: netdev-owner@vger.kernel.org List-ID: The sync is required due to the appearance of a new map type: BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE, which implements per-cpu cgroup local storage. Signed-off-by: Roman Gushchin Acked-by: Song Liu Cc: Daniel Borkmann Cc: Alexei Starovoitov --- tools/include/uapi/linux/bpf.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/include/uapi/linux/bpf.h b/tools/include/uapi/linux/bpf.h index aa5ccd2385ed..e2070d819e04 100644 --- a/tools/include/uapi/linux/bpf.h +++ b/tools/include/uapi/linux/bpf.h @@ -127,6 +127,7 @@ enum bpf_map_type { BPF_MAP_TYPE_SOCKHASH, BPF_MAP_TYPE_CGROUP_STORAGE, BPF_MAP_TYPE_REUSEPORT_SOCKARRAY, + BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE, }; enum bpf_prog_type { -- 2.17.1