From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexei Starovoitov Subject: Re: [PATCH net-next v1] bpf: Use the IS_FD_ARRAY() macro in map_update_elem() Date: Thu, 25 Jan 2018 18:09:24 -0800 Message-ID: <20180126020922.moxrg5acpu4orxbd@ast-mbp> References: <20180125235402.30527-1-mic@digikod.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: linux-kernel@vger.kernel.org, Alexei Starovoitov , Daniel Borkmann , "David S . Miller" , netdev@vger.kernel.org To: =?iso-8859-1?Q?Micka=EBl_Sala=FCn?= Return-path: Content-Disposition: inline In-Reply-To: <20180125235402.30527-1-mic@digikod.net> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Fri, Jan 26, 2018 at 12:54:02AM +0100, Mickaël Salaün wrote: > Make the code more readable. > > Signed-off-by: Mickaël Salaün > Cc: Alexei Starovoitov > Cc: Daniel Borkmann > --- > kernel/bpf/syscall.c | 5 +---- > 1 file changed, 1 insertion(+), 4 deletions(-) > > diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c > index 5bdb0cc84ad2..e24aa3241387 100644 > --- a/kernel/bpf/syscall.c > +++ b/kernel/bpf/syscall.c > @@ -709,10 +709,7 @@ static int map_update_elem(union bpf_attr *attr) > err = bpf_percpu_hash_update(map, key, value, attr->flags); > } else if (map->map_type == BPF_MAP_TYPE_PERCPU_ARRAY) { > err = bpf_percpu_array_update(map, key, value, attr->flags); > - } else if (map->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY || > - map->map_type == BPF_MAP_TYPE_PROG_ARRAY || > - map->map_type == BPF_MAP_TYPE_CGROUP_ARRAY || > - map->map_type == BPF_MAP_TYPE_ARRAY_OF_MAPS) { > + } else if (IS_FD_ARRAY(map)) { Applied to bpf-next, thank you Mickael.