* [PATCH] net/mlx5e: fix semicolon.cocci warnings
[not found] <201812222032.13tR4nHr%fengguang.wu@intel.com>
@ 2018-12-22 12:02 ` kbuild test robot
2018-12-23 7:06 ` Leon Romanovsky
2018-12-24 22:20 ` David Miller
0 siblings, 2 replies; 4+ messages in thread
From: kbuild test robot @ 2018-12-22 12:02 UTC (permalink / raw)
To: Gavi Teitz
Cc: kbuild-all, Saeed Mahameed, Or Gerlitz, Leon Romanovsky, netdev,
linux-rdma, linux-kernel
From: kbuild test robot <fengguang.wu@intel.com>
drivers/net/ethernet/mellanox/mlx5/core/en_rep.c:1339:57-58: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Fixes: 4c8fb2986d44 ("net/mlx5e: Increase VF representors' SQ size to 128")
CC: Gavi Teitz <gavi@mellanox.com>
Signed-off-by: kbuild test robot <fengguang.wu@intel.com>
---
tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head: 340ae71f9dd421227a58c14a909b63033745dca4
commit: 4c8fb2986d44c5a75949a88ac61deec0ed50a542 [11213/11734] net/mlx5e: Increase VF representors' SQ size to 128
en_rep.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
@@ -1336,7 +1336,7 @@ static void mlx5e_build_rep_params(struc
if (rep->vport == FDB_UPLINK_VPORT)
params->log_sq_size = MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE;
else
- params->log_sq_size = MLX5E_REP_PARAMS_DEF_LOG_SQ_SIZE;;
+ params->log_sq_size = MLX5E_REP_PARAMS_DEF_LOG_SQ_SIZE;
/* RQ */
mlx5e_build_rq_params(mdev, params);
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] net/mlx5e: fix semicolon.cocci warnings
2018-12-22 12:02 ` [PATCH] net/mlx5e: fix semicolon.cocci warnings kbuild test robot
@ 2018-12-23 7:06 ` Leon Romanovsky
2018-12-24 18:01 ` David Miller
2018-12-24 22:20 ` David Miller
1 sibling, 1 reply; 4+ messages in thread
From: Leon Romanovsky @ 2018-12-23 7:06 UTC (permalink / raw)
To: David S. Miller, kbuild test robot
Cc: Gavi Teitz, kbuild-all, Saeed Mahameed, Or Gerlitz, netdev,
linux-rdma, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 582 bytes --]
On Sat, Dec 22, 2018 at 08:02:16PM +0800, kbuild test robot wrote:
> From: kbuild test robot <fengguang.wu@intel.com>
>
> drivers/net/ethernet/mellanox/mlx5/core/en_rep.c:1339:57-58: Unneeded semicolon
>
>
> Remove unneeded semicolon.
>
> Generated by: scripts/coccinelle/misc/semicolon.cocci
>
> Fixes: 4c8fb2986d44 ("net/mlx5e: Increase VF representors' SQ size to 128")
> CC: Gavi Teitz <gavi@mellanox.com>
> Signed-off-by: kbuild test robot <fengguang.wu@intel.com>
> ---
Dave,
Can you please apply this small fix?
Thanks,
Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 801 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] net/mlx5e: fix semicolon.cocci warnings
2018-12-23 7:06 ` Leon Romanovsky
@ 2018-12-24 18:01 ` David Miller
0 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2018-12-24 18:01 UTC (permalink / raw)
To: leon
Cc: fengguang.wu, gavi, kbuild-all, saeedm, ogerlitz, netdev,
linux-rdma, linux-kernel
From: Leon Romanovsky <leon@kernel.org>
Date: Sun, 23 Dec 2018 09:06:13 +0200
> Can you please apply this small fix?
Sure, I (eventually) will. I'm just trying to figure out a few procedural
issues with handling the early net-next pull request before I start tossing
more changes on top.
Thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] net/mlx5e: fix semicolon.cocci warnings
2018-12-22 12:02 ` [PATCH] net/mlx5e: fix semicolon.cocci warnings kbuild test robot
2018-12-23 7:06 ` Leon Romanovsky
@ 2018-12-24 22:20 ` David Miller
1 sibling, 0 replies; 4+ messages in thread
From: David Miller @ 2018-12-24 22:20 UTC (permalink / raw)
To: fengguang.wu
Cc: gavi, kbuild-all, saeedm, ogerlitz, leon, netdev, linux-rdma,
linux-kernel
From: kbuild test robot <fengguang.wu@intel.com>
Date: Sat, 22 Dec 2018 20:02:16 +0800
> From: kbuild test robot <fengguang.wu@intel.com>
>
> drivers/net/ethernet/mellanox/mlx5/core/en_rep.c:1339:57-58: Unneeded semicolon
>
>
> Remove unneeded semicolon.
>
> Generated by: scripts/coccinelle/misc/semicolon.cocci
>
> Fixes: 4c8fb2986d44 ("net/mlx5e: Increase VF representors' SQ size to 128")
> CC: Gavi Teitz <gavi@mellanox.com>
> Signed-off-by: kbuild test robot <fengguang.wu@intel.com>
Applied.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-12-24 22:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <201812222032.13tR4nHr%fengguang.wu@intel.com>
2018-12-22 12:02 ` [PATCH] net/mlx5e: fix semicolon.cocci warnings kbuild test robot
2018-12-23 7:06 ` Leon Romanovsky
2018-12-24 18:01 ` David Miller
2018-12-24 22:20 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox