From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-188.mta0.migadu.com (out-188.mta0.migadu.com [91.218.175.188]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D196A2594 for ; Tue, 11 Feb 2025 00:16:29 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.188 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739232992; cv=none; b=RGRDlEd1/fZgF5VdBnok5zIUPjKWfsyzpRBRZszs5LnFT1Sz3Wkw3ik4K0gTyocZUtsdogliqbH0RO1XHXpIAN6l3gLpjPH2Jf0maM+Io513ne1E9DK1vH+U1jvto1HDqlSlpwHHIiw5I81UU7fdrjBIzxS7Kl9h4ucTOOUkH4s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739232992; c=relaxed/simple; bh=+w1muybnuRdnCE2SJBzU+6LEPFsK9+6Rv7KDcML39eI=; h=MIME-Version:Date:Content-Type:From:Message-ID:Subject:To:Cc: In-Reply-To:References; b=bV0f8SvtYAyyaiJIF8SNPavobQLk2RkuWLiLs3lrf6Eqax+I/X1TTK6nx/8h1zHWQr+lKnt4m94tDeS/sWE59TPCYH1QkfLUoEcws3Pm2u6cx4NUnobmjaKZO2Q3v2xiX8T7qbVTS7FeB6+3Rsflw4hkG/Wa/kYZy1pyticoAHc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=iTCVB7G9; arc=none smtp.client-ip=91.218.175.188 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="iTCVB7G9" Precedence: bulk X-Mailing-List: bpf@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1739232987; 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=+w1muybnuRdnCE2SJBzU+6LEPFsK9+6Rv7KDcML39eI=; b=iTCVB7G98yNaCVRay6TXG9NzjYkiNFzRyNmQVj0ovvCkpl+fhoFXfDGmfU60LGAGDEk/wl vG/KjrPkGaxPVGjDumj0smJE5T6pTntkdcDMSRkSJe1gbEgKi13DAs1a0ZEgvqJSWSSTuu 01rpSU2N65Tt2J5aEmIA4BvPpstViRg= Date: Tue, 11 Feb 2025 00:16:26 +0000 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: "Ihor Solodrai" Message-ID: <4d7b119dc632e0b8ea4ed6da4a5b49b20a521676@linux.dev> TLS-Required: No Subject: Re: [PATCH dwarves 3/3] pahole: introduce --btf_feature=attributes To: "Alan Maguire" , dwarves@vger.kernel.org, bpf@vger.kernel.org Cc: acme@kernel.org, ast@kernel.org, andrii@kernel.org, eddyz87@gmail.com, mykolal@fb.com, kernel-team@meta.com In-Reply-To: References: <20250207021442.155703-1-ihor.solodrai@linux.dev> <20250207021442.155703-4-ihor.solodrai@linux.dev> X-Migadu-Flow: FLOW_OUT On 2/10/25 2:13 PM, Alan Maguire wrote: > On 07/02/2025 02:14, Ihor Solodrai wrote: >> Add a feature flag "attributes" (default: false) controlling whether >> pahole is allowed to generate BTF attributes: type tags and decl tags >> with kind_flag =3D 1. >> >> This is necessary for backward compatibility, as BPF verifier does not >> recognize tags with kind_flag =3D 1 prior to (at least) 6.14-rc1 [1]. >> >> [1] https://lore.kernel.org/bpf/20250130201239.1429648-1-ihor.solodrai= @linux.dev/ >> >> Signed-off-by: Ihor Solodrai > Needs update to pahole man page describing the new "attributes" > btf_feature, but aside from that LGTM. I was wondering what have I missed. Thanks. > > Reviewed-by: Alan Maguire > > [...]