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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 49513C4332F for ; Thu, 15 Dec 2022 05:41:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229661AbiLOFlf (ORCPT ); Thu, 15 Dec 2022 00:41:35 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55412 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229560AbiLOFle (ORCPT ); Thu, 15 Dec 2022 00:41:34 -0500 Received: from out-214.mta0.migadu.com (out-214.mta0.migadu.com [91.218.175.214]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6CB972DA93 for ; Wed, 14 Dec 2022 21:41:33 -0800 (PST) Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1671082891; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=LmsWqjQZduwC0L5s0oRb959HTkZyovrAs4D30sY2GeI=; b=Rmp8EgkVx7LXg7G+tWemMKCM7Fjfz5mknKzPDRKfFkGkwxqqgvGWR+7KLFgdluLWSkkbyj d4Pqh2si0XPzW4BdNFf9Z7PPqYGGnsmDNTV8HJgfPmQdKF+3ox1CGFXnDiYdX0CaJSHog2 EqcePCghfCtLX8Oeh9FnlX9AJg2xvjY= Date: Wed, 14 Dec 2022 21:41:24 -0800 MIME-Version: 1.0 Subject: Re: [PATCH bpf v5 1/2] bpf: Resolve fext program type when checking map compatibility Content-Language: en-US To: =?UTF-8?Q?Toke_H=c3=b8iland-J=c3=b8rgensen?= Cc: bpf@vger.kernel.org, Alexei Starovoitov , Daniel Borkmann , John Fastabend , Andrii Nakryiko , Song Liu , Yonghong Song , KP Singh , Stanislav Fomichev , Hao Luo , Jiri Olsa , Lorenzo Bianconi References: <20221214230254.790066-1-toke@redhat.com> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Martin KaFai Lau In-Reply-To: <20221214230254.790066-1-toke@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: bpf@vger.kernel.org On 12/14/22 3:02 PM, Toke Høiland-Jørgensen wrote: > This requires constifying the parameter of > resolve_prog_type() to avoid a compiler warning from the new call site. Applied with this part removed from the commit message. This change is not in this patch. The const had already been added a while back.