Thread (21 messages) flat view 21 messages, 3 authors, 2021-01-08

Re: [net 04/11] net/mlx5e: CT: Use per flow counter when CT flow accounting is enabled

From: Jakub Kicinski <kuba@kernel.org>
Date: 2021-01-08 04:41:56

On Thu, 07 Jan 2021 20:18:36 -0800 Saeed Mahameed wrote:
On Thu, 2021-01-07 at 20:06 -0800, Saeed Mahameed wrote:
quoted
On Thu, 2021-01-07 at 19:07 -0800, Jakub Kicinski wrote:  
quoted
On Thu,  7 Jan 2021 12:28:38 -0800 Saeed Mahameed wrote:  
quoted
+	int ret;
+
+	counter = kzalloc(sizeof(*counter), GFP_KERNEL);
+	if (!counter)
+		return ERR_PTR(-ENOMEM);
+
+	counter->is_shared = false;
+	counter->counter = mlx5_fc_create(ct_priv->dev, true);
+	if (IS_ERR(counter->counter)) {
+		ct_dbg("Failed to create counter for ct entry");
+		ret = PTR_ERR(counter->counter);
+		kfree(counter);
+		return ERR_PTR(ret);  
The err ptr -> ret -> err ptr conversion seems entirely pointless,
no?  
Indeed, will address this in a net-next patch
  
Actually no, because counter is being kfreed so we must return
ERR_PTR(ret).
Ah, good point, just the other one then:

+	shared_counter = mlx5_tc_ct_counter_create(ct_priv);
+	if (IS_ERR(shared_counter)) {
+		ret = PTR_ERR(shared_counter);
 		return ERR_PTR(ret);
 	}
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help