* [PATCH v3] [net-next] igb: Fix 2 typos in comments in igb_main.c
@ 2024-10-24 5:45 Johnny Park
2024-10-24 8:41 ` Przemek Kitszel
0 siblings, 1 reply; 3+ messages in thread
From: Johnny Park @ 2024-10-24 5:45 UTC (permalink / raw)
To: anthony.l.nguyen, przemyslaw.kitszel, davem, edumazet, kuba,
pabeni, andrew+netdev, horms, pmenzel
Cc: intel-wired-lan, netdev, kernel-janitors, linux-kernel
Fix 2 spelling mistakes in comments in `igb_main.c`.
Signed-off-by: Johnny Park <pjohnny0508@gmail.com>
---
Changes in v3:
- Adjust commit message
Changes in v2:
- Fix spelling mor -> more
---
drivers/net/ethernet/intel/igb/igb_main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c
index 1ef4cb871452..fc587304b3c0 100644
--- a/drivers/net/ethernet/intel/igb/igb_main.c
+++ b/drivers/net/ethernet/intel/igb/igb_main.c
@@ -1204,7 +1204,7 @@ static int igb_alloc_q_vector(struct igb_adapter *adapter,
/* initialize pointer to rings */
ring = q_vector->ring;
- /* intialize ITR */
+ /* initialize ITR */
if (rxr_count) {
/* rx or rx/tx vector */
if (!adapter->rx_itr_setting || adapter->rx_itr_setting > 3)
@@ -3906,7 +3906,7 @@ static void igb_remove(struct pci_dev *pdev)
*
* This function initializes the vf specific data storage and then attempts to
* allocate the VFs. The reason for ordering it this way is because it is much
- * mor expensive time wise to disable SR-IOV than it is to allocate and free
+ * more expensive time wise to disable SR-IOV than it is to allocate and free
* the memory for the VFs.
**/
static void igb_probe_vfs(struct igb_adapter *adapter)
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v3] [net-next] igb: Fix 2 typos in comments in igb_main.c
2024-10-24 5:45 [PATCH v3] [net-next] igb: Fix 2 typos in comments in igb_main.c Johnny Park
@ 2024-10-24 8:41 ` Przemek Kitszel
2024-10-25 5:06 ` Johnny Park
0 siblings, 1 reply; 3+ messages in thread
From: Przemek Kitszel @ 2024-10-24 8:41 UTC (permalink / raw)
To: Johnny Park, horms
Cc: intel-wired-lan, netdev, kernel-janitors, linux-kernel,
anthony.l.nguyen, davem, edumazet, kuba, pabeni, andrew+netdev,
pmenzel
On 10/24/24 07:45, Johnny Park wrote:
> Fix 2 spelling mistakes in comments in `igb_main.c`.
>
> Signed-off-by: Johnny Park <pjohnny0508@gmail.com>
you should collect Reviewed-by tags, as the one from Simon on v2.
for future Intel Ethernet drivers series, please target them to IWL
(net-next in the Subject becomes iwl-next)
> ---
> Changes in v3:
> - Adjust commit message
>
> Changes in v2:
> - Fix spelling mor -> more
> ---
> drivers/net/ethernet/intel/igb/igb_main.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c
> index 1ef4cb871452..fc587304b3c0 100644
> --- a/drivers/net/ethernet/intel/igb/igb_main.c
> +++ b/drivers/net/ethernet/intel/igb/igb_main.c
> @@ -1204,7 +1204,7 @@ static int igb_alloc_q_vector(struct igb_adapter *adapter,
> /* initialize pointer to rings */
> ring = q_vector->ring;
>
> - /* intialize ITR */
> + /* initialize ITR */
> if (rxr_count) {
> /* rx or rx/tx vector */
Would be great to have capitalization errors fixed too, Rx, Tx, VF, not
necessarily in this patch.
> if (!adapter->rx_itr_setting || adapter->rx_itr_setting > 3)
> @@ -3906,7 +3906,7 @@ static void igb_remove(struct pci_dev *pdev)
> *
> * This function initializes the vf specific data storage and then attempts to
> * allocate the VFs. The reason for ordering it this way is because it is much
> - * mor expensive time wise to disable SR-IOV than it is to allocate and free
> + * more expensive time wise to disable SR-IOV than it is to allocate and free
> * the memory for the VFs.
> **/
> static void igb_probe_vfs(struct igb_adapter *adapter)
to reduce traffic, I'm fine with this, to go via any tree:
Acked-by: Przemek Kitszel <przemyslaw.kitszel@intel.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v3] [net-next] igb: Fix 2 typos in comments in igb_main.c
2024-10-24 8:41 ` Przemek Kitszel
@ 2024-10-25 5:06 ` Johnny Park
0 siblings, 0 replies; 3+ messages in thread
From: Johnny Park @ 2024-10-25 5:06 UTC (permalink / raw)
To: Przemek Kitszel
Cc: horms, intel-wired-lan, netdev, kernel-janitors, linux-kernel,
anthony.l.nguyen, davem, edumazet, kuba, pabeni, andrew+netdev,
pmenzel
On Thu, Oct 24, 2024 at 10:41:25AM +0200, Przemek Kitszel wrote:
> On 10/24/24 07:45, Johnny Park wrote:
> you should collect Reviewed-by tags, as the one from Simon on v2.
Sorry, I wasn't aware of that rule. For future pathces I'll include reviewed/acked tags.
> for future Intel Ethernet drivers series, please target them to IWL
> (net-next in the Subject becomes iwl-next)
Sorry again, from the other patchworks https://patchwork.ozlabs.org/project/intel-wired-lan/list/ I should have noticed that pattern.
> > ring = q_vector->ring;
> > - /* intialize ITR */
> > + /* initialize ITR */
> > if (rxr_count) {
> > /* rx or rx/tx vector */
>
> Would be great to have capitalization errors fixed too, Rx, Tx, VF, not
> necessarily in this patch.
That sounds like a good idea, perhaps fixing those will be my next patch.
> to reduce traffic, I'm fine with this, to go via any tree:
> Acked-by: Przemek Kitszel <przemyslaw.kitszel@intel.com>
Thank you for the review!
Regards,
Johnny
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-10-25 5:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-24 5:45 [PATCH v3] [net-next] igb: Fix 2 typos in comments in igb_main.c Johnny Park
2024-10-24 8:41 ` Przemek Kitszel
2024-10-25 5:06 ` Johnny Park
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).