net/ring: fix typo in log message

Message ID 20201104170125.8520-1-olivier.matz@6wind.com (mailing list archive)
State Accepted, archived
Delegated to: Ferruh Yigit
Headers
Series net/ring: fix typo in log message |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK
ci/iol-broadcom-Functional fail Functional Testing issues
ci/iol-testing success Testing PASS
ci/iol-intel-Functional fail Functional Testing issues
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-mellanox-Performance success Performance Testing PASS

Commit Message

Olivier Matz Nov. 4, 2020, 5:01 p.m. UTC
  Add a missing space.

Fixes: 869bf6d222bb ("net/ring: fix coding style")

Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
---
 drivers/net/ring/rte_eth_ring.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Ferruh Yigit Nov. 4, 2020, 8:41 p.m. UTC | #1
On 11/4/2020 5:01 PM, Olivier Matz wrote:
> Add a missing space.
> 
> Fixes: 869bf6d222bb ("net/ring: fix coding style")
> 
> Signed-off-by: Olivier Matz <olivier.matz@6wind.com>

Cc: stable@dpdk.org

Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
  
Ferruh Yigit Nov. 6, 2020, 1:15 p.m. UTC | #2
On 11/4/2020 8:41 PM, Ferruh Yigit wrote:
> On 11/4/2020 5:01 PM, Olivier Matz wrote:
>> Add a missing space.
>>
>> Fixes: 869bf6d222bb ("net/ring: fix coding style")
>>
>> Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
> 
> Cc: stable@dpdk.org
> 
> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied to dpdk-next-net/main, thanks.
  

Patch

diff --git a/drivers/net/ring/rte_eth_ring.c b/drivers/net/ring/rte_eth_ring.c
index d6115abdd5..41402a5159 100644
--- a/drivers/net/ring/rte_eth_ring.c
+++ b/drivers/net/ring/rte_eth_ring.c
@@ -629,7 +629,7 @@  rte_pmd_ring_probe(struct rte_vdev_device *dev)
 
 		if (!kvlist) {
 			PMD_LOG(INFO,
-				"Ignoring unsupported parameters when creatingrings-backed ethernet device");
+				"Ignoring unsupported parameters when creating rings-backed ethernet device");
 			ret = eth_dev_ring_create(name, dev, rte_socket_id(),
 						  DEV_CREATE, &eth_dev);
 			if (ret == -1) {