From: Jiri Pirko <jiri@resnulli.us>
To: Geethasowjanya Akula <gakula@marvell.com>
Cc: "netdev@vger.kernel.org" <netdev@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"kuba@kernel.org" <kuba@kernel.org>,
"davem@davemloft.net" <davem@davemloft.net>,
"pabeni@redhat.com" <pabeni@redhat.com>,
"edumazet@google.com" <edumazet@google.com>,
Sunil Kovvuri Goutham <sgoutham@marvell.com>,
Subbaraya Sundeep Bhatta <sbhatta@marvell.com>,
Hariprasad Kelam <hkelam@marvell.com>
Subject: Re: [EXTERNAL] Re: [net-next PATCH v10 01/11] octeontx2-pf: Refactoring RVU driver
Date: Fri, 16 Aug 2024 16:10:31 +0200 [thread overview]
Message-ID: <Zr9d18M31WsT1mgf@nanopsycho.orion> (raw)
In-Reply-To: <CH0PR18MB4339720BC03E2E4E6FAC0251CD812@CH0PR18MB4339.namprd18.prod.outlook.com>
Fri, Aug 16, 2024 at 03:36:41PM CEST, gakula@marvell.com wrote:
>
>
>>-----Original Message-----
>>From: Jiri Pirko <jiri@resnulli.us>
>>Sent: Thursday, August 8, 2024 9:12 PM
>>To: Geethasowjanya Akula <gakula@marvell.com>
>>Cc: netdev@vger.kernel.org; linux-kernel@vger.kernel.org; kuba@kernel.org;
>>davem@davemloft.net; pabeni@redhat.com; edumazet@google.com; Sunil
>>Kovvuri Goutham <sgoutham@marvell.com>; Subbaraya Sundeep Bhatta
>><sbhatta@marvell.com>; Hariprasad Kelam <hkelam@marvell.com>
>>Subject: [EXTERNAL] Re: [net-next PATCH v10 01/11] octeontx2-pf: Refactoring
>>RVU driver
>>
>>Mon, Aug 05, 2024 at 03:18:05PM CEST, gakula@marvell.com wrote:
>>>Refactoring and export list of shared functions such that they can be
>>>used by both RVU NIC and representor driver.
>>>
>>>Signed-off-by: Geetha sowjanya <gakula@marvell.com>
>>>Reviewed-by: Simon Horman <horms@kernel.org>
>>>---
>>> .../ethernet/marvell/octeontx2/af/common.h | 2 +
>>> .../net/ethernet/marvell/octeontx2/af/mbox.h | 2 +
>>> .../net/ethernet/marvell/octeontx2/af/npc.h | 1 +
>>> .../net/ethernet/marvell/octeontx2/af/rvu.c | 11 +
>>> .../net/ethernet/marvell/octeontx2/af/rvu.h | 1 +
>>> .../marvell/octeontx2/af/rvu_debugfs.c | 27 --
>>> .../ethernet/marvell/octeontx2/af/rvu_nix.c | 47 ++--
>>> .../marvell/octeontx2/af/rvu_npc_fs.c | 5 +
>>> .../ethernet/marvell/octeontx2/af/rvu_reg.h | 4 +
>>> .../marvell/octeontx2/af/rvu_struct.h | 26 ++
>>> .../marvell/octeontx2/af/rvu_switch.c | 2 +-
>>> .../marvell/octeontx2/nic/otx2_common.c | 6 +-
>>> .../marvell/octeontx2/nic/otx2_common.h | 43 ++--
>>> .../ethernet/marvell/octeontx2/nic/otx2_pf.c | 240 +++++++++++-------
>>> .../marvell/octeontx2/nic/otx2_txrx.c | 17 +-
>>> .../marvell/octeontx2/nic/otx2_txrx.h | 3 +-
>>> .../ethernet/marvell/octeontx2/nic/otx2_vf.c | 7 +-
>>> 17 files changed, 266 insertions(+), 178 deletions(-)
>>
>>How can anyone review this?
>>
>>If you need to refactor the code in preparation for a feature, you can do in in a
>>separate patchset sent before the feature appears. This patch should be split
>>into X patches. One logical change per patch.
>If these changes are moved into a separate patchset. How can someone understand and review
>them without knowing where they get reused.
Describe it then. No problem.
next prev parent reply other threads:[~2024-08-16 14:10 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-05 13:18 [net-next PATCH v10 00/11] Introduce RVU representors Geetha sowjanya
2024-08-05 13:18 ` [net-next PATCH v10 01/11] octeontx2-pf: Refactoring RVU driver Geetha sowjanya
2024-08-08 15:41 ` Jiri Pirko
2024-08-16 13:36 ` [EXTERNAL] " Geethasowjanya Akula
2024-08-16 14:10 ` Jiri Pirko [this message]
2024-08-20 5:24 ` Geethasowjanya Akula
2024-08-22 14:30 ` Jiri Pirko
2024-09-01 9:52 ` Geethasowjanya Akula
2024-08-05 13:18 ` [net-next PATCH v10 02/11] octeontx2-pf: RVU representor driver Geetha sowjanya
2024-08-05 13:18 ` [net-next PATCH v10 03/11] octeontx2-pf: Create representor netdev Geetha sowjanya
2024-08-08 15:51 ` Jiri Pirko
2024-08-16 13:36 ` [EXTERNAL] " Geethasowjanya Akula
2024-08-16 14:12 ` Jiri Pirko
2024-08-20 5:21 ` Geethasowjanya Akula
2024-08-05 13:18 ` [net-next PATCH v10 04/11] octeontx2-pf: Add basic net_device_ops Geetha sowjanya
2024-08-05 13:18 ` [net-next PATCH v10 05/11] octeontx2-af: Add packet path between representor and VF Geetha sowjanya
2024-08-05 13:18 ` [net-next PATCH v10 06/11] octeontx2-pf: Get VF stats via representor Geetha sowjanya
2024-08-05 13:18 ` [net-next PATCH v10 07/11] octeontx2-pf: Add support to sync link state between representor and VFs Geetha sowjanya
2024-08-05 13:18 ` [net-next PATCH v10 08/11] octeontx2-pf: Configure VF mtu via representor Geetha sowjanya
2024-08-05 13:18 ` [net-next PATCH v10 09/11] octeontx2-pf: Add representors for sdp MAC Geetha sowjanya
2024-08-05 13:18 ` [net-next PATCH v10 10/11] octeontx2-pf: Add devlink port support Geetha sowjanya
2024-08-05 13:18 ` [net-next PATCH v10 11/11] octeontx2-pf: Implement offload stats ndo for representors Geetha sowjanya
2024-08-08 2:46 ` [net-next PATCH v10 00/11] Introduce RVU representors Jakub Kicinski
2024-08-08 11:30 ` [EXTERNAL] " Sunil Kovvuri Goutham
2024-08-08 14:40 ` Jakub Kicinski
2024-08-08 15:46 ` Jiri Pirko
2024-08-16 13:36 ` [EXTERNAL] " Geethasowjanya Akula
2024-08-16 14:17 ` Jiri Pirko
2024-08-20 5:39 ` Geethasowjanya Akula
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=Zr9d18M31WsT1mgf@nanopsycho.orion \
--to=jiri@resnulli.us \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=gakula@marvell.com \
--cc=hkelam@marvell.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=sbhatta@marvell.com \
--cc=sgoutham@marvell.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®