netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jakub Kicinski <kuba@kernel.org>
To: Roger Quadros <rogerq@kernel.org>
Cc: Siddharth Vadapalli <s-vadapalli@ti.com>,
	Andrew Lunn <andrew+netdev@lunn.ch>,
	"David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Paolo Abeni <pabeni@redhat.com>,
	Russell King <linux@armlinux.org.uk>,
	danishanwar@ti.com, srk@ti.com, linux-omap@vger.kernel.org,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH net-next v3 8/9] net: ethernet: ti: am65-cpsw: add network flow classification support
Date: Tue, 13 May 2025 10:29:54 -0700	[thread overview]
Message-ID: <20250513102954.2e537e99@kernel.org> (raw)
In-Reply-To: <20250513-am65-cpsw-rx-class-v3-8-492d9a2586b6@kernel.org>

On Tue, 13 May 2025 15:13:12 +0300 Roger Quadros wrote:
> +	mutex_lock(&port->rxnfc_lock);
> +	loc = am65_cpsw_policer_find_match(port, &cfg);
> +	if (loc >= 0 && loc != fs->location) {
> +		netdev_info(port->ndev,
> +			    "rule already exists in location %d. not adding\n",
> +			    loc);
> +		mutex_unlock(&port->rxnfc_lock);
> +		return -EINVAL;
> +	}
> +
> +	/* delete exisiting rule */
> +	if (loc >= 0) {
> +		rule = am65_cpsw_get_rule(port, loc);
> +		if (rule)
> +			am65_cpsw_del_rule(port, rule);
> +	}
> +
> +	rule = devm_kzalloc(port->common->dev, sizeof(*rule), GFP_KERNEL);

please don't use devm_ for objects you must support explicitly freeing

> +	if (!rule)
> +		return -ENOMEM;

missing unlock

> +
> +	INIT_LIST_HEAD(&rule->list);
> +	memcpy(&rule->cfg, &cfg, sizeof(cfg));
> +	rule->location = fs->location;
> +	ret = am65_cpsw_add_rule(port, rule);
> +	mutex_unlock(&port->rxnfc_lock);
-- 
pw-bot: cr

  reply	other threads:[~2025-05-13 17:29 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-13 12:13 [PATCH net-next v3 0/9] net: ethernet: ti: am65-cpsw: add network flow classification support Roger Quadros
2025-05-13 12:13 ` [PATCH net-next v3 1/9] net: ethernet: ti: cpsw_ale: Update Policer fields for more ALE size/ports Roger Quadros
2025-05-13 12:13 ` [PATCH net-next v3 2/9] net: ethernet: ti: cpsw_ale: return ALE index in cpsw_ale_add_vlan() Roger Quadros
2025-05-13 12:13 ` [PATCH net-next v3 3/9] net: ethernet: ti: cpsw_ale: return ALE index in cpsw_ale_vlan_add_modify() Roger Quadros
2025-05-13 12:13 ` [PATCH net-next v3 4/9] net: ethernet: ti: cpsw_ale: return ALE index in cpsw_ale_add_ucast() Roger Quadros
2025-05-13 12:13 ` [PATCH net-next v3 5/9] net: ethernet: ti: cpsw_ale: add cpsw_ale_policer_reset_entry() Roger Quadros
2025-05-13 12:13 ` [PATCH net-next v3 6/9] net: ethernet: ti: cpsw_ale: add cpsw_ale_policer_set/clr_entry() Roger Quadros
2025-05-13 12:13 ` [PATCH net-next v3 7/9] net: ethernet: ti: cpsw_ale: add policer save restore for PM sleep Roger Quadros
2025-05-13 12:13 ` [PATCH net-next v3 8/9] net: ethernet: ti: am65-cpsw: add network flow classification support Roger Quadros
2025-05-13 17:29   ` Jakub Kicinski [this message]
2025-05-14 11:18     ` Roger Quadros
2025-05-13 12:13 ` [PATCH net-next v3 9/9] net: ethernet: ti: am65-cpsw: remove cpsw_ale_classifier_setup_default() Roger Quadros

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250513102954.2e537e99@kernel.org \
    --to=kuba@kernel.org \
    --cc=andrew+netdev@lunn.ch \
    --cc=danishanwar@ti.com \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=rogerq@kernel.org \
    --cc=s-vadapalli@ti.com \
    --cc=srk@ti.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).