* [PATCH] xen/rangeset: fix typo in comment
@ 2025-07-28 12:50 Frediano Ziglio
2025-07-28 15:25 ` Roger Pau Monné
0 siblings, 1 reply; 4+ messages in thread
From: Frediano Ziglio @ 2025-07-28 12:50 UTC (permalink / raw)
To: xen-devel
Cc: Frediano Ziglio, Andrew Cooper, Anthony PERARD, Michal Orzel,
Jan Beulich, Julien Grall, Roger Pau Monné,
Stefano Stabellini
Fixes: fc41b5c1fdbe ("Extend the range abstraction"...)
Signed-off-by: Frediano Ziglio <frediano.ziglio@cloud.com>
---
xen/common/rangeset.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xen/common/rangeset.c b/xen/common/rangeset.c
index b9e8912fb1..0e3b9acd35 100644
--- a/xen/common/rangeset.c
+++ b/xen/common/rangeset.c
@@ -38,7 +38,7 @@ struct rangeset {
};
/*****************************
- * Private range functions hide the underlying linked-list implemnetation.
+ * Private range functions hide the underlying linked-list implementation.
*/
/* Find highest range lower than or containing s. NULL if no such range. */
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] xen/rangeset: fix typo in comment
2025-07-28 12:50 [PATCH] xen/rangeset: fix typo in comment Frediano Ziglio
@ 2025-07-28 15:25 ` Roger Pau Monné
2025-07-29 9:34 ` Jan Beulich
0 siblings, 1 reply; 4+ messages in thread
From: Roger Pau Monné @ 2025-07-28 15:25 UTC (permalink / raw)
To: Frediano Ziglio
Cc: xen-devel, Andrew Cooper, Anthony PERARD, Michal Orzel,
Jan Beulich, Julien Grall, Stefano Stabellini
On Mon, Jul 28, 2025 at 01:50:33PM +0100, Frediano Ziglio wrote:
> Fixes: fc41b5c1fdbe ("Extend the range abstraction"...)
> Signed-off-by: Frediano Ziglio <frediano.ziglio@cloud.com>
Acked-by: Roger Pau Monné <roger.pau@citrix.com>
Thanks, Roger.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] xen/rangeset: fix typo in comment
2025-07-28 15:25 ` Roger Pau Monné
@ 2025-07-29 9:34 ` Jan Beulich
2025-07-29 11:07 ` Frediano Ziglio
0 siblings, 1 reply; 4+ messages in thread
From: Jan Beulich @ 2025-07-29 9:34 UTC (permalink / raw)
To: Frediano Ziglio
Cc: xen-devel, Andrew Cooper, Anthony PERARD, Michal Orzel,
Julien Grall, Stefano Stabellini, Roger Pau Monné
On 28.07.2025 17:25, Roger Pau Monné wrote:
> On Mon, Jul 28, 2025 at 01:50:33PM +0100, Frediano Ziglio wrote:
>> Fixes: fc41b5c1fdbe ("Extend the range abstraction"...)
>> Signed-off-by: Frediano Ziglio <frediano.ziglio@cloud.com>
>
> Acked-by: Roger Pau Monné <roger.pau@citrix.com>
Just to mention: I committed this as is with Roger's ack, but I don't think
a Fixes: tag is really appropriate here (I'm certainly not intending to
pick this up for backporting). Even further I question a patch changing the
spelling of a single word in a comment: It not only took you time to make
and send the patch, it also took people time to look at it, Roger to send
an ack, me to commit it, and now CI will put extra effort into testing it
in isolation via the build-each-commit job. That's way too much resource use
imo to justify the extremely minor effect. Such spelling mistakes are imo
best corrected when touching adjacent code anyway.
Jan
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] xen/rangeset: fix typo in comment
2025-07-29 9:34 ` Jan Beulich
@ 2025-07-29 11:07 ` Frediano Ziglio
0 siblings, 0 replies; 4+ messages in thread
From: Frediano Ziglio @ 2025-07-29 11:07 UTC (permalink / raw)
To: Jan Beulich
Cc: xen-devel, Andrew Cooper, Anthony PERARD, Michal Orzel,
Julien Grall, Stefano Stabellini, Roger Pau Monné
On Tue, Jul 29, 2025 at 10:34 AM Jan Beulich <jbeulich@suse.com> wrote:
>
> On 28.07.2025 17:25, Roger Pau Monné wrote:
> > On Mon, Jul 28, 2025 at 01:50:33PM +0100, Frediano Ziglio wrote:
> >> Fixes: fc41b5c1fdbe ("Extend the range abstraction"...)
> >> Signed-off-by: Frediano Ziglio <frediano.ziglio@cloud.com>
> >
> > Acked-by: Roger Pau Monné <roger.pau@citrix.com>
>
> Just to mention: I committed this as is with Roger's ack, but I don't think
> a Fixes: tag is really appropriate here (I'm certainly not intending to
> pick this up for backporting). Even further I question a patch changing the
> spelling of a single word in a comment: It not only took you time to make
> and send the patch, it also took people time to look at it, Roger to send
> an ack, me to commit it, and now CI will put extra effort into testing it
> in isolation via the build-each-commit job. That's way too much resource use
> imo to justify the extremely minor effect. Such spelling mistakes are imo
> best corrected when touching adjacent code anyway.
>
> Jan
Hi,
I didn't know there was an automatism with the "Fixes:" tag.
I found the comment about the effort a bit harsh. In many different
open source projects this would be against the code of conduct.
Usually an open source project should promote contributions. This
seems not the case in Xen. A different phrasing would have been
better.
Other projects have separate handling for trivial patches. For
instance Qemu has some "TRIVIAL" marking, this will help batching
small changes like this; also the trivial changes have different
reviewers.
If the issue is CI resources we can talk about. For instance multiple
runners can be added, I have a runner too that helps when I compile my
branches. Suggesting other users to do that could relieve main
runners. Another option would be having the possibility to avoid
having to compile commits like this. Disabling the need to have every
commit compiled could be an option.
About the commits separation I prefer (and I'm not the only one) to
separate hunks and changes by purpose. Fixing typos is a different
purpose than other changes.
Regards,
Frediano
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-07-29 11:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-28 12:50 [PATCH] xen/rangeset: fix typo in comment Frediano Ziglio
2025-07-28 15:25 ` Roger Pau Monné
2025-07-29 9:34 ` Jan Beulich
2025-07-29 11:07 ` Frediano Ziglio
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.