From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-173.mta1.migadu.com (out-173.mta1.migadu.com [95.215.58.173]) (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 E16381DEFDD for ; Thu, 24 Jul 2025 16:01:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.173 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753372890; cv=none; b=F/DD3ArfqaLQf/d3FyKjAACvejsyNxOsePYu656TUuK/RZQvB0yxfT7FctGIoMG7d4cK6WzilLTcsdRjtisJod4/Rx3qOnW/0jy6FBSME+uvYDjXY2f2S8ziyBL5zLEF4v8NUPAzaExQzzGHEZfpq7XLiXOcTHnyx8W3NSp0Lpo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753372890; c=relaxed/simple; bh=gikTh2WztXqD07CQ3v0B35UpxUJVSCJ8VdXOx7vfrYY=; h=Message-ID:Date:MIME-Version:Subject:To:References:From: In-Reply-To:Content-Type; b=Rj7JDu6RveOfF+f4cSJZdqiT8drIdayGJC4AS+6We6tKV4kJIlsoX4DCLUo92HNvuk5k5mOCpk9Yt0rmsDrhDoiYNF7BHluOet+1+DF1J14gp1xVXC8jHlN3MPqQkovpHQovv725CIsTAMDQmHXu6fw//FDsi7L/oDVIVpVUiXA= 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=Lj3kW/JF; arc=none smtp.client-ip=95.215.58.173 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="Lj3kW/JF" Message-ID: <68b0312b-c412-4cb9-992e-df7b66e02447@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1753372876; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=gikTh2WztXqD07CQ3v0B35UpxUJVSCJ8VdXOx7vfrYY=; b=Lj3kW/JFbbQ/ViYS2+vO1ep/HvuTNaIs5916Ci0bTk7uplH6TEn7nJJrFXU+tH7fjcGcUd ESuz0X7/MsnZjx/s9/v19B6mdQlripGbYbcoykZIFUBPpa49JPELvInTFm7BdoUeP8PpiK AzG6mYtnbm1qpLUyrW6wM65B4hjbWPo= Date: Thu, 24 Jul 2025 09:01:09 -0700 Precedence: bulk X-Mailing-List: bpf@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH bpf-next v2 1/3] bpf: move bpf_jit_get_prog_name() to core.c Content-Language: en-GB To: Puranjay Mohan , Alexei Starovoitov , Daniel Borkmann , Andrii Nakryiko , Martin KaFai Lau , Eduard Zingerman , Song Liu , John Fastabend , KP Singh , Stanislav Fomichev , Hao Luo , Jiri Olsa , Xu Kuohai , Catalin Marinas , Will Deacon , Mykola Lysenko , bpf@vger.kernel.org References: <20250724120257.7299-1-puranjay@kernel.org> <20250724120257.7299-2-puranjay@kernel.org> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Yonghong Song In-Reply-To: <20250724120257.7299-2-puranjay@kernel.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 7/24/25 5:02 AM, Puranjay Mohan wrote: > bpf_jit_get_prog_name() will be used by all JITs when enabling support > for private stack. This function is currently implemented in the x86 > JIT. > > Move the function to core.c so that other JITs can easily use it in > their implementation of private stack. > > Signed-off-by: Puranjay Mohan Acked-by: Yonghong Song