* [PATCH] docs: pt_BR: update minimal software requirement for pahole in changes.rst
@ 2026-06-14 23:43 Amanda Corrêa
2026-06-15 0:55 ` Daniel Pereira
2026-06-30 19:59 ` Jonathan Corbet
0 siblings, 2 replies; 3+ messages in thread
From: Amanda Corrêa @ 2026-06-14 23:43 UTC (permalink / raw)
To: Daniel Pereira, Jonathan Corbet
Cc: Shuah Khan, linux-doc, linux-kernel, Amanda Corrêa
Update the Brazilian Portuguese translation of changes.rst to align with
the latest English version.
Key changes include:
- Updated minimum version for pahole (1.26)
- Added note about kfuncs annotated with KF_IMPLICIT_ARGS
requiring pahole v1.26 or later
- Changed "optional" to "opcional" in the software requirements
table
Signed-off-by: Amanda Corrêa <amandacorreasilvax@gmail.com>
---
.../translations/pt_BR/process/changes.rst | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/Documentation/translations/pt_BR/process/changes.rst b/Documentation/translations/pt_BR/process/changes.rst
index a105581dc..49b7f7450 100644
--- a/Documentation/translations/pt_BR/process/changes.rst
+++ b/Documentation/translations/pt_BR/process/changes.rst
@@ -32,16 +32,16 @@ PC Card por exemplo, provavelmente não precisará se preocupar com o pcmciautil
Programa Versão mínima Comando para verificar a versão
====================== =============== ========================================
GNU C 8.1 gcc --version
-Clang/LLVM (optional) 15.0.0 clang --version
-Rust (optional) 1.85.0 rustc --version
-bindgen (optional) 0.71.1 bindgen --version
+Clang/LLVM (opcional) 15.0.0 clang --version
+Rust (opcional) 1.85.0 rustc --version
+bindgen (opcional) 0.71.1 bindgen --version
GNU make 4.0 make --version
bash 4.2 bash --version
binutils 2.30 ld -v
flex 2.5.35 flex --version
gdb 7.2 gdb --version
bison 2.0 bison --version
-pahole 1.22 pahole --version
+pahole 1.26 pahole --version
util-linux 2.10o mount --version
kmod 13 kmod -V
e2fsprogs 1.41.4 e2fsck -V
@@ -149,6 +149,11 @@ Desde o Linux 5.2, se CONFIG_DEBUG_INFO_BTF estiver selecionado, o sistema de
compilação gera BTF (BPF Type Format) a partir do DWARF no vmlinux, e um pouco
depois para os módulos do kernel também. Isso requer o pahole v1.22 ou superior.
+Desde o Linux 7.0, kfuncs anotados com KF_IMPLICIT_ARGS exigem o pahole v1.26
+ou posterior. Sem ele, tais kfuncs terão protótipos BTF incorretos em vmlinux,
+fazendo com que os programas BPF falhem ao carregar com um erro "func_proto
+incompatible with vmlinux". Muitos kfuncs sched_ext são afetados.
+
Ele pode ser encontrado nos pacotes ``dwarves`` ou ``pahole`` das
distribuições, ou em https://fedorapeople.org/~acme/dwarves/.
@@ -189,7 +194,7 @@ Tar
O GNU tar é necessário caso você deseje habilitar o acesso aos cabeçalhos do
kernel via sysfs (CONFIG_IKHEADERS).
-gtags / GNU GLOBAL (optional)
+gtags / GNU GLOBAL (opcional)
-----------------------------
A compilação do kernel requer o GNU GLOBAL versão 6.6.5 ou superior para gerar
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] docs: pt_BR: update minimal software requirement for pahole in changes.rst
2026-06-14 23:43 [PATCH] docs: pt_BR: update minimal software requirement for pahole in changes.rst Amanda Corrêa
@ 2026-06-15 0:55 ` Daniel Pereira
2026-06-30 19:59 ` Jonathan Corbet
1 sibling, 0 replies; 3+ messages in thread
From: Daniel Pereira @ 2026-06-15 0:55 UTC (permalink / raw)
To: Amanda Corrêa; +Cc: Jonathan Corbet, Shuah Khan, linux-doc, linux-kernel
Em dom., 14 de jun. de 2026 às 20:44, Amanda Corrêa
<amandacorreasilvax@gmail.com> escreveu:
>
> Update the Brazilian Portuguese translation of changes.rst to align with
> the latest English version.
>
> Key changes include:
> - Updated minimum version for pahole (1.26)
> - Added note about kfuncs annotated with KF_IMPLICIT_ARGS
> requiring pahole v1.26 or later
> - Changed "optional" to "opcional" in the software requirements
> table
>
> Signed-off-by: Amanda Corrêa <amandacorreasilvax@gmail.com>
Hi Amanda,
The grammar for Brazilian Portuguese is okay.
Thanks,
Acked-by: Daniel Pereira <danielmaraboo@gmail.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] docs: pt_BR: update minimal software requirement for pahole in changes.rst
2026-06-14 23:43 [PATCH] docs: pt_BR: update minimal software requirement for pahole in changes.rst Amanda Corrêa
2026-06-15 0:55 ` Daniel Pereira
@ 2026-06-30 19:59 ` Jonathan Corbet
1 sibling, 0 replies; 3+ messages in thread
From: Jonathan Corbet @ 2026-06-30 19:59 UTC (permalink / raw)
To: Amanda Corrêa, Daniel Pereira
Cc: Shuah Khan, linux-doc, linux-kernel, Amanda Corrêa
Amanda Corrêa <amandacorreasilvax@gmail.com> writes:
> Update the Brazilian Portuguese translation of changes.rst to align with
> the latest English version.
>
> Key changes include:
> - Updated minimum version for pahole (1.26)
> - Added note about kfuncs annotated with KF_IMPLICIT_ARGS
> requiring pahole v1.26 or later
> - Changed "optional" to "opcional" in the software requirements
> table
>
> Signed-off-by: Amanda Corrêa <amandacorreasilvax@gmail.com>
> ---
> .../translations/pt_BR/process/changes.rst | 15 ++++++++++-----
> 1 file changed, 10 insertions(+), 5 deletions(-)
This patch doesn't apply. There have been others fixing up the
changes.rst files; please have another look and see if there are things
still in need of attention.
Thanks,
jon
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-06-30 19:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-14 23:43 [PATCH] docs: pt_BR: update minimal software requirement for pahole in changes.rst Amanda Corrêa
2026-06-15 0:55 ` Daniel Pereira
2026-06-30 19:59 ` Jonathan Corbet
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox