* [PATCH] igb: Fix styling in enable/disable SR-IOV
@ 2024-10-14 23:16 Johnny Park
2024-10-16 0:46 ` Jakub Kicinski
0 siblings, 1 reply; 4+ messages in thread
From: Johnny Park @ 2024-10-14 23:16 UTC (permalink / raw)
To: anthony.l.nguyen, przemyslaw.kitszel, davem, edumazet, kuba,
pabeni
Cc: intel-wired-lan, netdev, linux-kernel
This patch fixes the checks and warnings for igb_enable_sriov and
igb_disable_sriov function reported by checkpatch.pl
Signed-off-by: Johnny Park <pjohnny0508@gmail.com>
---
drivers/net/ethernet/intel/igb/igb_main.c | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c
index 1ef4cb871452..5a3b10b81848 100644
--- a/drivers/net/ethernet/intel/igb/igb_main.c
+++ b/drivers/net/ethernet/intel/igb/igb_main.c
@@ -3703,10 +3703,10 @@ static int igb_disable_sriov(struct pci_dev *pdev, bool reinit)
dev_warn(&pdev->dev,
"Cannot deallocate SR-IOV virtual functions while they are assigned - VFs will not be deallocated\n");
return -EPERM;
- } else {
- pci_disable_sriov(pdev);
- msleep(500);
}
+
+ pci_disable_sriov(pdev);
+ msleep(500);
spin_lock_irqsave(&adapter->vfs_lock, flags);
kfree(adapter->vf_mac_list);
adapter->vf_mac_list = NULL;
@@ -3739,6 +3739,7 @@ static int igb_enable_sriov(struct pci_dev *pdev, int num_vfs, bool reinit)
err = -EPERM;
goto out;
}
+
if (!num_vfs)
goto out;
@@ -3746,11 +3747,13 @@ static int igb_enable_sriov(struct pci_dev *pdev, int num_vfs, bool reinit)
dev_info(&pdev->dev, "%d pre-allocated VFs found - override max_vfs setting of %d\n",
old_vfs, max_vfs);
adapter->vfs_allocated_count = old_vfs;
- } else
+ } else {
adapter->vfs_allocated_count = num_vfs;
+ }
adapter->vf_data = kcalloc(adapter->vfs_allocated_count,
- sizeof(struct vf_data_storage), GFP_KERNEL);
+ sizeof(struct vf_data_storage),
+ GFP_KERNEL);
/* if allocation failed then we do not support SR-IOV */
if (!adapter->vf_data) {
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] igb: Fix styling in enable/disable SR-IOV
2024-10-14 23:16 [PATCH] igb: Fix styling in enable/disable SR-IOV Johnny Park
@ 2024-10-16 0:46 ` Jakub Kicinski
2024-10-16 4:02 ` Johnny Park
0 siblings, 1 reply; 4+ messages in thread
From: Jakub Kicinski @ 2024-10-16 0:46 UTC (permalink / raw)
To: Johnny Park
Cc: anthony.l.nguyen, przemyslaw.kitszel, davem, edumazet, pabeni,
intel-wired-lan, netdev, linux-kernel
On Mon, 14 Oct 2024 17:16:29 -0600 Johnny Park wrote:
> This patch fixes the checks and warnings for igb_enable_sriov and
> igb_disable_sriov function reported by checkpatch.pl
Quoting documentation:
Clean-up patches
~~~~~~~~~~~~~~~~
Netdev discourages patches which perform simple clean-ups, which are not in
the context of other work. For example:
* Addressing ``checkpatch.pl`` warnings
* Addressing :ref:`Local variable ordering<rcs>` issues
* Conversions to device-managed APIs (``devm_`` helpers)
This is because it is felt that the churn that such changes produce comes
at a greater cost than the value of such clean-ups.
Conversely, spelling and grammar fixes are not discouraged.
See: https://www.kernel.org/doc/html/next/process/maintainer-netdev.html#clean-up-patches
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] igb: Fix styling in enable/disable SR-IOV
2024-10-16 0:46 ` Jakub Kicinski
@ 2024-10-16 4:02 ` Johnny Park
2024-10-16 22:54 ` [Intel-wired-lan] " Jacob Keller
0 siblings, 1 reply; 4+ messages in thread
From: Johnny Park @ 2024-10-16 4:02 UTC (permalink / raw)
To: Jakub Kicinski
Cc: anthony.l.nguyen, przemyslaw.kitszel, davem, edumazet, pabeni,
intel-wired-lan, netdev, linux-kernel
On Tue, Oct 15, 2024 at 05:46:07PM -0700, Jakub Kicinski wrote:
> On Mon, 14 Oct 2024 17:16:29 -0600 Johnny Park wrote:
> > This patch fixes the checks and warnings for igb_enable_sriov and
> > igb_disable_sriov function reported by checkpatch.pl
>
> Quoting documentation:
>
> Clean-up patches
> ~~~~~~~~~~~~~~~~
>
> Netdev discourages patches which perform simple clean-ups, which are not in
> the context of other work. For example:
>
> * Addressing ``checkpatch.pl`` warnings
> * Addressing :ref:`Local variable ordering<rcs>` issues
> * Conversions to device-managed APIs (``devm_`` helpers)
>
> This is because it is felt that the churn that such changes produce comes
> at a greater cost than the value of such clean-ups.
>
> Conversely, spelling and grammar fixes are not discouraged.
>
> See: https://www.kernel.org/doc/html/next/process/maintainer-netdev.html#clean-up-patches
I see. Apologies for the inconvenience, I'm new to this area so I must have missed that portion of documentation.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Intel-wired-lan] [PATCH] igb: Fix styling in enable/disable SR-IOV
2024-10-16 4:02 ` Johnny Park
@ 2024-10-16 22:54 ` Jacob Keller
0 siblings, 0 replies; 4+ messages in thread
From: Jacob Keller @ 2024-10-16 22:54 UTC (permalink / raw)
To: Johnny Park, Jakub Kicinski
Cc: anthony.l.nguyen, przemyslaw.kitszel, davem, edumazet, pabeni,
intel-wired-lan, netdev, linux-kernel
On 10/15/2024 9:02 PM, Johnny Park wrote:
> On Tue, Oct 15, 2024 at 05:46:07PM -0700, Jakub Kicinski wrote:
>> On Mon, 14 Oct 2024 17:16:29 -0600 Johnny Park wrote:
>>> This patch fixes the checks and warnings for igb_enable_sriov and
>>> igb_disable_sriov function reported by checkpatch.pl
>>
>> Quoting documentation:
>>
>> Clean-up patches
>> ~~~~~~~~~~~~~~~~
>>
>> Netdev discourages patches which perform simple clean-ups, which are not in
>> the context of other work. For example:
>>
>> * Addressing ``checkpatch.pl`` warnings
>> * Addressing :ref:`Local variable ordering<rcs>` issues
>> * Conversions to device-managed APIs (``devm_`` helpers)
>>
>> This is because it is felt that the churn that such changes produce comes
>> at a greater cost than the value of such clean-ups.
>>
>> Conversely, spelling and grammar fixes are not discouraged.
>>
>> See: https://www.kernel.org/doc/html/next/process/maintainer-netdev.html#clean-up-patches
> I see. Apologies for the inconvenience, I'm new to this area so I must have missed that portion of documentation.
You likely missed this because its a recent addition to the docs by
commit aeb218d900e3 ("docs: netdev: document guidance on cleanup
patches") from a week ago.
The policy itself is older than this, but we've had a recent surge in
similar changes on a few drivers.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-10-16 22:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-14 23:16 [PATCH] igb: Fix styling in enable/disable SR-IOV Johnny Park
2024-10-16 0:46 ` Jakub Kicinski
2024-10-16 4:02 ` Johnny Park
2024-10-16 22:54 ` [Intel-wired-lan] " Jacob Keller
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).