From: kbuild test robot <lkp@intel.com>
To: Roman Gushchin <guro@fb.com>
Cc: kbuild-all@01.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, kernel-team@fb.com, tj@kernel.org,
Roman Gushchin <guro@fb.com>, Alexei Starovoitov <ast@kernel.org>,
Daniel Borkmann <daniel@iogearbox.net>
Subject: Re: [PATCH bpf-next 03/14] bpf: pass a pointer to a cgroup storage using pcpu variable
Date: Fri, 29 Jun 2018 05:08:20 +0800 [thread overview]
Message-ID: <201806290554.Eu0KCYPI%fengguang.wu@intel.com> (raw)
In-Reply-To: <20180628164719.28215-4-guro@fb.com>
[-- Attachment #1: Type: text/plain, Size: 5144 bytes --]
Hi Roman,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on bpf-next/master]
url: https://github.com/0day-ci/linux/commits/Roman-Gushchin/bpf-cgroup-local-storage/20180629-031527
base: https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git master
config: arm-allmodconfig (attached as .config)
compiler: arm-linux-gnueabi-gcc (Debian 7.2.0-11) 7.2.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
GCC_VERSION=7.2.0 make.cross ARCH=arm
All errors (new ones prefixed by >>):
In file included from kernel/bpf/local_storage.c:2:0:
>> include/linux/bpf-cgroup.h:23:24: error: unknown type name 'bpf_cgroup_storage'
DECLARE_PER_CPU(void*, bpf_cgroup_storage);
^~~~~~~~~~~~~~~~~~
include/linux/bpf-cgroup.h: In function 'bpf_cgroup_storage_set':
>> include/linux/bpf-cgroup.h:109:2: error: implicit declaration of function 'this_cpu_write'; did you mean 'init_cpu_online'? [-Werror=implicit-function-declaration]
this_cpu_write(bpf_cgroup_storage, &buf->data[0]);
^~~~~~~~~~~~~~
init_cpu_online
>> include/linux/bpf-cgroup.h:109:17: error: 'bpf_cgroup_storage' undeclared (first use in this function)
this_cpu_write(bpf_cgroup_storage, &buf->data[0]);
^~~~~~~~~~~~~~~~~~
include/linux/bpf-cgroup.h:109:17: note: each undeclared identifier is reported only once for each function it appears in
cc1: some warnings being treated as errors
vim +/bpf_cgroup_storage +23 include/linux/bpf-cgroup.h
22
> 23 DECLARE_PER_CPU(void*, bpf_cgroup_storage);
24
25 struct bpf_cgroup_storage_map;
26
27 struct bpf_storage_buffer {
28 struct rcu_head rcu;
29 char data[0];
30 };
31
32 struct bpf_cgroup_storage {
33 struct bpf_storage_buffer *buf;
34 struct bpf_cgroup_storage_map *map;
35 struct bpf_cgroup_storage_key key;
36 struct list_head list;
37 struct rb_node node;
38 struct rcu_head rcu;
39 };
40
41 struct bpf_prog_list {
42 struct list_head node;
43 struct bpf_prog *prog;
44 };
45
46 struct bpf_prog_array;
47
48 struct cgroup_bpf {
49 /* array of effective progs in this cgroup */
50 struct bpf_prog_array __rcu *effective[MAX_BPF_ATTACH_TYPE];
51
52 /* attached progs to this cgroup and attach flags
53 * when flags == 0 or BPF_F_ALLOW_OVERRIDE the progs list will
54 * have either zero or one element
55 * when BPF_F_ALLOW_MULTI the list can have up to BPF_CGROUP_MAX_PROGS
56 */
57 struct list_head progs[MAX_BPF_ATTACH_TYPE];
58 u32 flags[MAX_BPF_ATTACH_TYPE];
59
60 /* temp storage for effective prog array used by prog_attach/detach */
61 struct bpf_prog_array __rcu *inactive;
62 };
63
64 void cgroup_bpf_put(struct cgroup *cgrp);
65 int cgroup_bpf_inherit(struct cgroup *cgrp);
66
67 int __cgroup_bpf_attach(struct cgroup *cgrp, struct bpf_prog *prog,
68 enum bpf_attach_type type, u32 flags);
69 int __cgroup_bpf_detach(struct cgroup *cgrp, struct bpf_prog *prog,
70 enum bpf_attach_type type, u32 flags);
71 int __cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
72 union bpf_attr __user *uattr);
73
74 /* Wrapper for __cgroup_bpf_*() protected by cgroup_mutex */
75 int cgroup_bpf_attach(struct cgroup *cgrp, struct bpf_prog *prog,
76 enum bpf_attach_type type, u32 flags);
77 int cgroup_bpf_detach(struct cgroup *cgrp, struct bpf_prog *prog,
78 enum bpf_attach_type type, u32 flags);
79 int cgroup_bpf_query(struct cgroup *cgrp, const union bpf_attr *attr,
80 union bpf_attr __user *uattr);
81
82 int __cgroup_bpf_run_filter_skb(struct sock *sk,
83 struct sk_buff *skb,
84 enum bpf_attach_type type);
85
86 int __cgroup_bpf_run_filter_sk(struct sock *sk,
87 enum bpf_attach_type type);
88
89 int __cgroup_bpf_run_filter_sock_addr(struct sock *sk,
90 struct sockaddr *uaddr,
91 enum bpf_attach_type type,
92 void *t_ctx);
93
94 int __cgroup_bpf_run_filter_sock_ops(struct sock *sk,
95 struct bpf_sock_ops_kern *sock_ops,
96 enum bpf_attach_type type);
97
98 int __cgroup_bpf_check_dev_permission(short dev_type, u32 major, u32 minor,
99 short access, enum bpf_attach_type type);
100
101 static inline void bpf_cgroup_storage_set(struct bpf_cgroup_storage *storage)
102 {
103 struct bpf_storage_buffer *buf;
104
105 if (!storage)
106 return;
107
108 buf = rcu_dereference(storage->buf);
> 109 this_cpu_write(bpf_cgroup_storage, &buf->data[0]);
110 }
111
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 66159 bytes --]
next prev parent reply other threads:[~2018-06-28 21:09 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-28 16:47 [PATCH bpf-next 00/14] bpf: cgroup local storage Roman Gushchin
2018-06-28 16:47 ` [PATCH bpf-next 01/14] bpf: add ability to charge bpf maps memory dynamically Roman Gushchin
2018-06-28 16:47 ` [PATCH bpf-next 02/14] bpf: introduce cgroup storage maps Roman Gushchin
2018-06-28 16:47 ` [PATCH bpf-next 03/14] bpf: pass a pointer to a cgroup storage using pcpu variable Roman Gushchin
2018-06-28 21:08 ` kbuild test robot [this message]
2018-06-29 2:08 ` kbuild test robot
2018-06-28 16:47 ` [PATCH bpf-next 04/14] bpf: allocate cgroup storage entries on attaching bpf programs Roman Gushchin
2018-06-28 16:47 ` [PATCH bpf-next 05/14] bpf: extend bpf_prog_array to store pointers to the cgroup storage Roman Gushchin
2018-06-28 16:47 ` [PATCH bpf-next 06/14] bpf/verifier: introduce BPF_PTR_TO_MAP_VALUE Roman Gushchin
2018-06-28 16:47 ` [PATCH bpf-next 07/14] bpf: don't allow create maps of cgroup local storages Roman Gushchin
2018-06-28 16:47 ` [PATCH bpf-next 08/14] bpf: introduce the bpf_get_local_storage() helper function Roman Gushchin
2018-06-28 20:02 ` kbuild test robot
2018-06-28 21:34 ` kbuild test robot
2018-06-28 16:47 ` [PATCH bpf-next 09/14] bpf: sync bpf.h to tools/ Roman Gushchin
2018-06-28 16:47 ` [PATCH bpf-next 10/14] bpftool: add support for CGROUP_STORAGE maps Roman Gushchin
2018-06-29 3:47 ` Jakub Kicinski
2018-06-28 16:47 ` [PATCH bpf-next 11/14] bpf/test_run: support cgroup local storage Roman Gushchin
2018-06-28 16:47 ` [PATCH bpf-next 12/14] selftests/bpf: add verifier cgroup storage tests Roman Gushchin
2018-06-28 16:47 ` [PATCH bpf-next 13/14] selftests/bpf: add a cgroup storage test Roman Gushchin
2018-06-28 16:47 ` [PATCH bpf-next 14/14] samples/bpf: extend test_cgrp2_attach2 test to use cgroup storage Roman Gushchin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201806290554.Eu0KCYPI%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=ast@kernel.org \
--cc=daniel@iogearbox.net \
--cc=guro@fb.com \
--cc=kbuild-all@01.org \
--cc=kernel-team@fb.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=tj@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®