[PATCH bpf-next] bpf: Fix bpf_seq_read docs for increased buffer size

T.J. Mercier posted 1 patch 1 week, 5 days ago
kernel/bpf/bpf_iter.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH bpf-next] bpf: Fix bpf_seq_read docs for increased buffer size
Posted by T.J. Mercier 1 week, 5 days ago
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 <tjmercier@google.com>
---
 kernel/bpf/bpf_iter.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/bpf/bpf_iter.c b/kernel/bpf/bpf_iter.c
index eec60b57bd3d..4b58d56ecab1 100644
--- a/kernel/bpf/bpf_iter.c
+++ b/kernel/bpf/bpf_iter.c
@@ -86,7 +86,7 @@ static bool bpf_iter_support_resched(struct seq_file *seq)
 
 /* bpf_seq_read, a customized and simpler version for bpf iterator.
  * The following are differences from seq_read():
- *  . fixed buffer size (PAGE_SIZE)
+ *  . fixed buffer size (PAGE_SIZE << 3)
  *  . assuming NULL ->llseek()
  *  . stop() may call bpf program, handling potential overflow there
  */
-- 
2.52.0.223.gf5cc29aaa4-goog
Re: [PATCH bpf-next] bpf: Fix bpf_seq_read docs for increased buffer size
Posted by Yonghong Song 1 week, 4 days ago

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 <tjmercier@google.com>

Acked-by: Yonghong Song <yonghong.song@linux.dev>
Re: [PATCH bpf-next] bpf: Fix bpf_seq_read docs for increased buffer size
Posted by T.J. Mercier 1 week, 3 days ago
On Mon, Dec 8, 2025 at 2:42 AM Yonghong Song <yonghong.song@linux.dev> wrote:
>
>
>
> 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 <tjmercier@google.com>
>
> Acked-by: Yonghong Song <yonghong.song@linux.dev>

Thanks!