Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752588AbeAJW4K (ORCPT + 1 other); Wed, 10 Jan 2018 17:56:10 -0500 Received: from mail-pg0-f66.google.com ([74.125.83.66]:43521 "EHLO mail-pg0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751956AbeAJW4I (ORCPT ); Wed, 10 Jan 2018 17:56:08 -0500 X-Google-Smtp-Source: ACJfBovPlgn/7IBQZ94GYsECqulomDSx4BDVA29iF0ahBE5HK0QmGk7r/k2Zz7Wxj/kKAGYmxkFiRQ== Date: Wed, 10 Jan 2018 14:56:04 -0800 From: Alexei Starovoitov To: Daniel Borkmann Cc: Colin King , Alexei Starovoitov , netdev@vger.kernel.org, kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH][bpf-next] bpf: fix spelling mistake: "obusing" -> "abusing" Message-ID: <20180110225602.synp2j4icjfife4x@ast-mbp> References: <20180110092054.23345-1-colin.king@canonical.com> <753b49bf-57e3-a559-6275-880cca2d426d@iogearbox.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <753b49bf-57e3-a559-6275-880cca2d426d@iogearbox.net> User-Agent: NeoMutt/20170421 (1.8.2) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On Wed, Jan 10, 2018 at 11:39:14AM +0100, Daniel Borkmann wrote: > On 01/10/2018 10:20 AM, Colin King wrote: > > From: Colin Ian King > > > > Trivial fix to spelling mistake in error message text. > > > > Signed-off-by: Colin Ian King > > --- > > kernel/bpf/verifier.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c > > index 97bbef3eecdf..e388f30c4168 100644 > > --- a/kernel/bpf/verifier.c > > +++ b/kernel/bpf/verifier.c > > @@ -5336,7 +5336,7 @@ static int fixup_bpf_calls(struct bpf_verifier_env *env) > > */ > > map_ptr = env->insn_aux_data[i + delta].map_ptr; > > if (map_ptr == BPF_MAP_PTR_POISON) { > > - verbose(env, "tail_call obusing map_ptr\n"); > > + verbose(env, "tail_call abusing map_ptr\n"); > > return -EINVAL; > > } > > if (!map_ptr->unpriv_array) > > > > This is not in bpf-next tree yet, but only in bpf tree. I will let this sit > for a bit in patchwork until bpf-next has all the stuff from bpf merged back, > and then apply it into bpf-next. since the typo was just introduced in bpf tree it's better to fix it right away. Applied, Thanks Colin.