* Improved Rust hunk headers
@ 2026-01-08 12:38 Benno Lossin
2026-01-08 17:29 ` D. Ben Knoble
0 siblings, 1 reply; 2+ messages in thread
From: Benno Lossin @ 2026-01-08 12:38 UTC (permalink / raw)
To: git
Hey everyone,
Recently, while looking at a Rust patch [1] for the Linux kernel, I had
an idea to improve the hunk header for Rust code. The patch's hunk
header is the function defined above the addition. To me it doesn't
provide much value in giving context; it has been a while since I last
looked at that file. It would be much more useful in this case to show
the context `pub unsafe trait FromBytes {` instead. This is because the
function that's being added is added to that trait.
In the general case it still is useful to show the function context when
the contents of a function are changed. Ideally, it would be possible to
show both the `impl` block and the function signature.
I have no knowledge of the inner workings of git, so this might be a
tall ask. But would it be possible to implement having multi-line hunk
headers and have a more advanced selection algorithm? AFAIK at the
moment a regex is used to extract the header, I think that would still
be sufficient for this case, if the `impl` block header is searched for
after the function signature.
My current solution to reviewing a patch like this is either opening the
file and scrolling to the change location. This isn't possible if
earlier patches in a series already changed the file. In that case the
only option is to create a new worktree and apply the patch series. It
would be great if I didn't have to do this for simple things.
Cheers,
Benno
[1]: https://lore.kernel.org/all/20251216-transmute-v2-1-b23e5277ad02@google.com/
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Improved Rust hunk headers
2026-01-08 12:38 Improved Rust hunk headers Benno Lossin
@ 2026-01-08 17:29 ` D. Ben Knoble
0 siblings, 0 replies; 2+ messages in thread
From: D. Ben Knoble @ 2026-01-08 17:29 UTC (permalink / raw)
To: Benno Lossin; +Cc: git
On Thu, Jan 8, 2026 at 10:34 AM Benno Lossin <lossin@kernel.org> wrote:
>
> Hey everyone,
>
> Recently, while looking at a Rust patch [1] for the Linux kernel, I had
> an idea to improve the hunk header for Rust code. The patch's hunk
> header is the function defined above the addition. To me it doesn't
> provide much value in giving context; it has been a while since I last
> looked at that file. It would be much more useful in this case to show
> the context `pub unsafe trait FromBytes {` instead. This is because the
> function that's being added is added to that trait.
>
> In the general case it still is useful to show the function context when
> the contents of a function are changed. Ideally, it would be possible to
> show both the `impl` block and the function signature.
>
> I have no knowledge of the inner workings of git, so this might be a
> tall ask. But would it be possible to implement having multi-line hunk
> headers and have a more advanced selection algorithm? AFAIK at the
> moment a regex is used to extract the header, I think that would still
> be sufficient for this case, if the `impl` block header is searched for
> after the function signature.
I wonder if an empty hunk (that is, two adjacent headers) would break
anything? Just thinking aloud.
--
D. Ben Knoble
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-01-08 17:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-08 12:38 Improved Rust hunk headers Benno Lossin
2026-01-08 17:29 ` D. Ben Knoble
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox