From: Przemek Kitszel <przemyslaw.kitszel@intel.com>
To: Jakub Kicinski <kuba@kernel.org>
Cc: <intel-wired-lan@lists.osuosl.org>,
Tony Nguyen <anthony.l.nguyen@intel.com>,
<netdev@vger.kernel.org>, Kuniyuki Iwashima <kuniyu@google.com>,
<stable@vger.kernel.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Sasha Levin <sashal@kernel.org>
Subject: Re: [Intel-wired-lan] [PATCH 00/12] ice: split ice_virtchnl.c git-blame friendly way
Date: Wed, 13 Aug 2025 09:33:35 +0200 [thread overview]
Message-ID: <4d9e2ca6-006d-4da4-8e88-3cf6692432a7@intel.com> (raw)
In-Reply-To: <20250812135714.0e1a7ee0@kernel.org>
On 8/12/25 22:57, Jakub Kicinski wrote:
> On Tue, 12 Aug 2025 15:28:58 +0200 Przemek Kitszel wrote:
>> Summary:
>> Split ice_virtchnl.c into two more files (+headers), in a way
>> that git-blame works better.
>> Then move virtchnl files into a new subdir.
>> No logic changes.
>>
>> I have developed (or discovered ;)) how to split a file in a way that
>> both old and new are nice in terms of git-blame
>> There were no much disscussion on [RFC], so I would like to propose
>> to go forward with this approach.
>>
>> There is more commits needed to have it nice, so it forms a git-log vs
>> git-blame tradeoff, but (after the brief moment that this is on the top)
>> we spend orders of magnitude more time looking at the blame output (and
>> commit messages linked from that) - so I find it much better to see
>> actual logic changes instead of "move xx to yy" stuff (typical for
>> "squashed/single-commit splits").
>>
>> Cherry-picks/rebases work the same with this method as with simple
>> "squashed/single-commit" approach (literally all commits squashed into
>> one (to have better git-log, but shitty git-blame output).
>>
>> Rationale for the split itself is, as usual, "file is big and we want to
>> extend it".
>>
>> This series is available on my github (just rebased from any
>> earlier mentions):
>> https://github.com/pkitszel/linux/tree/virtchnl-split-Aug12
>> (the simple git-email view flattens this series, removing two
>> merges from the view).
>>
>>
>> [RFC]:
>> https://lore.kernel.org/netdev/5b94d14e-a0e7-47bd-82fc-c85171cbf26e@intel.com/T/#u
>>
>> (I would really look at my fork via your preferred git interaction tool
>> instead of looking at the patches below).
>
> UI tools aside I wish you didn't cut off the diffstat from the cover
> letter :/ It'd make it much easier to understand what you're splitting.
ooof, that was not intentional (turns out that git-send-email itself was
not bothering to generate diffstat when there are merges present :~|)
anyway, here it is:
drivers/net/ethernet/intel/ice/Makefile | 8 +-
drivers/net/ethernet/intel/ice/ice_sriov.h | 4 +-
drivers/net/ethernet/intel/ice/ice_vf_lib.h | 2 +-
.../intel/ice/{ => virt}/ice_virtchnl.h | 0
.../ice/{ => virt}/ice_virtchnl_allowlist.h | 0
.../intel/ice/{ => virt}/ice_virtchnl_fdir.h | 0
.../intel/ice/virt/ice_virtchnl_queues.h | 16 +
.../intel/ice/virt/ice_virtchnl_rss.h | 14 +
drivers/net/ethernet/intel/ice/ice_sriov.c | 2 +-
drivers/net/ethernet/intel/ice/ice_vf_lib.c | 2 +-
.../intel/ice/{ => virt}/ice_virtchnl.c | 2051 ++-------------
.../ice/{ => virt}/ice_virtchnl_allowlist.c | 0
.../intel/ice/{ => virt}/ice_virtchnl_fdir.c | 0
.../intel/ice/virt/ice_virtchnl_queues.c | 975 +++++++
.../intel/ice/virt/ice_virtchnl_rss.c | 719 +++++
15 files changed, 1922 insertions(+), 1871 deletions(-)
>
> Greg, Sasha, I suspect stable will suffer the most from any file split /
> movement. Do you have any recommendation on what should be allowed?
WARNING: multiple messages have this Message-ID (diff)
From: Przemek Kitszel <przemyslaw.kitszel@intel.com>
To: Jakub Kicinski <kuba@kernel.org>
Cc: <intel-wired-lan@lists.osuosl.org>,
Tony Nguyen <anthony.l.nguyen@intel.com>,
<netdev@vger.kernel.org>, Kuniyuki Iwashima <kuniyu@google.com>,
<stable@vger.kernel.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Sasha Levin <sashal@kernel.org>
Subject: Re: [PATCH 00/12] ice: split ice_virtchnl.c git-blame friendly way
Date: Wed, 13 Aug 2025 09:33:35 +0200 [thread overview]
Message-ID: <4d9e2ca6-006d-4da4-8e88-3cf6692432a7@intel.com> (raw)
In-Reply-To: <20250812135714.0e1a7ee0@kernel.org>
On 8/12/25 22:57, Jakub Kicinski wrote:
> On Tue, 12 Aug 2025 15:28:58 +0200 Przemek Kitszel wrote:
>> Summary:
>> Split ice_virtchnl.c into two more files (+headers), in a way
>> that git-blame works better.
>> Then move virtchnl files into a new subdir.
>> No logic changes.
>>
>> I have developed (or discovered ;)) how to split a file in a way that
>> both old and new are nice in terms of git-blame
>> There were no much disscussion on [RFC], so I would like to propose
>> to go forward with this approach.
>>
>> There is more commits needed to have it nice, so it forms a git-log vs
>> git-blame tradeoff, but (after the brief moment that this is on the top)
>> we spend orders of magnitude more time looking at the blame output (and
>> commit messages linked from that) - so I find it much better to see
>> actual logic changes instead of "move xx to yy" stuff (typical for
>> "squashed/single-commit splits").
>>
>> Cherry-picks/rebases work the same with this method as with simple
>> "squashed/single-commit" approach (literally all commits squashed into
>> one (to have better git-log, but shitty git-blame output).
>>
>> Rationale for the split itself is, as usual, "file is big and we want to
>> extend it".
>>
>> This series is available on my github (just rebased from any
>> earlier mentions):
>> https://github.com/pkitszel/linux/tree/virtchnl-split-Aug12
>> (the simple git-email view flattens this series, removing two
>> merges from the view).
>>
>>
>> [RFC]:
>> https://lore.kernel.org/netdev/5b94d14e-a0e7-47bd-82fc-c85171cbf26e@intel.com/T/#u
>>
>> (I would really look at my fork via your preferred git interaction tool
>> instead of looking at the patches below).
>
> UI tools aside I wish you didn't cut off the diffstat from the cover
> letter :/ It'd make it much easier to understand what you're splitting.
ooof, that was not intentional (turns out that git-send-email itself was
not bothering to generate diffstat when there are merges present :~|)
anyway, here it is:
drivers/net/ethernet/intel/ice/Makefile | 8 +-
drivers/net/ethernet/intel/ice/ice_sriov.h | 4 +-
drivers/net/ethernet/intel/ice/ice_vf_lib.h | 2 +-
.../intel/ice/{ => virt}/ice_virtchnl.h | 0
.../ice/{ => virt}/ice_virtchnl_allowlist.h | 0
.../intel/ice/{ => virt}/ice_virtchnl_fdir.h | 0
.../intel/ice/virt/ice_virtchnl_queues.h | 16 +
.../intel/ice/virt/ice_virtchnl_rss.h | 14 +
drivers/net/ethernet/intel/ice/ice_sriov.c | 2 +-
drivers/net/ethernet/intel/ice/ice_vf_lib.c | 2 +-
.../intel/ice/{ => virt}/ice_virtchnl.c | 2051 ++-------------
.../ice/{ => virt}/ice_virtchnl_allowlist.c | 0
.../intel/ice/{ => virt}/ice_virtchnl_fdir.c | 0
.../intel/ice/virt/ice_virtchnl_queues.c | 975 +++++++
.../intel/ice/virt/ice_virtchnl_rss.c | 719 +++++
15 files changed, 1922 insertions(+), 1871 deletions(-)
>
> Greg, Sasha, I suspect stable will suffer the most from any file split /
> movement. Do you have any recommendation on what should be allowed?
next prev parent reply other threads:[~2025-08-13 7:40 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-12 13:28 [Intel-wired-lan] [PATCH 00/12] ice: split ice_virtchnl.c git-blame friendly way Przemek Kitszel
2025-08-12 13:28 ` Przemek Kitszel
2025-08-12 13:28 ` [Intel-wired-lan] [PATCH 01/12] ice: split queue stuff out of ice_virtchnl.c - p1 Przemek Kitszel
2025-08-12 13:28 ` Przemek Kitszel
2025-08-12 13:29 ` [Intel-wired-lan] [PATCH 02/12] ice: split queue stuff out of ice_virtchnl.c - p2 Przemek Kitszel
2025-08-12 13:29 ` Przemek Kitszel
2025-08-12 16:26 ` [Intel-wired-lan] " Loktionov, Aleksandr
2025-08-12 16:26 ` Loktionov, Aleksandr
2025-08-12 20:07 ` Paul Menzel
2025-08-13 7:38 ` Przemek Kitszel
2025-08-12 13:29 ` [Intel-wired-lan] [PATCH 03/12] ice: extract ice_virtchnl_queues.c: cleanup - p1 Przemek Kitszel
2025-08-12 13:29 ` Przemek Kitszel
2025-08-12 13:29 ` [Intel-wired-lan] [PATCH 04/12] ice: extract ice_virtchnl_queues.c: cleanup - p2 Przemek Kitszel
2025-08-12 13:29 ` Przemek Kitszel
2025-08-12 13:29 ` [Intel-wired-lan] [PATCH 05/12] ice: split RSS stuff out of ice_virtchnl.c - p1 Przemek Kitszel
2025-08-12 13:29 ` Przemek Kitszel
2025-08-12 13:29 ` [Intel-wired-lan] [PATCH 06/12] ice: extract ice_virtchnl_queues.c: cleanup - p3 Przemek Kitszel
2025-08-12 13:29 ` Przemek Kitszel
2025-08-12 13:29 ` [Intel-wired-lan] [PATCH 07/12] ice: split RSS stuff out of ice_virtchnl.c - p2 Przemek Kitszel
2025-08-12 13:29 ` Przemek Kitszel
2025-08-12 16:29 ` [Intel-wired-lan] " Loktionov, Aleksandr
2025-08-12 16:29 ` Loktionov, Aleksandr
2025-08-12 13:29 ` [Intel-wired-lan] [PATCH 08/12] ice: finish ice_virtchnl.c split into ice_virtchnl_queues.c Przemek Kitszel
2025-08-12 13:29 ` Przemek Kitszel
2025-08-12 13:29 ` [Intel-wired-lan] [PATCH 09/12] ice: extract ice_virtchnl_rss.c: cleanup - p1 Przemek Kitszel
2025-08-12 13:29 ` Przemek Kitszel
2025-08-12 13:29 ` [Intel-wired-lan] [PATCH 10/12] ice: extract ice_virtchnl_rss.c: cleanup - p2 Przemek Kitszel
2025-08-12 13:29 ` Przemek Kitszel
2025-08-12 13:29 ` [Intel-wired-lan] [PATCH 11/12] ice: finish ice_virtchnl.c split into ice_virtchnl_rss.c Przemek Kitszel
2025-08-12 13:29 ` Przemek Kitszel
2025-08-12 13:29 ` [Intel-wired-lan] [PATCH 12/12] ice: add virt/ and move ice_virtchnl* files there Przemek Kitszel
2025-08-12 13:29 ` Przemek Kitszel
2025-08-12 20:57 ` [Intel-wired-lan] [PATCH 00/12] ice: split ice_virtchnl.c git-blame friendly way Jakub Kicinski
2025-08-12 20:57 ` Jakub Kicinski
2025-08-13 5:34 ` [Intel-wired-lan] " Greg Kroah-Hartman
2025-08-13 5:34 ` Greg Kroah-Hartman
2025-08-13 7:33 ` Przemek Kitszel [this message]
2025-08-13 7:33 ` Przemek Kitszel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4d9e2ca6-006d-4da4-8e88-3cf6692432a7@intel.com \
--to=przemyslaw.kitszel@intel.com \
--cc=anthony.l.nguyen@intel.com \
--cc=gregkh@linuxfoundation.org \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=kuba@kernel.org \
--cc=kuniyu@google.com \
--cc=netdev@vger.kernel.org \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.