lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20211011044923.23063-1-dqfext@gmail.com>
Date:   Mon, 11 Oct 2021 12:49:23 +0800
From:   DENG Qingfang <dqfext@...il.com>
To:     Ansuel Smith <ansuelsmth@...il.com>
Cc:     Andrew Lunn <andrew@...n.ch>,
        Vivien Didelot <vivien.didelot@...il.com>,
        Florian Fainelli <f.fainelli@...il.com>,
        Vladimir Oltean <olteanv@...il.com>,
        "David S. Miller" <davem@...emloft.net>,
        Jakub Kicinski <kuba@...nel.org>,
        Rob Herring <robh+dt@...nel.org>,
        Russell King <linux@...linux.org.uk>, netdev@...r.kernel.org,
        devicetree@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [net-next PATCH v5 05/14] drivers: net: dsa: qca8k: add support for cpu port 6

On Mon, Oct 11, 2021 at 03:30:15AM +0200, Ansuel Smith wrote:
>  static int
>  qca8k_parse_port_config(struct qca8k_priv *priv)
>  {
> @@ -1011,13 +1027,14 @@ static int
>  qca8k_setup(struct dsa_switch *ds)
>  {
>  	struct qca8k_priv *priv = (struct qca8k_priv *)ds->priv;
> +	u8 cpu_port;

cpu_port should be of type int.

>  	int ret, i;
>  	u32 mask;
>  
> -	/* Make sure that port 0 is the cpu port */
> -	if (!dsa_is_cpu_port(ds, 0)) {
> -		dev_err(priv->dev, "port 0 is not the CPU port");
> -		return -EINVAL;
> +	cpu_port = qca8k_find_cpu_port(ds);
> +	if (cpu_port < 0) {
> +		dev_err(priv->dev, "No cpu port configured in both cpu port0 and port6");
> +		return cpu_port;
>  	}

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ