Skip to content

Commit

Permalink
qca-ssdk: reduce log noise
Browse files Browse the repository at this point in the history
Signed-off-by: John Crispin <[email protected]>
  • Loading branch information
blogic committed Feb 28, 2023
1 parent 0719624 commit 94d154c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions feeds/ipq807x/qca-ssdk/patches/300-fdb.patch
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ Index: qca-ssdk/src/init/ssdk_init.c
+
+ ret = fal_fdb_entry_extend_getfirst(0, &fdb_op, &fdb_entry);
+ while (ret == SW_OK) {
+ printk("%s:%s[%d]%d %2x:%2x:%2x:%2x:%2x:%2x | %2x:%2x:%2x:%2x:%2x:%2x\n", __FILE__, __func__, __LINE__,
+ /*printk("%s:%s[%d]%d %2x:%2x:%2x:%2x:%2x:%2x | %2x:%2x:%2x:%2x:%2x:%2x\n", __FILE__, __func__, __LINE__,
+ fdb_entry.fid, fdb_entry.addr.uc[0], fdb_entry.addr.uc[1], fdb_entry.addr.uc[2], fdb_entry.addr.uc[3], fdb_entry.addr.uc[4], fdb_entry.addr.uc[5],
+ mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
+ mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);*/
+ if (!memcmp(mac, &fdb_entry.addr, 6)) {
+ memset(&entry, 0, sizeof(entry));
+ memcpy(&entry.addr, mac, ETH_ALEN);
Expand Down

0 comments on commit 94d154c

Please sign in to comment.