From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-170.mta1.migadu.com (out-170.mta1.migadu.com [95.215.58.170]) (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 96A802DC32D for ; Sun, 7 Dec 2025 17:43:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.170 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765129382; cv=none; b=L5MM0JNWluyAHC71H54lvUTuTIn5kJ2ytSHVqdtCWNMgAJFqnoH7XhOgeW5/bVIeRBMFVOc/r4Z1Ej0T/7TZER5swb3LDxlYARR2j4WCpBv1xUmGKfPsDUlLrfTom73ruFP9h7tus/beTGACiuBK06hb9r48hqPdTiVEP3HvWP8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765129382; c=relaxed/simple; bh=R/rqsivhRnbaf7aFRy7SKPIbXhOSFIGzuG4YB/v31Bo=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=jit6djkJTQ9L2pj1NM9QL10AMpi+p6XwOs4oXhOssi5Q1amsDsWTnM/OBvB6G9s0xtmt2rMWqVDj/VIgxDhlnU+ecBDrbvlPJ4TdQB7knh3J+n2nbaoHauCrWKSSgn8pbod1OOrTpAgmdRzATTwjl4r4OZ/9Mf4C4CcxFj9UGk4= 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=dT9iEdgx; arc=none smtp.client-ip=95.215.58.170 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="dT9iEdgx" Message-ID: <327d78d8-8562-4865-a4de-9eeb4dd0ba03@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1765129368; 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=R/rqsivhRnbaf7aFRy7SKPIbXhOSFIGzuG4YB/v31Bo=; b=dT9iEdgxWXvf9mE5RWgb33gGS0H+i6BRRWPfe35C1N3xVkTWnHiWgxTfg7LFCsbrV/T5L7 OW50ZRMjlurEnWiyOd6vVL7RwjECN2nUUt4/oxGQXZa6lfc0LneL75KGjsAGhZutjxJC/7 AUBWVrYMM/C0Dnp4P5uJEEMtRDQ0ibA= Date: Sun, 7 Dec 2025 09:42:39 -0800 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH bpf-next] bpf: Fix bpf_seq_read docs for increased buffer size Content-Language: en-GB To: "T.J. Mercier" , menglong.dong@linux.dev, Alexei Starovoitov , Daniel Borkmann , Andrii Nakryiko , Martin KaFai Lau , Eduard Zingerman , Song Liu , John Fastabend , KP Singh , Stanislav Fomichev , Hao Luo , Jiri Olsa Cc: bpf@vger.kernel.org, linux-kernel@vger.kernel.org References: <20251207091005.2829703-1-tjmercier@google.com> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Yonghong Song In-Reply-To: <20251207091005.2829703-1-tjmercier@google.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 12/7/25 1:10 AM, T.J. Mercier wrote: > Commit af65320948b8 ("bpf: Bump iter seq size to support BTF > representation of large data structures") increased the fixed buffer > size from PAGE_SIZE to PAGE_SIZE << 3, but the docs for the function > didn't get updated at the same time. Update them. > > Signed-off-by: T.J. Mercier Acked-by: Yonghong Song