From: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
To: Andrew Lunn <andrew@lunn.ch>
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
kernel@savoirfairelinux.com,
"David S. Miller" <davem@davemloft.net>,
Florian Fainelli <f.fainelli@gmail.com>
Subject: Re: [PATCH net-next 2/3] net: dsa: mv88e6xxx: make switchdev DB ops generic
Date: Wed, 31 Aug 2016 10:39:15 -0400 [thread overview]
Message-ID: <87shtlvw8c.fsf@ketchup.mtl.sfl> (raw)
In-Reply-To: <20160831134943.GB15078@lunn.ch>
Hi Andrew,
Andrew Lunn <andrew@lunn.ch> writes:
> Hi Vivien
>
>> -static int _mv88e6xxx_port_fdb_dump_one(struct mv88e6xxx_chip *chip,
>> - u16 fid, u16 vid, int port,
>> - struct switchdev_obj_port_fdb *fdb,
>> - int (*cb)(struct switchdev_obj *obj))
>> +static int mv88e6xxx_port_db_dump_one(struct mv88e6xxx_chip *chip,
>> + u16 fid, u16 vid, int port,
>> + struct switchdev_obj *obj,
>> + int (*cb)(struct switchdev_obj *obj))
>> {
>> struct mv88e6xxx_atu_entry addr = {
>> .mac = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
>> @@ -2222,72 +2219,87 @@ static int _mv88e6xxx_port_fdb_dump_one(struct mv88e6xxx_chip *chip,
>> do {
>> err = _mv88e6xxx_atu_getnext(chip, fid, &addr);
>> if (err)
>> - break;
>> + return err;
>>
>> if (addr.state == GLOBAL_ATU_DATA_STATE_UNUSED)
>> break;
>>
>> - if (!addr.trunk && addr.portv_trunkid & BIT(port)) {
>> - bool is_static = addr.state ==
>> - (is_multicast_ether_addr(addr.mac) ?
>> - GLOBAL_ATU_DATA_STATE_MC_STATIC :
>> - GLOBAL_ATU_DATA_STATE_UC_STATIC);
>> + if (addr.trunk || (addr.portv_trunkid & BIT(port)) == 0)
>> + continue;
>> +
>> + if (obj->id == SWITCHDEV_OBJ_ID_PORT_FDB) {
>> + struct switchdev_obj_port_fdb *fdb;
>>
>> + if (!is_unicast_ether_addr(addr.mac))
>> + continue;
>> +
>> + fdb = SWITCHDEV_OBJ_PORT_FDB(obj);
>> fdb->vid = vid;
>> ether_addr_copy(fdb->addr, addr.mac);
>> - fdb->ndm_state = is_static ? NUD_NOARP : NUD_REACHABLE;
>> -
>> - err = cb(&fdb->obj);
>> - if (err)
>> - break;
>> + if (addr.state == GLOBAL_ATU_DATA_STATE_UC_STATIC)
>> + fdb->ndm_state = NUD_NOARP;
>> + else
>> + fdb->ndm_state = NUD_REACHABLE;
>> }
>> +
>> + err = cb(obj);
>> + if (err)
>> + return err;
>> } while (!is_broadcast_ether_addr(addr.mac));
>
> Humm, maybe i'm reading this patch wrong....
>
> This function is called mv88e6xxx_port_db_dump_one(). But i don't see
> a way out of the while loop, after dumping one. It seems to dump the
> whole table until it reaches the end marker, which is the MAC
> broadcast address.
>
> Should we rename this function, drop the _one?
No. mv88e6xxx_port_db_dump already exists, this is the function called
mv88e6xxx_port_db_dump_one multiple time. Here, _one refers to an FID
(forwarding database). 88E6352 have 4096 FIDs.
The way to dump a single FID is to run the ATU GetNext operation
starting with ff:ff:ff:ff:ff:ff, until that same address is reached
again. This is what mv88e6xxx_port_db_dump_one does.
mv88e6xxx_port_db_dump first dump the port's assigned FID (i.e. VID 0),
then iterate on active VLANs to get and dump their FIDs.
Thanks,
Vivien
next prev parent reply other threads:[~2016-08-31 14:39 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-29 20:32 [PATCH net-next 0/3] net: dsa: add MDB support Vivien Didelot
2016-08-29 20:32 ` [PATCH net-next 1/3] " Vivien Didelot
2016-08-31 13:25 ` Andrew Lunn
2016-08-31 14:22 ` Vivien Didelot
2016-08-31 14:33 ` Andrew Lunn
2016-08-31 14:57 ` Vivien Didelot
2016-08-31 15:03 ` Andrew Lunn
2016-08-29 20:32 ` [PATCH net-next 2/3] net: dsa: mv88e6xxx: make switchdev DB ops generic Vivien Didelot
2016-08-31 13:49 ` Andrew Lunn
2016-08-31 14:39 ` Vivien Didelot [this message]
2016-08-31 14:53 ` Andrew Lunn
2016-08-31 15:05 ` Vivien Didelot
2016-08-29 20:32 ` [PATCH net-next 3/3] net: dsa: mv88e6xxx: add MDB support Vivien Didelot
2016-08-31 13:57 ` Andrew Lunn
2016-08-31 14:46 ` Vivien Didelot
2016-08-31 14:56 ` Andrew Lunn
2016-08-31 17:33 ` Sergei Shtylyov
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=87shtlvw8c.fsf@ketchup.mtl.sfl \
--to=vivien.didelot@savoirfairelinux.com \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=f.fainelli@gmail.com \
--cc=kernel@savoirfairelinux.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/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
Powered by JetHome